From 923835229cb92dad0a71a867c0bd0bf9993b1bf0 Mon Sep 17 00:00:00 2001 From: "pso (tiny)" Date: Fri, 26 Dec 2008 16:54:10 +0530 Subject: [PATCH 01/82] changes in process bzr revid: pso@tinyerp.com-20081226112410-2r283ngsvoh0a8od --- addons/account/__terp__.py | 2 +- .../process/customer_invoice_process.xml | 28 ++++++++- addons/account/process/statement_process.xml | 44 +------------ .../process/supplier_invoice_process.xml | 4 +- .../process/base_contact_process.xml | 1 + .../process/crm_configuration_process.xml | 5 +- addons/hr/process/hr_process.xml | 1 + .../hr_expense/process/hr_expense_process.xml | 1 + .../process/hr_holidays_process.xml | 1 + .../process/hr_timesheet_process.xml | 1 + .../process/hr_timesheet_sheet_process.xml | 1 + .../membership/process/membership_process.xml | 1 + addons/mrp/process/procurement_process.xml | 63 ++++++++++++++++++- .../mrp/process/service_product_process.xml | 32 +--------- .../mrp/process/stockable_product_process.xml | 30 +-------- addons/process/process.py | 5 +- addons/product/process/product_process.xml | 1 + addons/project/process/task_process.xml | 1 + addons/purchase/process/purchase_process.xml | 1 + addons/sale/process/sale_process.xml | 1 + 20 files changed, 113 insertions(+), 111 deletions(-) diff --git a/addons/account/__terp__.py b/addons/account/__terp__.py index 3d3905ed249..e5f77587fa7 100644 --- a/addons/account/__terp__.py +++ b/addons/account/__terp__.py @@ -59,9 +59,9 @@ "project/project_report.xml", "product_view.xml", "account_assert_test.xml", + "process/statement_process.xml", "process/customer_invoice_process.xml", "process/supplier_invoice_process.xml", - "process/statement_process.xml", ], "translations" : { "fr": "i18n/french_fr.csv" diff --git a/addons/account/process/customer_invoice_process.xml b/addons/account/process/customer_invoice_process.xml index c3fedd1826e..7af469d142f 100755 --- a/addons/account/process/customer_invoice_process.xml +++ b/addons/account/process/customer_invoice_process.xml @@ -8,6 +8,7 @@ + @@ -61,13 +62,14 @@ - + + - + @@ -101,6 +103,19 @@ + + + + + + + + + + + + + @@ -102,36 +91,5 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/addons/account/process/supplier_invoice_process.xml b/addons/account/process/supplier_invoice_process.xml index 613aaaa4005..d20548f7eef 100755 --- a/addons/account/process/supplier_invoice_process.xml +++ b/addons/account/process/supplier_invoice_process.xml @@ -8,6 +8,7 @@ + @@ -51,10 +52,11 @@ - + + diff --git a/addons/base_contact/process/base_contact_process.xml b/addons/base_contact/process/base_contact_process.xml index 8f653a90e2f..182eb70ca0e 100755 --- a/addons/base_contact/process/base_contact_process.xml +++ b/addons/base_contact/process/base_contact_process.xml @@ -9,6 +9,7 @@ + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -115,6 +140,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/mrp/process/service_product_process.xml b/addons/mrp/process/service_product_process.xml index abaa418331e..e7aacaaf044 100644 --- a/addons/mrp/process/service_product_process.xml +++ b/addons/mrp/process/service_product_process.xml @@ -8,6 +8,7 @@ + @@ -15,17 +16,6 @@ Process Node --> - - - - - - - - - - - @@ -41,7 +31,7 @@ - + @@ -64,24 +54,6 @@ Process Transition --> - - - - - - - - - - - - - - - - - - diff --git a/addons/mrp/process/stockable_product_process.xml b/addons/mrp/process/stockable_product_process.xml index 9c885d51942..92da99f635e 100644 --- a/addons/mrp/process/stockable_product_process.xml +++ b/addons/mrp/process/stockable_product_process.xml @@ -8,6 +8,7 @@ + @@ -15,17 +16,6 @@ Process Node --> - - - - - - - - - - - @@ -75,24 +65,6 @@ Process Transition --> - - - - - - - - - - - - - - - - - - diff --git a/addons/process/process.py b/addons/process/process.py index b1a6002dfd9..4eba1a44410 100644 --- a/addons/process/process.py +++ b/addons/process/process.py @@ -73,7 +73,6 @@ class process_process(osv.osv): res = pool.get('process.process').browse(cr, uid, res, context) for process in res: result.append((process.id, process.name)) - return result # else search process nodes @@ -87,7 +86,9 @@ class process_process(osv.osv): return result def graph_get(self, cr, uid, id, res_model, res_id, scale, context): - + if not res_model: + res_model = (self.browse(cr, uid, [id])[0]).model_id.model + pool = pooler.get_pool(cr.dbname) process = pool.get('process.process').browse(cr, uid, [id])[0] diff --git a/addons/product/process/product_process.xml b/addons/product/process/product_process.xml index 4ff800ad0cc..c3564e09b1d 100755 --- a/addons/product/process/product_process.xml +++ b/addons/product/process/product_process.xml @@ -8,6 +8,7 @@ + diff --git a/addons/project/process/task_process.xml b/addons/project/process/task_process.xml index 8dfc3a340d3..f713baad82e 100755 --- a/addons/project/process/task_process.xml +++ b/addons/project/process/task_process.xml @@ -8,6 +8,7 @@ + diff --git a/addons/purchase/process/purchase_process.xml b/addons/purchase/process/purchase_process.xml index 38a2fce7460..8893d0b9df8 100755 --- a/addons/purchase/process/purchase_process.xml +++ b/addons/purchase/process/purchase_process.xml @@ -8,6 +8,7 @@ + diff --git a/addons/sale/process/sale_process.xml b/addons/sale/process/sale_process.xml index 46e13d1d6d2..5c98b95dd48 100755 --- a/addons/sale/process/sale_process.xml +++ b/addons/sale/process/sale_process.xml @@ -8,6 +8,7 @@ + From df689dad23a05d272ecce06271cb04b757caff84 Mon Sep 17 00:00:00 2001 From: "pso (tiny)" Date: Mon, 29 Dec 2008 10:40:22 +0530 Subject: [PATCH 02/82] minor change bzr revid: pso@tinyerp.com-20081229051022-elqclazvlc1ib28p --- addons/auction/report/huissier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/auction/report/huissier.py b/addons/auction/report/huissier.py index e01063ba9c0..c97f0569e0f 100644 --- a/addons/auction/report/huissier.py +++ b/addons/auction/report/huissier.py @@ -49,7 +49,7 @@ class report_custom(report_rml): for l in lots: # l['id_cont'] = str(i) if l['obj_price']==0: - price_french = 'retir' + price_french = 'retir�' else: price_french = int_to_text(int(l['obj_price'] or 0.0))+' eur' i+=1 From a16111269bf6bfd2ed9562a0fbc3fd3a786c1b75 Mon Sep 17 00:00:00 2001 From: "pso (tiny)" Date: Mon, 29 Dec 2008 11:10:16 +0530 Subject: [PATCH 03/82] minor change bzr revid: pso@tinyerp.com-20081229054016-azbat260fjvs5mpn --- addons/process/process.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/addons/process/process.py b/addons/process/process.py index 8f88b0b92c5..ab4bf724da0 100644 --- a/addons/process/process.py +++ b/addons/process/process.py @@ -84,8 +84,6 @@ class process_process(osv.osv): return result def graph_get(self, cr, uid, id, res_model, res_id, scale, context): - if not res_model: - res_model = (self.browse(cr, uid, [id])[0]).model_id.model pool = pooler.get_pool(cr.dbname) From a4a6343ac7909446576ada24bd63262a2f53222e Mon Sep 17 00:00:00 2001 From: "pso (tiny)" Date: Mon, 29 Dec 2008 15:39:33 +0530 Subject: [PATCH 04/82] Add mrp operation process bzr revid: pso@tinyerp.com-20081229100933-p6rcs3zojcso0hxo --- addons/mrp_operations/__terp__.py | 3 +- addons/mrp_operations/mrp_operations.py | 4 +- .../process/mrp_operation_process.xml | 116 ++++++++++++++++++ 3 files changed, 120 insertions(+), 3 deletions(-) create mode 100644 addons/mrp_operations/process/mrp_operation_process.xml diff --git a/addons/mrp_operations/__terp__.py b/addons/mrp_operations/__terp__.py index 9d3a61fac38..8044ecc2e26 100755 --- a/addons/mrp_operations/__terp__.py +++ b/addons/mrp_operations/__terp__.py @@ -55,7 +55,8 @@ "demo_xml" : ["mrp_operation_data.xml"], "update_xml" : [ "security/ir.model.access.csv", - "mrp_operations_workflow.xml","mrp_operations_view.xml","mrp_operations_report.xml" + "mrp_operations_workflow.xml","mrp_operations_view.xml","mrp_operations_report.xml", + "process/mrp_operation_process.xml" ], "active": False, "installable": True diff --git a/addons/mrp_operations/mrp_operations.py b/addons/mrp_operations/mrp_operations.py index 72316aca8bd..0de73bad7e5 100755 --- a/addons/mrp_operations/mrp_operations.py +++ b/addons/mrp_operations/mrp_operations.py @@ -47,14 +47,14 @@ class mrp_production_workcenter_line(osv.osv): 'date_planned': fields.related('production_id', 'date_planned', type='datetime', string='Date Planned'), 'date_start': fields.datetime('Start Date'), 'date_finnished': fields.datetime('End Date'), - 'delay': fields.float('Delay',size=128,help="This is delay between operation start and stop in this workcenter",readonly=True), + 'delay': fields.char('Delay',size=128,help="This is delay between operation start and stop in this workcenter",readonly=True), 'product':fields.related('production_id','product_id',type='many2one',relation='product.product',string='Product'), 'qty':fields.related('production_id','product_qty',type='float',string='Qty'), 'uom':fields.related('production_id','product_uom',type='many2one',relation='product.uom',string='UOM'), } _defaults = { 'state': lambda *a: 'draft', - 'delay': lambda *a: 0.0 + 'delay': lambda *a: '0 Days 0 hrs and 0 mins' } def modify_production_order_state(self,cr,uid,ids,action): diff --git a/addons/mrp_operations/process/mrp_operation_process.xml b/addons/mrp_operations/process/mrp_operation_process.xml new file mode 100644 index 00000000000..013a629d3a7 --- /dev/null +++ b/addons/mrp_operations/process/mrp_operation_process.xml @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From 539d1537a881989dba91a4b4e3d5db850b377cd5 Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Tue, 30 Dec 2008 14:12:40 +0530 Subject: [PATCH 05/82] base module quality bzr revid: mra@tinyerp.com-20081230084240-go6c5djrruln1dtw --- .../base_module_quality_wizard.xml | 20 +++++++++++----- .../speed_test/speed_test.py | 2 +- .../wizard/module_quality_check.py | 24 ++++++++++++++----- 3 files changed, 33 insertions(+), 13 deletions(-) diff --git a/addons/base_module_quality/base_module_quality_wizard.xml b/addons/base_module_quality/base_module_quality_wizard.xml index f85c19ab6f7..a61d1f4e980 100644 --- a/addons/base_module_quality/base_module_quality_wizard.xml +++ b/addons/base_module_quality/base_module_quality_wizard.xml @@ -7,21 +7,29 @@ Results of Quality Checks wizard.quality.check form + +
+ + + + + +
+
+
+ + Results of Quality Checks with detail + quality.check.detail + form
- - - - - -
diff --git a/addons/base_module_quality/speed_test/speed_test.py b/addons/base_module_quality/speed_test/speed_test.py index 248a500fa9c..49b10185129 100644 --- a/addons/base_module_quality/speed_test/speed_test.py +++ b/addons/base_module_quality/speed_test/speed_test.py @@ -101,7 +101,7 @@ class quality_test(base_module_quality.abstract_quality_check): summary = """ ===Speed Test===: - This test checks the speed of the module. +This test checks the speed of the module. """+ "Score: " + str(self.score) + "/10\n" else: diff --git a/addons/base_module_quality/wizard/module_quality_check.py b/addons/base_module_quality/wizard/module_quality_check.py index c0640d9a078..8394377b867 100644 --- a/addons/base_module_quality/wizard/module_quality_check.py +++ b/addons/base_module_quality/wizard/module_quality_check.py @@ -76,11 +76,12 @@ class wiz_quality_check(osv.osv_memory): string_ret += val.result['summary'] string_detail += val.result['detail'] self.string_detail = string_detail - return string_ret + return "" def _check_detail(self, cr, uid, data, context={}): return self.string_detail + # def _general_info(self, cr, uid, data, context={}): # return self.general_info @@ -98,16 +99,27 @@ class wiz_quality_check(osv.osv_memory): #~ 'result': {'type':'form', 'arch':form_check, 'fields':fields_check, 'state':[('end','Cancel'),('do','Do Test')]} #~ }, _columns = { - 'general_info': fields.text('General Info', readonly="1",), - 'detail' : fields.text('Detail', readonly="1",), - 'verbose_detail' : fields.text('Verbose Detail', readonly="1",) +# 'general_info': fields.text('General Info', readonly="1",), +# 'detail' : fields.text('Detail', readonly="0",), + 'verbose_detail' : fields.one2many('quality.check.detail', 'quality_check', 'Verbose Detail', readonly="0",) } _defaults = { - 'general_info': _check, - 'detail': _check_detail +# 'general_info': _check, +# 'detail': _check_detail + 'verbose_detail': _check, } wiz_quality_check() +class quality_check_detail(osv.osv_memory): + _name = 'quality.check.detail' + _rec_name = 'quality_check' + _columns = { + 'quality_check': fields.many2one('wizard.quality.check', 'Quality'), + 'general_info': fields.text('General Info', readonly="1",), + 'detail' : fields.text('Detail', readonly="1",), + } +quality_check_detail() + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From b707b13b0d0dbefd4170b0f5f2304050f0130ca2 Mon Sep 17 00:00:00 2001 From: "mga (Tiny/Axelor)" Date: Tue, 30 Dec 2008 14:21:16 +0530 Subject: [PATCH 06/82] change the author name for the wiki module bzr revid: mga@tinyerp.com-20081230085116-fr9j0rfr9x9rh96m --- addons/wiki/__terp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/wiki/__terp__.py b/addons/wiki/__terp__.py index 2729cc25a51..547fe8d70e0 100644 --- a/addons/wiki/__terp__.py +++ b/addons/wiki/__terp__.py @@ -1,7 +1,7 @@ { "name" : "Document Management - Wiki", "version" : "1.0", - "author" : "Tiny", + "author" : "Tiny & Axelor", "description": """ The base module to manage documents(wiki) From cc664b259794dde6215dd94ef4ad19c3a6960425 Mon Sep 17 00:00:00 2001 From: "hda (Tiny)" Date: Tue, 30 Dec 2008 15:06:53 +0530 Subject: [PATCH 07/82] Bugfix bzr revid: hda@tinyerp.com-20081230093653-brupehbi02mdz0ie --- addons/point_of_sale/pos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/point_of_sale/pos.py b/addons/point_of_sale/pos.py index 18f37db8806..d11313bd4f0 100644 --- a/addons/point_of_sale/pos.py +++ b/addons/point_of_sale/pos.py @@ -822,7 +822,7 @@ class pos_order_line(osv.osv): product_id = self.pool.get('product.product').search(cr, uid, [('ean13','=', ean)]) if not product_id: - return false + return False # search price product product = self.pool.get('product.product').read(cr, uid, product_id) From 7afacab4f3a5221c68bae5c8b746aacc22ced6a1 Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Tue, 30 Dec 2008 17:31:10 +0530 Subject: [PATCH 08/82] Ponderations system on quality module bzr revid: mra@tinyerp.com-20081230120110-nven6g8rirjgploi --- addons/base_module_quality/base_module_quality.py | 7 +++++++ .../base_module_quality/method_test/method_test.py | 3 ++- .../base_module_quality/pylint_test/pylint_test.py | 3 ++- addons/base_module_quality/speed_test/speed_test.py | 3 ++- .../wizard/module_quality_check.py | 12 ++++++++++-- 5 files changed, 23 insertions(+), 5 deletions(-) diff --git a/addons/base_module_quality/base_module_quality.py b/addons/base_module_quality/base_module_quality.py index 1a84f35b67a..fa83381c397 100644 --- a/addons/base_module_quality/base_module_quality.py +++ b/addons/base_module_quality/base_module_quality.py @@ -66,6 +66,10 @@ class abstract_quality_check(object): #False => the module can be uninstalled. self.bool_installed_only = True + + #This variable is use to make result of test should have more weight (Some tests are more critical than others) + self.ponderation = 0.0 + self.tests = [] self.list_folders = os.listdir(config['addons_path']+'/base_module_quality/') for item in self.list_folders: @@ -134,6 +138,9 @@ class abstract_quality_check(object): res_format['summary'] = data_list[0] return res_format + def add_quatation(self, x, y): + return x/y + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_quality/method_test/method_test.py b/addons/base_module_quality/method_test/method_test.py index 1da2e06ad97..3d7f2650fad 100644 --- a/addons/base_module_quality/method_test/method_test.py +++ b/addons/base_module_quality/method_test/method_test.py @@ -38,6 +38,7 @@ class quality_test(base_module_quality.abstract_quality_check): # #""" self.bool_installed_only = True + self.ponderation = 1.0 return None def run_test(self, cr, uid, module_path, module_state): @@ -84,7 +85,7 @@ class quality_test(base_module_quality.abstract_quality_check): This test checks if the module classes are raising exception when calling basic methods or no. -""" + "Score: " + str(self.score) + "/10\n" +""" #+ "Score: " + str(self.score) + "/10\n" else: summary =""" \n===Method Test===: diff --git a/addons/base_module_quality/pylint_test/pylint_test.py b/addons/base_module_quality/pylint_test/pylint_test.py index 333f73f50dc..2620fa3e9cc 100644 --- a/addons/base_module_quality/pylint_test/pylint_test.py +++ b/addons/base_module_quality/pylint_test/pylint_test.py @@ -38,6 +38,7 @@ class quality_test(base_module_quality.abstract_quality_check): # #""" self.bool_installed_only = False + self.ponderation = 1.0 return None def run_test(self, cr, uid, module_path, module_state): @@ -82,7 +83,7 @@ class quality_test(base_module_quality.abstract_quality_check): This test checks if the module satisfy the current coding standard used by OpenERP. -""" + "Score: " + str(self.score) + "/10\n" +""" #+ "Score: " + str(self.score) + "/10\n" else: summary =""" \n===Pylint Test===: diff --git a/addons/base_module_quality/speed_test/speed_test.py b/addons/base_module_quality/speed_test/speed_test.py index 49b10185129..4e6fb43a2b1 100644 --- a/addons/base_module_quality/speed_test/speed_test.py +++ b/addons/base_module_quality/speed_test/speed_test.py @@ -42,6 +42,7 @@ class quality_test(base_module_quality.abstract_quality_check): # #""" self.bool_installed_only = True + self.ponderation = 1.0 return None def run_test(self, cr, uid, module_path, module_state): pool = pooler.get_pool(cr.dbname) @@ -103,7 +104,7 @@ class quality_test(base_module_quality.abstract_quality_check): This test checks the speed of the module. -"""+ "Score: " + str(self.score) + "/10\n" +"""#+ "Score: " + str(self.score) + "/10\n" else: summary =""" \n===Speed Test===: diff --git a/addons/base_module_quality/wizard/module_quality_check.py b/addons/base_module_quality/wizard/module_quality_check.py index 8394377b867..3bf863764ac 100644 --- a/addons/base_module_quality/wizard/module_quality_check.py +++ b/addons/base_module_quality/wizard/module_quality_check.py @@ -66,6 +66,9 @@ class wiz_quality_check(osv.osv_memory): list_folders = os.listdir(config['addons_path']+'/base_module_quality/') module_name = module_data[0].name abstract_obj = base_module_quality.abstract_quality_check() + score_sum = 0.0 + ponderation_sum = 0.0 + final_score = "" for test in abstract_obj.tests: ad = tools.config['addons_path'] if module_data[0].name == 'base': @@ -73,8 +76,13 @@ class wiz_quality_check(osv.osv_memory): module_path = os.path.join(ad, module_data[0].name) val = test.quality_test() val.run_test(cr, uid, str(module_path), str(module_data[0].state)) - string_ret += val.result['summary'] - string_detail += val.result['detail'] + string_ret += val.result['summary'] #summary tab + string_ret += "Score: " + str(val.score) + "/10\n" #val.score = val.score * val.ponderation ??? + string_detail += val.result['detail'] # detail tab + score_sum += (val.add_quatation(val.score, 10) * val.ponderation) + ponderation_sum += val.ponderation + final_score = str(score_sum / ponderation_sum * 100) + "%" + string_ret += "\n\nPonderation Result for module:" + final_score self.string_detail = string_detail return "" From ad069b3f31f63d7de3a8cd902e2e1a0c330b89d2 Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Tue, 30 Dec 2008 13:50:58 +0100 Subject: [PATCH 09/82] modifs bzr revid: fp@tinyerp.com-20081230125058-4glgoglfkvtb1xjg --- addons/crm_configuration/crm_lead_menu.xml | 2 +- addons/crm_configuration/crm_opportunity_menu.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/crm_configuration/crm_lead_menu.xml b/addons/crm_configuration/crm_lead_menu.xml index ed6629674b4..92960db3552 100644 --- a/addons/crm_configuration/crm_lead_menu.xml +++ b/addons/crm_configuration/crm_lead_menu.xml @@ -1,7 +1,7 @@ - + diff --git a/addons/crm_configuration/crm_opportunity_menu.xml b/addons/crm_configuration/crm_opportunity_menu.xml index 4e8bf0c1ce8..8b3b6557a15 100644 --- a/addons/crm_configuration/crm_opportunity_menu.xml +++ b/addons/crm_configuration/crm_opportunity_menu.xml @@ -1,7 +1,7 @@ - + All Opportunities From 870fc3bab5102b6f3ac3c539b08d5b1ac424d95f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Najla=C3=A2=20EL=20KHAYAT?= Date: Tue, 30 Dec 2008 14:08:29 +0100 Subject: [PATCH 10/82] solve partially problem of menu items (migration)[cls] module reference: add header in rml bzr revid: nel@tinyerp.com-20081230130829-y35p0e90k39m6y12 --- .bzrignore | 1 + bin/addons/__init__.py | 5 +- bin/addons/base/i18n/ar_AR.po | 6410 ----------------- bin/addons/base/ir/ir_model.py | 5 +- .../module/report/ir_module_reference.rml | 21 +- 5 files changed, 18 insertions(+), 6424 deletions(-) create mode 100644 .bzrignore delete mode 100644 bin/addons/base/i18n/ar_AR.po diff --git a/.bzrignore b/.bzrignore new file mode 100644 index 00000000000..25cee50f826 --- /dev/null +++ b/.bzrignore @@ -0,0 +1 @@ +st diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index 45b96c49d6f..25b4fce9976 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -595,10 +595,10 @@ def load_modules(db, force_demo=False, status=None, update_module=False): cr.commit() if update_module: - cr.execute("select id,name from ir_module_module where state in ('to remove')") + cr.execute("select id,name from ir_module_module where state=%s", ('to remove',)) for mod_id, mod_name in cr.fetchall(): pool = pooler.get_pool(cr.dbname) - cr.execute('select model,res_id from ir_model_data where not noupdate and module=%s order by id desc', (mod_name,)) + cr.execute('select model,res_id from ir_model_data where noupdate=%s and module=%s order by id desc', (False, mod_name,)) for rmod,rid in cr.fetchall(): uid = 1 pool.get(rmod).unlink(cr, uid, [rid]) @@ -615,6 +615,7 @@ def load_modules(db, force_demo=False, status=None, update_module=False): (id not in (select res_id from ir_values where model='ir.ui.menu')) and (id not in (select res_id from ir_model_data where model='ir.ui.menu'))''') + cr.commit() if not cr.rowcount: break else: diff --git a/bin/addons/base/i18n/ar_AR.po b/bin/addons/base/i18n/ar_AR.po deleted file mode 100644 index ed33f98fceb..00000000000 --- a/bin/addons/base/i18n/ar_AR.po +++ /dev/null @@ -1,6410 +0,0 @@ -# Translation of OpenERP Server. -# This file containt the translation of the following modules: -# * base -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:04:48+0000\n" -"PO-Revision-Date: 2008-12-22 18:04: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: base -#: model:ir.actions.act_window,name:base.ir_cron_act -#: model:ir.ui.menu,name:base.menu_ir_cron_act -#: view:ir.cron:0 -msgid "Scheduled Actions" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%S - Second as a decimal number [00,61]." -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "Legends for Date and Time Formats" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_name:0 -msgid "Internal Name" -msgstr "اسم داخلي" - -#. module: base -#: wizard_view:res.partner.sms_send,init:0 -msgid "SMS - Gateway: clickatell" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Monthly" -msgstr "شهرياً" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Unknown" -msgstr "غير معروف" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "This wizard will detect new terms in the application so that you can update them manually." -msgstr "" - -#. module: base -#: field:workflow.activity,out_transitions:0 -#: view:workflow.activity:0 -msgid "Outgoing transitions" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%j - Day of the year as a decimal number [001,366]." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SAVE" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users_my -msgid "Change My Preferences" -msgstr "" - -#. module: base -#: view:ir.actions.act_window:0 -msgid "Open Window" -msgstr "" - -#. module: base -#: field:res.partner.function,name:0 -msgid "Function name" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-account" -msgstr "" - -#. module: base -#: field:res.partner.address,title:0 -#: field:res.partner,title:0 -#: field:res.partner.title,name:0 -msgid "Title" -msgstr "" - -#. module: base -#: wizard_field:res.partner.sms_send,init,text:0 -msgid "SMS Message" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EDIT" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_som-act -#: model:ir.ui.menu,name:base.menu_res_partner_som-act -msgid "States of mind" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_ASCENDING" -msgstr "" - -#. module: base -#: view:res.groups:0 -#: view:ir.model:0 -msgid "Access Rules" -msgstr "" - -#. module: base -#: field:ir.ui.view,arch:0 -#: field:ir.ui.view.custom,arch:0 -msgid "View Architecture" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_FORWARD" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Skipped" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - -#. module: base -#: wizard_field:module.lang.import,init,code:0 -msgid "Code (eg:en__US)" -msgstr "" - -#. module: base -#: field:res.roles,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: base -#: field:workflow.activity,wkf_id:0 -#: field:workflow.instance,wkf_id:0 -#: view:workflow:0 -msgid "Workflow" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,model:0 -#: field:ir.actions.report.xml,model:0 -#: field:ir.actions.server,model_id:0 -#: field:ir.actions.act_window,res_model:0 -#: field:ir.actions.wizard,model:0 -#: field:ir.cron,model:0 -#: field:ir.default,field_tbl:0 -#: field:ir.model.access,model_id:0 -#: field:ir.model.data,model:0 -#: field:ir.model.grid,name:0 -#: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 -#: selection:ir.translation,type:0 -#: field:ir.ui.view,model:0 -#: field:ir.values,model_id:0 -#: field:res.request.link,object:0 -#: field:wizard.ir.model.menu.create,model_id:0 -#: field:workflow.triggers,model:0 -#: view:ir.model:0 -msgid "Object" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To browse official translations, you can visit this link: " -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_module_category_tree -#: model:ir.ui.menu,name:base.menu_action_module_category_tree -msgid "Categories of Modules" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Ukrainian / украї́нська мо́ва" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Hungarian / Magyar" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_default -msgid "ir.default" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Not Started" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Minute: %(min)s" -msgstr "" - -#. module: base -#: view:res.company:0 -msgid "Header/Footer" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_100" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type_field -msgid "Bank type fields" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "type,name,res_id,src,value" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch / Nederlands" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export translation file" -msgstr "" - -#. module: base -#: field:res.partner.event.type,key:0 -msgid "Key" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_roles_form -#: field:res.users,roles_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_roles_form -#: view:res.roles:0 -#: view:res.users:0 -msgid "Roles" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_country -#: model:ir.ui.menu,name:base.menu_country_partner -msgid "Countries" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HELP" -msgstr "" - -#. module: base -#: help:ir.actions.server,sequence:0 -msgid "Important when you deal with the multi action, the execution order will be decided based on this, low number higher priority" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Views" -msgstr "" - -#. module: base -#: selection:res.request,priority:0 -msgid "Normal" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,user_id:0 -msgid "User Ref." -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import new language" -msgstr "" - -#. module: base -#: wizard_field:server.action.create,step_1,report:0 -#: wizard_view:server.action.create,step_1:0 -msgid "Select Report" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fc1_condition:0 -#: field:ir.report.custom.fields,fc2_condition:0 -#: field:ir.report.custom.fields,fc3_condition:0 -msgid "condition" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Yearly" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "1cm 28cm 20cm 28cm" -msgstr "" - -#. module: base -#: field:ir.sequence,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The unlink method is not implemented on this object !" -msgstr "" - -#. module: base -#: field:ir.actions.server,expression:0 -msgid "Loop Expression" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "12. %w ==> 5 ( Friday is the 6th day)" -msgstr "" - -#. module: base -#: model:ir.actions.report.xml,name:base.res_partner_address_report -msgid "Labels" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,target:0 -msgid "Target Window" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." -msgstr "" - -#. module: base -#: wizard_field:res.partner.spam_send,init,from:0 -msgid "Sender's email" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "" - -#. module: base -#: help:ir.actions.server,email:0 -msgid "provides the fiels that will refer to the tiny to fetch the email address, i.e. you select the invoice, then `object.invoice_address_id.email` is the field which give the correct address" -msgstr "" - -#. module: base -#: model:ir.actions.todo,note:base.config_wizard_simple_view -msgid "Choose between the \"Simplified Interface\" or the extended one.\n" -"If you are testing or using OpenERP for the first time, we suggest you to use\n" -"the simplified interface, which has less options and fields but is easier to\n" -"understand. You will be able to switch to the extended view later.\n" -" " -msgstr "" - -#. module: base -#: field:ir.actions.todo,start_on:0 -msgid "Start On" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Reference Guide" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner -#: field:res.company,partner_id:0 -#: field:res.partner.address,partner_id:0 -#: field:res.partner.bank,partner_id:0 -#: field:res.partner.event,partner_id:0 -#: selection:res.partner.title,domain:0 -msgid "Partner" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_custom -msgid "ir.ui.view.custom" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_values_form_action -#: model:ir.ui.menu,name:base.menu_values_form_action -msgid "Connect Actions To Client Events" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_COLOR" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-2 or later version" -msgstr "" - -#. module: base -#: selection:workflow.activity,kind:0 -msgid "Stop All" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NEW" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_custom -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.custom" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CANCEL" -msgstr "" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "" - -#. module: base -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: base -#: field:ir.report.custom,sortby:0 -msgid "Sorted By" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,type:0 -#: field:ir.actions.report.xml,type:0 -#: field:ir.report.custom,type:0 -msgid "Report Type" -msgstr "" - -#. module: base -#: field:ir.actions.todo,state:0 -#: field:ir.module.module.dependency,state:0 -#: field:ir.module.module,state:0 -#: field:ir.report.custom,state:0 -#: field:maintenance.contract,state:0 -#: field:res.bank,state:0 -#: field:res.partner.address,state_id:0 -#: field:res.partner.bank,state_id:0 -#: field:res.request,state:0 -#: field:workflow.instance,state:0 -#: field:workflow.workitem,state:0 -#: view:res.country.state:0 -msgid "State" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -#: field:maintenance.contract.module,version:0 -msgid "Version" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "Other proprietary" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-administration" -msgstr "" - -#. module: base -#: field:res.partner,comment:0 -#: view:ir.attachment:0 -#: view:res.groups:0 -#: view:ir.model:0 -#: view:res.partner:0 -msgid "Notes" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation -#: model:ir.ui.menu,name:base.menu_action_translation -msgid "All terms" -msgstr "" - -#. module: base -#: view:res.partner:0 -msgid "General" -msgstr "" - -#. module: base -#: field:ir.actions.wizard,name:0 -msgid "Wizard info" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "4. %b, %B ==> Dec, December" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_property -msgid "ir.property" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,view_type:0 -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Form" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Can not define a column %s. Reserved keyword !" -msgstr "" - -#. module: base -#: help:ir.ui.menu,groups_id:0 -msgid "If you put groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." -msgstr "" - -#. module: base -#: field:workflow.transition,act_to:0 -msgid "Destination Activity" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_10 -msgid "Open Source Service Company" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_QUIT" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_search method is not implemented on this object !" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "waiting" -msgstr "" - -#. module: base -#: field:res.country,name:0 -msgid "Country Name" -msgstr "" - -#. module: base -#: field:ir.attachment,link:0 -msgid "Link" -msgstr "" - -#. module: base -#: selection:maintenance.contract,state:0 -msgid "Valid" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "new" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_TOP" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,multi:0 -#: field:ir.actions.report.xml,multi:0 -#: field:ir.actions.act_window.view,multi:0 -msgid "On multiple doc." -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%m - Month as a decimal number [01,12]." -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_triggers -msgid "workflow.triggers" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,report_id:0 -msgid "Report Ref" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-hr" -msgstr "" - -#. module: base -#: field:res.partner.bank.type.field,size:0 -msgid "Max. Size" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -#: selection:ir.module.module,state:0 -msgid "To be upgraded" -msgstr "" - -#. module: base -#: help:ir.actions.server,name:0 -msgid "Easy to Refer action by name i.e. One Sales Order -> Many Invoice" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-purchase" -msgstr "" - -#. module: base -#: field:res.partner.address,name:0 -msgid "Contact Name" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "Save this document to a %s file and edit it with a specific software or a text editor. The file encoding is UTF-8." -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Schedule Upgrade" -msgstr "" - -#. module: base -#: wizard_field:module.module.update,init,repositories:0 -msgid "Repositories" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password mismatch !" -msgstr "" - -#. module: base -#: selection:res.partner.address,type:0 -#: selection:res.partner.title,domain:0 -msgid "Contact" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_15 -#: view:ir.property:0 -#: view:ir.model.fields:0 -#: view:ir.model:0 -msgid "Properties" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_ltd -msgid "Ltd" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_menu -msgid "ir.ui.menu" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "ConcurrencyException" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_id:0 -msgid "View Ref." -msgstr "" - -#. module: base -#: field:ir.actions.server,wkf_model_id:0 -msgid "Workflow on" -msgstr "" - -#. module: base -#: field:ir.default,ref_table:0 -msgid "Table Ref." -msgstr "" - -#. module: base -#: field:res.partner,ean13:0 -msgid "EAN13" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Roles are used to defined available actions, provided by workflows." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_repository_tree -#: model:ir.ui.menu,name:base.menu_module_repository_tree -#: view:ir.module.repository:0 -msgid "Repository list" -msgstr "" - -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - -#. module: base -#: field:res.company,rml_header1:0 -msgid "Report Header" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_pvt_ltd -msgid "Corp." -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_16 -msgid "Telecom sector" -msgstr "" - -#. module: base -#: field:ir.actions.act_window_close,type:0 -#: field:ir.actions.actions,type:0 -#: field:ir.actions.server,state:0 -#: field:ir.actions.server,type:0 -#: field:ir.actions.url,type:0 -#: field:ir.actions.act_window,type:0 -msgid "Action Type" -msgstr "" - -#. module: base -#: help:ir.actions.act_window,limit:0 -msgid "Default limit for the list view" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_12 -msgid "Segmentation" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_server_object_lines -msgid "ir.server.object.lines" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,src_model:0 -msgid "Source Object" -msgstr "" - -#. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "" - -#. module: base -#: field:res.partner.bank.type,field_ids:0 -msgid "Type fields" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form -#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form -#: view:ir.actions.todo:0 -msgid "Config Wizard Steps" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_ui_view_sc -msgid "ir.ui.view_sc" -msgstr "" - -#. module: base -#: field:ir.model.access,group_id:0 -#: field:ir.rule,rule_group:0 -msgid "Group" -msgstr "" - -#. module: base -#: help:res.partner,customer:0 -msgid "Check this box if the partner is a customer." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FLOPPY" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_custom -msgid "Customization" -msgstr "" - -#. module: base -#: field:res.users,signature:0 -msgid "Signature" -msgstr "" - -#. module: base -#: field:ir.actions.server,sms:0 -#: selection:ir.actions.server,state:0 -msgid "SMS" -msgstr "" - -#. module: base -#: field:ir.translation,name:0 -msgid "Field Name" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_lang_act_window -#: model:ir.model,name:base.model_res_lang -#: model:ir.ui.menu,name:base.menu_res_lang_act_window -#: view:res.lang:0 -msgid "Languages" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_uninstall -#: model:ir.ui.menu,name:base.menu_module_tree_uninstall -msgid "Uninstalled modules" -msgstr "" - -#. module: base -#: help:res.partner.category,active:0 -msgid "The active field allows you to hide the category, without removing it." -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "PO File" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event -msgid "res.partner.event" -msgstr "" - -#. module: base -#: wizard_field:server.action.create,init,type:0 -#: wizard_view:server.action.create,init:0 -msgid "Select Action Type" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_currency_form -#: model:ir.ui.menu,name:base.menu_action_currency_form -#: view:res.currency:0 -msgid "Currencies" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Configure" -msgstr "" - -#. module: base -#: help:res.partner,lang:0 -msgid "If the selected language is loaded in the system, all documents related to this partner will be printed in this language. If not, it will be english." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDERLINE" -msgstr "" - -#. module: base -#: selection:ir.model,state:0 -msgid "Custom Object" -msgstr "" - -#. module: base -#: field:res.lang,date_format:0 -msgid "Date Format" -msgstr "" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Always Searchable" -msgstr "" - -#. module: base -#: selection:ir.model.fields,state:0 -msgid "Base Field" -msgstr "" - -#. module: base -#: field:workflow.instance,uid:0 -msgid "User ID" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "Test" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" -msgstr "" - -#. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "Examples" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_sxw_content:0 -#: field:ir.actions.report.xml,report_sxw_content_data:0 -msgid "SXW content" -msgstr "" - -#. module: base -#: field:ir.default,ref_id:0 -msgid "ID Ref." -msgstr "" - -#. module: base -#: help:res.partner.address,active:0 -msgid "Uncheck the active field to hide the contact." -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_10 -msgid "Scheduler" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_BOLD" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fc0_operande:0 -#: field:ir.report.custom.fields,fc1_operande:0 -#: field:ir.report.custom.fields,fc2_operande:0 -#: field:ir.report.custom.fields,fc3_operande:0 -#: selection:ir.translation,type:0 -msgid "Constraint" -msgstr "" - -#. module: base -#: selection:ir.values,key:0 -#: selection:res.partner.address,type:0 -msgid "Default" -msgstr "" - -#. module: base -#: field:ir.model.fields,required:0 -#: field:res.partner.bank.type.field,required:0 -msgid "Required" -msgstr "" - -#. module: base -#: field:res.country,code:0 -msgid "Country Code" -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Continue" -msgstr "" - -#. module: base -#: field:res.request.history,name:0 -msgid "Summary" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Maintenance contract added !" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-graph" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_instance -msgid "workflow.instance" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "10. %S ==> 20" -msgstr "" - -#. module: base -#: field:res.partner.bank,state:0 -#: field:res.partner.bank.type.field,bank_type_id:0 -msgid "Bank type" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "undefined get method !" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "2. %a ,%A ==> Fri, Friday" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The read method is not implemented on this object !" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "The selected language has been successfully installed. You must change the preferences of the user and open a new menu to view changes." -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%B - Full month name." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_REWIND" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 -#: view:res.partner.event:0 -msgid "Partner Events" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_transition -msgid "workflow.transition" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%a - Abbreviated weekday name." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CUT" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Introspection report on objects" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NO" -msgstr "" - -#. module: base -#: selection:res.config.view,view:0 -msgid "Extended Interface" -msgstr "" - -#. module: base -#: field:res.company,name:0 -msgid "Company Name" -msgstr "" - -#. module: base -#: wizard_field:base.module.import,init,module_file:0 -msgid "Module .ZIP file" -msgstr "" - -#. module: base -#: wizard_button:res.partner.sms_send,init,send:0 -#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard -msgid "Send SMS" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,report_id:0 -msgid "Report Ref." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_addess_tree -#: view:res.partner:0 -msgid "Partner contacts" -msgstr "" - -#. module: base -#: field:res.users,address_id:0 -msgid "Address" -msgstr "" - -#. module: base -#: help:res.country,code:0 -msgid "The ISO country code in two chars.\n" -"You can use this field for quick search." -msgstr "" - -#. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "Xor" -msgstr "" - -#. module: base -#: selection:ir.report.custom,state:0 -msgid "Subscribed" -msgstr "" - -#. module: base -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "" - -#. module: base -#: field:wizard.ir.model.menu.create.line,wizard_id:0 -#: view:ir.actions.wizard:0 -msgid "Wizard" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,init:0 -#: wizard_view:module.upgrade,next:0 -msgid "System Upgrade" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REVERT_TO_SAVED" -msgstr "" - -#. module: base -#: field:res.partner.event,event_ical_id:0 -msgid "iCal id" -msgstr "" - -#. module: base -#: wizard_field:module.lang.import,init,name:0 -msgid "Language name" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_wizard -#: model:ir.ui.menu,name:base.menu_ir_action_wizard -#: view:ir.actions.wizard:0 -msgid "Wizards" -msgstr "" - -#. module: base -#: field:ir.ui.menu,parent_id:0 -#: field:wizard.ir.model.menu.create,menu_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_4 -msgid "Low Level Objects" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The create method is not implemented on this object !" -msgstr "" - -#. module: base -#: field:ir.values,key2:0 -#: field:res.partner.event.type,name:0 -#: view:res.partner.event.type:0 -msgid "Event Type" -msgstr "" - -#. module: base -#: field:ir.ui.view,type:0 -#: field:wizard.ir.model.menu.create.line,view_type:0 -msgid "View Type" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom -msgid "ir.report.custom" -msgstr "" - -#. module: base -#: field:ir.exports.line,export_id:0 -msgid "Exportation" -msgstr "" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field -msgid "acc_number" -msgstr "" - -#. module: base -#: view:ir.model:0 -msgid "Model Description" -msgstr "" - -#. module: base -#: selection:maintenance.contract,state:0 -msgid "Unvalid" -msgstr "" - -#. module: base -#: wizard_view:res.partner.sms_send,init:0 -msgid "Bulk SMS send" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "get" -msgstr "" - -#. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_2 -msgid "User Interface" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_values -msgid "ir.values" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Pie Chart" -msgstr "" - -#. module: base -#: field:workflow.transition,trigger_expr_id:0 -msgid "Trigger Expression" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish (AR) / Español (AR)" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_CENTER" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_FIT" -msgstr "" - -#. module: base -#: view:ir.sequence.type:0 -msgid "Sequence Type" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system." -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child2:0 -msgid "field child2" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child3:0 -msgid "field child3" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child0:0 -msgid "field child0" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_update -#: model:ir.ui.menu,name:base.menu_module_update -msgid "Update Modules List" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Configure simple view" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bulgarian / български" -msgstr "" - -#. module: base -#: field:ir.module.module,license:0 -msgid "License" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_actions -msgid "ir.actions.actions" -msgstr "" - -#. module: base -#: field:ir.module.repository,url:0 -msgid "Url" -msgstr "" - -#. module: base -#: field:res.request,body:0 -#: field:res.request.history,req_id:0 -#: view:res.request:0 -msgid "Request" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_mode:0 -msgid "Mode of view" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The name_get method is not implemented on this object !" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Portrait" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Slovenian / slovenščina" -msgstr "" - -#. module: base -#: field:ir.actions.server,srcmodel_id:0 -msgid "Model" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Calendar" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Language file loaded." -msgstr "" - -#. module: base -#: field:ir.actions.act_window.view,view_id:0 -#: field:ir.default,page:0 -#: selection:ir.translation,type:0 -#: field:wizard.ir.model.menu.create.line,view_id:0 -msgid "View" -msgstr "" - -#. module: base -#: wizard_field:module.upgrade,next,module_info:0 -#: wizard_view:module.upgrade,next:0 -msgid "Modules to update" -msgstr "" - -#. module: base -#: field:ir.model.data,date_update:0 -msgid "Update Date" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_miss -msgid "Miss" -msgstr "" - -#. module: base -#: field:workflow.workitem,act_id:0 -#: view:workflow.activity:0 -msgid "Activity" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Swedish / svenska" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_LAST" -msgstr "" - -#. module: base -#: field:ir.report.custom,print_orientation:0 -msgid "Print orientation" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_BOTTOM" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,header:0 -msgid "Add RML header" -msgstr "" - -#. module: base -#: field:ir.attachment,name:0 -msgid "Attachment Name" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_orientation:0 -msgid "Landscape" -msgstr "" - -#. module: base -#: wizard_field:module.lang.import,init,data:0 -#: field:wizard.module.lang.export,data:0 -msgid "File" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_form -#: model:ir.ui.menu,name:base.menu_ir_sequence_form -#: model:ir.ui.menu,name:base.next_id_5 -#: view:ir.sequence:0 -msgid "Sequences" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Unknown position in inherited view %s !" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Add User" -msgstr "" - -#. module: base -#: field:res.request,trigger_date:0 -msgid "Trigger Date" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Croatian / hrvatski jezik" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_configuration_wizard -msgid "ir.actions.configuration.wizard" -msgstr "" - -#. module: base -#: view:res.partner.bank:0 -#: model:res.partner.bank.type,name:base.bank_normal -msgid "Bank account" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_FORWARD" -msgstr "" - -#. module: base -#: field:res.bank,zip:0 -#: field:res.partner.address,zip:0 -#: field:res.partner.bank,zip:0 -msgid "Zip" -msgstr "" - -#. module: base -#: field:ir.module.module,author:0 -msgid "Author" -msgstr "" - -#. module: base -#: view:ir.model:0 -msgid "Fields Description" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%b - Abbreviated month name." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDELETE" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,state:0 -msgid "choose" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_QUESTION" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -#: view:ir.actions.server:0 -msgid "Trigger" -msgstr "" - -#. module: base -#: field:res.partner,supplier:0 -#: model:res.partner.category,name:base.res_partner_category_8 -msgid "Supplier" -msgstr "" - -#. module: base -#: code:report/custom.py:0 -#, python-format -msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -#: view:ir.actions.server:0 -msgid "Multi Actions" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Close" -msgstr "" - -#. module: base -#: field:res.request.history,body:0 -msgid "Body" -msgstr "" - -#. module: base -#: field:res.lang,direction:0 -msgid "Direction" -msgstr "" - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Full" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_wizard_module_update_translations -msgid "wizard.module.update_translations" -msgstr "" - -#. module: base -#: help:ir.actions.server,state:0 -msgid "Type of the Action that is to be execute" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_ui_view -#: field:ir.actions.act_window,view_ids:0 -#: field:ir.actions.act_window,views:0 -#: field:ir.module.module,views_by_module:0 -#: field:wizard.ir.model.menu.create,view_ids:0 -#: model:ir.ui.menu,name:base.menu_action_ui_view -#: view:wizard.ir.model.menu.create:0 -#: view:ir.ui.view:0 -#: view:ir.actions.act_window:0 -msgid "Views" -msgstr "" - -#. module: base -#: wizard_button:res.partner.spam_send,init,send:0 -msgid "Send Email" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_4 -msgid "Basic Partner" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SELECT_FONT" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "You try to remove a module that is installed or will be installed" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "," -msgstr "" - -#. module: base -#: help:ir.values,key2:0 -msgid "The kind of action or button in the client side that will trigger the action." -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_madam -msgid "Madam" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PASTE" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_model -#: model:ir.model,name:base.model_ir_model -#: model:ir.ui.menu,name:base.ir_model_model_menu -msgid "Objects" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%Y - Year with century as a decimal number." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_form -#: model:ir.ui.menu,name:base.menu_workflow -msgid "Workflows" -msgstr "" - -#. module: base -#: field:ir.model.fields,model_id:0 -msgid "Object id" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%M - Minute as a decimal number [00,59]." -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "<" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_wizard_form -#: model:ir.ui.menu,name:base.menu_config_module -msgid "Configuration Wizard" -msgstr "" - -#. module: base -#: view:res.request.link:0 -msgid "Request Link" -msgstr "" - -#. module: base -#: field:wizard.module.lang.export,format:0 -msgid "File Format" -msgstr "" - -#. module: base -#: field:ir.module.module,url:0 -msgid "URL" -msgstr "" - -#. module: base -#: help:ir.actions.server,message:0 -msgid "Specify the Message, you can use the fields from the object. like `Dear [[ object.partner_id.name ]]`" -msgstr "" - -#. module: base -#: field:ir.report.custom,print_format:0 -msgid "Print format" -msgstr "" - -#. module: base -#: selection:res.config.view,view:0 -msgid "Simplified Interface" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_payterm_form -#: model:ir.model,name:base.model_res_payterm -#: view:res.payterm:0 -msgid "Payment term" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_low_workflow -msgid "Workflow Items" -msgstr "" - -#. module: base -#: field:res.request,ref_doc2:0 -msgid "Document Ref 2" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-calendar" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Get file" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Work Days" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_roles -msgid "res.roles" -msgstr "" - -#. module: base -#: help:ir.cron,priority:0 -msgid "0=Very Urgent\n" -"10=Not urgent" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_data -msgid "ir.model.data" -msgstr "" - -#. module: base -#: view:res.groups:0 -#: view:ir.model:0 -msgid "Access Rights" -msgstr "" - -#. module: base -#: help:ir.values,action_id:0 -msgid "This field is not used, it only helps you to select the right action." -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,report_rml:0 -msgid "The .rml path of the file or NULL if the content is in report_rml_content" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Skip" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_menu_create -#: view:wizard.ir.model.menu.create:0 -msgid "Create Menu" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_RECORD" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_module -msgid "maintenance contract modules" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_workflow_root -msgid "Workflow Definitions" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the model '%s' !" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.grant_menu_access -#: model:ir.ui.menu,name:base.menu_grant_menu_access -msgid "Grant Access To Menus" -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Draft" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Can not create the module file:\n %s" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child1:0 -msgid "field child1" -msgstr "" - -#. module: base -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:ir.actions.server,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The write method is not implemented on this object !" -msgstr "" - -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - -#. module: base -#: field:res.request,act_from:0 -#: field:res.request.history,act_from:0 -msgid "From" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "Send" -msgstr "" - -#. module: base -#: wizard_button:server.action.create,init,step_1:0 -msgid "Next" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_11 -msgid "Configuration Wizards" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "TGZ Archive" -msgstr "" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Set NULL" -msgstr "" - -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-report" -msgstr "" - -#. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "" - -#. module: base -#: field:ir.actions.todo,type:0 -#: field:ir.actions.report.xml,report_type:0 -#: field:ir.server.object.lines,type:0 -#: field:ir.translation,type:0 -#: field:ir.values,key:0 -#: view:res.partner:0 -msgid "Type" -msgstr "" - -#. module: base -#: field:ir.model.fields,state:0 -#: field:ir.model,state:0 -msgid "Manualy Created" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Defined Reports" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_IN" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FILE" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_9 -msgid "Components Supplier" -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Note that this operation my take a few minutes." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Invalid operation" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation -#: view:ir.translation:0 -msgid "Translations" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_rml_content:0 -#: field:ir.actions.report.xml,report_rml_content_data:0 -msgid "RML content" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_grid -msgid "Objects Security Grid" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONNECT" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SAVE_AS" -msgstr "" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Not Searchable" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND" -msgstr "" - -#. module: base -#: field:ir.sequence,padding:0 -msgid "Number padding" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OK" -msgstr "" - -#. module: base -#: code:report/report_sxw.py:0 -#, python-format -msgid "print" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password empty !" -msgstr "" - -#. module: base -#: field:res.company,rml_header:0 -msgid "RML Header" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The copy method is not implemented on this object !" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -#: selection:workflow.activity,kind:0 -msgid "Dummy" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "None" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow -msgid "workflow" -msgstr "" - -#. module: base -#: wizard_field:res.partner.sms_send,init,app_id:0 -msgid "API ID" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_category -#: view:ir.module.category:0 -msgid "Module Category" -msgstr "" - -#. module: base -#: field:ir.rule,operand:0 -msgid "Operand" -msgstr "" - -#. module: base -#: help:res.partner,supplier:0 -msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." -msgstr "" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "Scan for new modules" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_repository -msgid "Module Repository" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNINDENT" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "At Once" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_security -msgid "Security" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Using a relation field which uses an unknown object" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Write Object" -msgstr "" - -#. module: base -#: field:res.bank,street:0 -#: field:res.partner.address,street:0 -#: field:res.partner.bank,street:0 -msgid "Street" -msgstr "" - -#. module: base -#: field:ir.cron,interval_number:0 -msgid "Interval Number" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND" -msgstr "" - -#. module: base -#: selection:maintenance.contract,kind:0 -msgid "Partial" -msgstr "" - -#. module: base -#: view:ir.module.repository:0 -msgid "Repository" -msgstr "" - -#. module: base -#: field:res.users,action_id:0 -msgid "Home Action" -msgstr "" - -#. module: base -#: selection:res.request,priority:0 -msgid "Low" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Recursion error in modules dependencies !" -msgstr "" - -#. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_xsl:0 -msgid "XSL path" -msgstr "" - -#. module: base -#: field:res.groups,model_access:0 -#: model:ir.ui.menu,name:base.menu_security_access -#: view:ir.model.access:0 -#: view:res.groups:0 -msgid "Access Controls" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_wizard_module_lang_export -msgid "wizard.module.lang.export" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -#: selection:ir.module.module,state:0 -msgid "Installed" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_function_form -#: model:ir.ui.menu,name:base.menu_partner_function_form -#: view:res.partner.function:0 -msgid "Partner Functions" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_currency -#: field:res.company,currency_id:0 -#: field:res.currency,name:0 -#: field:res.currency.rate,currency_id:0 -#: view:res.currency:0 -msgid "Currency" -msgstr "" - -#. module: base -#: field:res.partner.canal,name:0 -msgid "Channel Name" -msgstr "" - -#. module: base -#: help:ir.actions.server,action_id:0 -msgid "Select the Ation Window, Report, Wizard to be execute" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "5. %y, %Y ==> 08, 2008" -msgstr "" - -#. module: base -#: field:ir.values,res_id:0 -msgid "Object ID" -msgstr "" - -#. module: base -#: field:res.bank,street2:0 -#: field:res.partner.address,street2:0 -msgid "Street2" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,alignment:0 -msgid "Alignment" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_UNDO" -msgstr "" - -#. module: base -#: field:ir.attachment,create_date:0 -msgid "Date Created" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid ">=" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_todo -msgid "ir.actions.todo" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_administration -msgid "Administration" -msgstr "" - -#. module: base -#: field:ir.sequence,number_next:0 -msgid "Next Number" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Seconde: %(sec)s" -msgstr "" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "This function will check for new modules in the 'addons' path and on module repositories:" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_country -#: field:res.bank,country:0 -#: field:res.country.state,country_id:0 -#: field:res.partner.address,country_id:0 -#: field:res.partner.bank,country_id:0 -#: field:res.partner,country:0 -#: view:res.country:0 -msgid "Country" -msgstr "" - -#. module: base -#: field:res.currency,rate_ids:0 -#: view:res.currency:0 -msgid "Rates" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%W - Week number of the year (Monday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Monday are considered to be in week 0." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_BACK" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#: code:osv/orm.py:0 -#, python-format -msgid "AccessError" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "======================================================" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%x - Appropriate date representation." -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Validated" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Bar Chart" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_config -msgid "ir.model.config" -msgstr "" - -#. module: base -#: field:ir.module.module,website:0 -#: field:res.partner,website:0 -msgid "Website" -msgstr "" - -#. module: base -#: field:ir.model.fields,selection:0 -msgid "Field Selection" -msgstr "" - -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - -#. module: base -#: field:ir.sequence,number_increment:0 -msgid "Increment Number" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,operation:0 -#: field:ir.ui.menu,icon_pict:0 -#: field:wizard.module.lang.export,state:0 -msgid "unknown" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,res_id:0 -msgid "Resource Ref." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_FILL" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "draft" -msgstr "" - -#. module: base -#: field:res.currency.rate,name:0 -#: field:res.partner,date:0 -#: field:res.partner.event,date:0 -#: field:res.request,date_sent:0 -msgid "Date" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_sxw:0 -msgid "SXW path" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "RML" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_ERROR" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_main -msgid "Partners by Categories" -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Action to Launch" -msgstr "" - -#. module: base -#: wizard_field:module.lang.install,init,lang:0 -#: field:ir.translation,lang:0 -#: field:res.partner,lang:0 -#: field:res.users,context_lang:0 -#: field:wizard.module.lang.export,lang:0 -#: field:wizard.module.update_translations,lang:0 -msgid "Language" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "XSL" -msgstr "" - -#. module: base -#: field:ir.module.module,demo:0 -msgid "Demo data" -msgstr "" - -#. module: base -#: wizard_view:base.module.import,import:0 -#: wizard_view:base.module.import,init:0 -msgid "Module import" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_form -#: model:ir.ui.menu,name:base.menu_action_res_company_form -#: view:res.company:0 -msgid "Companies" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_supplier_form -#: model:ir.ui.menu,name:base.menu_partner_supplier_form -msgid "Suppliers Partners" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_sequence_type -msgid "ir.sequence.type" -msgstr "" - -#. module: base -#: field:ir.actions.wizard,type:0 -msgid "Action type" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,format:0 -msgid "CSV File" -msgstr "" - -#. module: base -#: field:res.company,parent_id:0 -msgid "Parent Company" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: base -#: field:res.lang,decimal_point:0 -msgid "Decimal Separator" -msgstr "" - -#. module: base -#: field:ir.module.category,module_nr:0 -msgid "# of Modules" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PLAY" -msgstr "" - -#. module: base -#: field:ir.model.data,date_init:0 -msgid "Init Date" -msgstr "" - -#. module: base -#: field:res.company,rml_header2:0 -msgid "RML Internal Header" -msgstr "" - -#. module: base -#: selection:ir.model,state:0 -msgid "Base Object" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-crm" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_STRIKETHROUGH" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "(year)=" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Features" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-partner" -msgstr "" - -#. module: base -#: field:ir.attachment,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented get_memory method !" -msgstr "" - -#. module: base -#: field:ir.actions.server,code:0 -#: selection:ir.actions.server,state:0 -#: view:ir.actions.server:0 -msgid "Python Code" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Bad query." -msgstr "" - -#. module: base -#: field:ir.model.fields,field_description:0 -msgid "Field Label" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "You try to bypass an access rule (Document type: %s)." -msgstr "" - -#. module: base -#: field:ir.actions.url,url:0 -msgid "Action Url" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDEX" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_company_tree -#: model:ir.ui.menu,name:base.menu_action_res_company_tree -msgid "Company's Structure" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fc0_op:0 -#: field:ir.report.custom.fields,fc1_op:0 -#: field:ir.report.custom.fields,fc2_op:0 -#: field:ir.report.custom.fields,fc3_op:0 -msgid "Relation" -msgstr "" - -#. module: base -#: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 -#: field:ir.report.custom.fields,fc0_condition:0 -#: field:workflow.transition,condition:0 -msgid "Condition" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form -#: model:ir.ui.menu,name:base.menu_partner_customer_form -msgid "Customers Partners" -msgstr "" - -#. module: base -#: wizard_button:res.partner.spam_send,init,end:0 -#: wizard_button:res.partner.sms_send,init,end:0 -#: wizard_button:base.module.import,init,end:0 -#: wizard_button:module.lang.import,init,end:0 -#: wizard_button:module.lang.install,init,end:0 -#: wizard_button:module.module.update,init,end:0 -#: wizard_button:module.upgrade,next,end:0 -#: selection:ir.actions.todo,state:0 -#: view:wizard.ir.model.menu.create:0 -#: view:wizard.module.lang.export:0 -#: view:wizard.module.update_translations:0 -msgid "Cancel" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_users -msgid "res.users" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_management -msgid "Modules Management" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify server option --smtp-from !" -msgstr "" - -#. module: base -#: field:workflow.transition,act_from:0 -msgid "Source Activity" -msgstr "" - -#. module: base -#: field:ir.model.data,res_id:0 -#: field:ir.translation,res_id:0 -#: field:workflow.instance,res_id:0 -#: field:workflow.triggers,res_id:0 -msgid "Resource ID" -msgstr "" - -#. module: base -#: field:ir.model,info:0 -#: view:maintenance.contract:0 -msgid "Information" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_exports -msgid "ir.exports" -msgstr "" - -#. module: base -#: field:workflow.activity,flow_start:0 -msgid "Flow Start" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MISSING_IMAGE" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,bgcolor:0 -msgid "Background Color" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REMOVE" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_rml:0 -msgid "RML path" -msgstr "" - -#. module: base -#: field:ir.actions.configuration.wizard,item_id:0 -msgid "Next Configuration Wizard" -msgstr "" - -#. module: base -#: field:workflow.workitem,inst_id:0 -msgid "Instance" -msgstr "" - -#. module: base -#: field:ir.values,meta:0 -#: field:ir.values,meta_unpickle:0 -msgid "Meta Datas" -msgstr "" - -#. module: base -#: help:res.currency,rate:0 -#: help:res.currency.rate,rate:0 -msgid "The rate of the currency to the currency of rate 1" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "raw" -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Partners: " -msgstr "" - -#. module: base -#: selection:ir.actions.todo,type:0 -#: selection:res.partner.address,type:0 -msgid "Other" -msgstr "" - -#. module: base -#: help:ir.actions.server,record_id:0 -msgid "Provide the field name from where the record id stores after the create operations, if its empty, you can not track the new record" -msgstr "" - -#. module: base -#: field:ir.ui.view,field_parent:0 -msgid "Childs Field" -msgstr "" - -#. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Can not remove root user!" -msgstr "" - -#. module: base -#: field:ir.module.module,latest_version:0 -msgid "Installed version" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "9. %j ==> 340" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_activity_form -#: field:workflow,activities:0 -#: model:ir.ui.menu,name:base.menu_workflow_activity -#: view:workflow:0 -msgid "Activities" -msgstr "" - -#. module: base -#: field:ir.model.config,password_check:0 -msgid "confirmation" -msgstr "" - -#. module: base -#: field:res.partner,user_id:0 -msgid "Dedicated Salesman" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_users -#: field:ir.actions.todo,users_id:0 -#: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 -#: field:res.groups,users:0 -#: field:res.roles,users:0 -#: model:ir.ui.menu,name:base.menu_action_res_users -#: model:ir.ui.menu,name:base.menu_users -#: view:res.groups:0 -#: view:res.users:0 -msgid "Users" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export a Translation File" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_xml -#: model:ir.ui.menu,name:base.menu_ir_action_report_xml -msgid "Report Xml" -msgstr "" - -#. module: base -#: help:res.partner,user_id:0 -msgid "The internal user that is in charge of communicating with this partner if any." -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard View" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Upgrade" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The search method is not implemented on this object !" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,attachment:0 -msgid "Save As Attachment Prefix" -msgstr "" - -#. module: base -#: field:ir.cron,nextcall:0 -msgid "Next call date" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,cumulate:0 -msgid "Cumulate" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_14 -msgid "Bad customers" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -#: selection:ir.rule,operator:0 -msgid "=" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Pie charts need exactly two fields" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_bank -#: field:res.partner.bank,bank:0 -#: view:res.bank:0 -msgid "Bank" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HARDDISK" -msgstr "" - -#. module: base -#: code:tools/translate.py:0 -#, python-format -msgid "Bad file format" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -#: field:ir.actions.todo,name:0 -#: field:ir.actions.report.xml,name:0 -#: field:ir.cron,name:0 -#: field:ir.model.access,name:0 -#: field:ir.model.fields,name:0 -#: field:ir.module.category,name:0 -#: field:ir.module.module.dependency,name:0 -#: field:ir.module.module,name:0 -#: field:ir.module.repository,name:0 -#: field:ir.property,name:0 -#: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 -#: field:ir.values,name:0 -#: field:maintenance.contract.module,name:0 -#: field:res.bank,name:0 -#: field:res.config.view,name:0 -#: field:res.lang,name:0 -#: field:res.partner.bank.type,name:0 -#: field:res.partner.category,complete_name:0 -#: field:res.partner,name:0 -#: field:res.request.link,name:0 -#: field:res.users,name:0 -#: field:workflow.activity,name:0 -#: field:workflow,name:0 -msgid "Name" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install -msgid "Load an Official Translation" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_APPLY" -msgstr "" - -#. module: base -#: field:ir.module.module,reports_by_module:0 -msgid "Reports" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_maintenance_contract_form -#: model:ir.ui.menu,name:base.menu_maintenance_contract -msgid "Your Maintenance Contracts" -msgstr "" - -#. module: base -#: field:workflow,on_create:0 -msgid "On Create" -msgstr "" - -#. module: base -#: wizard_view:base.module.import,init:0 -msgid "Please give your module .ZIP file to import." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PAUSE" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: base -#: wizard_field:res.partner.sms_send,init,user:0 -#: field:res.users,login:0 -msgid "Login" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-2" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese (BR) / português (BR)" -msgstr "" - -#. module: base -#: field:ir.translation,value:0 -msgid "Translation Value" -msgstr "" - -#. module: base -#: help:wizard.module.lang.export,lang:0 -msgid "To export a new language, do not select a language." -msgstr "" - -#. module: base -#: field:ir.actions.server,record_id:0 -msgid "Create Id" -msgstr "" - -#. module: base -#: field:maintenance.contract,module_ids:0 -#: view:maintenance.contract:0 -msgid "Covered Modules" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Average" -msgstr "" - -#. module: base -#: field:res.users,context_tz:0 -msgid "Timezone" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_grid_security -#: model:ir.ui.menu,name:base.menu_ir_access_grid -msgid "Access Controls Grid" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_actions -#: model:ir.ui.menu,name:base.menu_custom_action -#: model:ir.ui.menu,name:base.menu_ir_sequence_actions -#: model:ir.ui.menu,name:base.next_id_6 -msgid "Actions" -msgstr "" - -#. module: base -#: selection:res.request,priority:0 -msgid "High" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_instance_form -#: model:ir.ui.menu,name:base.menu_workflow_instance -msgid "Instances" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COPY" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Auto" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_3 -msgid "Starter Partner" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_request_link -msgid "res.request.link" -msgstr "" - -#. module: base -#: wizard_button:module.module.update,init,update:0 -msgid "Check new modules" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_view -msgid "ir.actions.act_window.view" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Web" -msgstr "" - -#. module: base -#: help:res.bank,bic:0 -msgid "Bank Identifier Code" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CDROM" -msgstr "" - -#. module: base -#: field:workflow.activity,action:0 -msgid "Python Action" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIRECTORY" -msgstr "" - -#. module: base -#: field:res.partner.event,planned_revenue:0 -msgid "Planned Revenue" -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "You have to import a .CSV file wich is encoded in UTF-8. Please check that the first line of your file is one of the following:" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,groupby:0 -msgid "Group by" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_by_category -#: model:ir.actions.act_window,name:base.action_partner_category_form -#: model:ir.model,name:base.model_res_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_form -#: view:res.partner.category:0 -msgid "Partner Categories" -msgstr "" - -#. module: base -#: field:ir.model.fields,readonly:0 -#: field:res.partner.bank.type.field,readonly:0 -msgid "Readonly" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the field '%s' !" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ITALIC" -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,header:0 -msgid "Add or not the coporate RML header" -msgstr "" - -#. module: base -#: field:res.currency,accuracy:0 -msgid "Computational Accuracy" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_wizard -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.wizard" -msgstr "" - -#. module: base -#: field:res.partner.event,document:0 -msgid "Document" -msgstr "" - -#. module: base -#: field:res.partner.event,type:0 -msgid "Type of Event" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REFRESH" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_type -#: model:ir.ui.menu,name:base.menu_ir_sequence_type -msgid "Sequence Types" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_STOP" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" -msgstr "" - -#. module: base -#: field:res.partner.bank,acc_number:0 -msgid "Account number" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line -msgid "wizard.ir.model.menu.create.line" -msgstr "" - -#. module: base -#: field:ir.attachment,res_id:0 -msgid "Attached ID" -msgstr "" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Purchase Offer" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -#: selection:ir.module.module,state:0 -msgid "To be installed" -msgstr "" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Day: %(day)s" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_FIND_AND_REPLACE" -msgstr "" - -#. module: base -#: field:res.request,history:0 -#: view:res.request:0 -#: view:res.partner:0 -msgid "History" -msgstr "" - -#. module: base -#: help:ir.actions.server,write_id:0 -msgid "Provide the field name from where the record id refer for the write operation, if its empty it will refer to the active id of the object" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_WARNING" -msgstr "" - -#. module: base -#: help:ir.module.repository,filter:0 -msgid "Regexp to search module on the repository webpage:\n" -"- The first parenthesis must match the name of the module.\n" -"- The second parenthesis must match all the version number.\n" -"- The last parenthesis must match the extension of the module." -msgstr "" - -#. module: base -#: model:ir.actions.report.xml,name:base.ir_module_reference_print -msgid "Technical guide" -msgstr "" - -#. module: base -#: field:ir.server.object.lines,col1:0 -msgid "Destination" -msgstr "" - -#. module: base -#: help:ir.values,res_id:0 -msgid "Keep 0 if the action must appear on all resources." -msgstr "" - -#. module: base -#: field:ir.cron,interval_type:0 -msgid "Interval Unit" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CONVERT" -msgstr "" - -#. module: base -#: field:ir.exports,name:0 -msgid "Export name" -msgstr "" - -#. module: base -#: help:ir.model.fields,on_delete:0 -msgid "On delete property for many2one fields" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_rule -msgid "ir.rule" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Days" -msgstr "" - -#. module: base -#: field:ir.property,value:0 -#: selection:ir.server.object.lines,type:0 -#: field:ir.server.object.lines,value:0 -#: field:ir.values,value:0 -#: field:ir.values,value_unpickle:0 -msgid "Value" -msgstr "" - -#. module: base -#: field:ir.actions.server,write_id:0 -msgid "Write Id" -msgstr "" - -#. module: base -#: field:ir.default,field_name:0 -msgid "Object field" -msgstr "" - -#. module: base -#: view:wizard.module.update_translations:0 -msgid "Update Translations" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,width:0 -msgid "Fixed Width" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Other Actions Configuration" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "" - -#. module: base -#: field:res.company,rml_footer1:0 -msgid "Report Footer 1" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EXECUTE" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Minutes" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,start:0 -#: wizard_view:module.upgrade,end:0 -msgid "The modules have been upgraded / installed !" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,domain:0 -msgid "Domain Value" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -#: view:wizard.module.lang.export:0 -msgid "Help" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Some installed modules depends on the module you plan to desinstall :\n %s" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request_link-act -#: model:ir.ui.menu,name:base.menu_res_request_link_act -msgid "Accepted Links in Requests" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_YES" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "SMS Configuration" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_canal-act -#: model:ir.model,name:base.model_res_partner_canal -#: model:ir.ui.menu,name:base.menu_res_partner_canal-act -msgid "Channels" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_access_act -#: model:ir.ui.menu,name:base.menu_ir_access_act -msgid "Access Controls List" -msgstr "" - -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global or it needs to be put on a group or user" -msgstr "" - -#. module: base -#: code:tools/amount_to_text_en.py:0 -#, python-format -msgid "Number too large '%d', can not translate it" -msgstr "" - -#. module: base -#: field:ir.actions.wizard,wiz_name:0 -msgid "Wizard name" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_custom -#: model:ir.ui.menu,name:base.menu_ir_action_report_custom -msgid "Report Custom" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Schedule for Installation" -msgstr "" - -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" -msgstr "" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - -#. module: base -#: help:ir.actions.server,condition:0 -msgid "Condition that is to be test before execute action, i.e : object.list_price > object.cost_price" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "7. %H:%M:%S ==> 18:25:20" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_form -#: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form -#: view:res.partner:0 -msgid "Partners" -msgstr "" - -#. module: base -#: field:ir.attachment,res_model:0 -msgid "Attached Model" -msgstr "" - -#. module: base -#: field:ir.actions.server,trigger_name:0 -msgid "Trigger Name" -msgstr "" - -#. module: base -#: wizard_button:server.action.create,step_1,create:0 -msgid "Create" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "The name of the group can not start with \"-\"" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,start:0 -#: wizard_view:module.upgrade,end:0 -msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." -msgstr "" - -#. module: base -#: field:res.partner.title,shortcut:0 -#: view:ir.ui.view_sc:0 -msgid "Shortcut" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_access -msgid "ir.model.access" -msgstr "" - -#. module: base -#: field:ir.cron,priority:0 -#: field:ir.ui.view,priority:0 -#: field:res.request.link,priority:0 -#: field:res.request,priority:0 -msgid "Priority" -msgstr "" - -#. module: base -#: field:ir.translation,src:0 -msgid "Source" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_contact -#: model:ir.ui.menu,name:base.menu_partner_title_contact -msgid "Contacts Titles" -msgstr "" - -#. module: base -#: help:res.partner.address,partner_id:0 -msgid "Keep empty for a private address, not related to partner." -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard Button" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Legend (for prefix, suffix)" -msgstr "" - -#. module: base -#: field:workflow.activity,flow_stop:0 -msgid "Flow Stop" -msgstr "" - -#. module: base -#: selection:ir.server.object.lines,type:0 -msgid "Formula" -msgstr "" - -#. module: base -#: view:res.company:0 -msgid "Internal Header/Footer" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_LEFT" -msgstr "" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank account owner" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_values_form -#: model:ir.ui.menu,name:base.menu_values_form -msgid "Client Actions Connections" -msgstr "" - -#. module: base -#: field:ir.ui.view,name:0 -msgid "View Name" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,resource:0 -msgid "Resource Name" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 -#, python-format -msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." -msgstr "" - -#. module: base -#: field:ir.model.fields,translate:0 -msgid "Translate" -msgstr "" - -#. module: base -#: field:res.partner.address,type:0 -msgid "Address Type" -msgstr "" - -#. module: base -#: wizard_button:module.upgrade,start,config:0 -#: wizard_button:module.upgrade,end,config:0 -msgid "Start configuration" -msgstr "" - -#. module: base -#: field:ir.module.category,child_ids:0 -#: field:ir.module.category,parent_id:0 -#: field:res.partner.category,parent_id:0 -msgid "Parent Category" -msgstr "" - -#. module: base -#: field:ir.exports,export_fields:0 -msgid "Export Id" -msgstr "" - -#. module: base -#: help:ir.actions.server,expression:0 -msgid "enter the field/expression that will return the list, i.e. select the sale order in Object, and we can have loop on sales order line. Expression = `object.order_line`" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Hours" -msgstr "" - -#. module: base -#: field:ir.report.custom,frequency:0 -msgid "Frequency" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Catalan / Català" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "End of Request" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "References" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This record was modified in the meanwhile" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%U - Week number of the year (Sunday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Sunday are considered to be in week 0." -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Note that this operation may take a few minutes." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COLOR_PICKER" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-product" -msgstr "" - -#. module: base -#: field:res.request,act_to:0 -#: field:res.request.history,act_to:0 -msgid "To" -msgstr "" - -#. module: base -#: field:maintenance.contract,kind:0 -#: field:workflow.activity,kind:0 -msgid "Kind" -msgstr "" - -#. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Tree can only be used in tabular reports" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,view_type:0 -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Tree" -msgstr "" - -#. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Manual" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "Could you check your contract information ?" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLEAR" -msgstr "" - -#. module: base -#: help:res.users,password:0 -msgid "Keep empty if you don't want the user to be able to connect on the system." -msgstr "" - -#. module: base -#: field:ir.model.access,perm_read:0 -msgid "Read Access" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Directory" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Line Plot" -msgstr "" - -#. module: base -#: field:res.lang,thousands_sep:0 -msgid "Thousands Separator" -msgstr "" - -#. module: base -#: selection:ir.model.fields,state:0 -msgid "Custom Field" -msgstr "" - -#. module: base -#: field:ir.model.fields,relation_field:0 -msgid "Relation Field" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented search_memory method !" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Spanish / Español" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fontcolor:0 -msgid "Font color" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_server_action -#: model:ir.ui.menu,name:base.menu_server_action -#: view:ir.actions.server:0 -msgid "Server Actions" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (TW) / 正體字" -msgstr "" - -#. module: base -#: field:ir.model.fields,view_load:0 -msgid "View Auto-Load" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_UP" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_DESCENDING" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_request -msgid "res.request" -msgstr "" - -#. module: base -#: field:res.groups,rule_groups:0 -#: field:res.users,rules_id:0 -#: view:res.groups:0 -msgid "Rules" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title -#: model:ir.ui.menu,name:base.menu_partner_title -msgid "Titles" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,start:0 -#: wizard_view:module.upgrade,end:0 -msgid "System upgrade done" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,view_type:0 -#: field:ir.actions.act_window.view,view_mode:0 -msgid "Type of view" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Client Action Configuration" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" -msgstr "" - -#. module: base -#: field:ir.actions.todo,start_date:0 -msgid "Start Date" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_address_form -#: model:ir.model,name:base.model_res_partner_address -#: view:res.partner.address:0 -msgid "Partner Addresses" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,report_xml:0 -msgid "XML path" -msgstr "" - -#. module: base -#: field:ir.default,company_id:0 -#: field:ir.property,company_id:0 -#: field:ir.values,company_id:0 -#: field:res.users,company_id:0 -#: view:res.company:0 -msgid "Company" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PROPERTIES" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_11 -msgid "Textile Suppliers" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." -msgstr "" - -#. module: base -#: field:ir.report.custom,title:0 -msgid "Report title" -msgstr "" - -#. module: base -#: field:ir.attachment,datas:0 -msgid "File Content" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Uninstall (beta)" -msgstr "" - -#. module: base -#: selection:ir.actions.url,target:0 -#: selection:ir.actions.act_window,target:0 -msgid "New Window" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Second field should be figures" -msgstr "" - -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Commercial Prospect" -msgstr "" - -#. module: base -#: model:ir.actions.todo,note:base.config_wizard_step_user -msgid "Create your users.\n" -"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n" -" " -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Couldn't generate the next id because some partners have an alphabetic id !" -msgstr "" - -#. module: base -#: selection:ir.report.custom,state:0 -msgid "Unsubscribed" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - -#. module: base -#: wizard_field:module.module.update,update,update:0 -msgid "Number of modules updated" -msgstr "" - -#. module: base -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Skip Step" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.act_res_partner_event -#: field:res.partner.event,name:0 -#: field:res.partner,events:0 -msgid "Events" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_roles -#: model:ir.ui.menu,name:base.menu_action_res_roles -msgid "Roles Structure" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_url -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.url" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_STOP" -msgstr "" - -#. module: base -#: field:wizard.ir.model.menu.create,name:0 -msgid "Menu Name" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_event_type-act -#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act -msgid "Active Partner Events" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Wrong ID for the browse record, got %r, expected an integer." -msgstr "" - -#. module: base -#: help:ir.actions.server,srcmodel_id:0 -msgid "In which object you want to create / write the object if its empty refer to the Object field" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Define New Users" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_rule -#: model:ir.ui.menu,name:base.menu_action_rule -msgid "Record Rules" -msgstr "" - -#. module: base -#: field:res.config.view,view:0 -msgid "View Mode" -msgstr "" - -#. module: base -#: wizard_field:module.module.update,update,add:0 -msgid "Number of modules added" -msgstr "" - -#. module: base -#: field:res.bank,phone:0 -#: field:res.partner.address,phone:0 -msgid "Phone" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Day of the year: %(doy)s" -msgstr "" - -#. module: base -#: help:ir.actions.wizard,multi:0 -msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." -msgstr "" - -#. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_groups -#: field:ir.actions.todo,groups_id:0 -#: field:ir.actions.report.xml,groups_id:0 -#: field:ir.actions.act_window,groups_id:0 -#: field:ir.actions.wizard,groups_id:0 -#: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 -#: field:ir.ui.menu,groups_id:0 -#: field:res.users,groups_id:0 -#: model:ir.ui.menu,name:base.menu_action_res_groups -#: view:res.groups:0 -#: view:res.users:0 -msgid "Groups" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "" - -#. module: base -#: field:ir.actions.todo,active:0 -#: field:ir.cron,active:0 -#: field:ir.module.repository,active:0 -#: field:ir.sequence,active:0 -#: field:res.bank,active:0 -#: field:res.currency,active:0 -#: field:res.lang,active:0 -#: field:res.partner,active:0 -#: field:res.partner.address,active:0 -#: field:res.partner.canal,active:0 -#: field:res.partner.category,active:0 -#: field:res.partner.event.type,active:0 -#: field:res.request,active:0 -#: field:res.users,active:0 -msgid "Active" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "" - -#. module: base -#: field:ir.ui.view.custom,ref_id:0 -msgid "Orignal View" -msgstr "" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Sale Opportunity" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid ">" -msgstr "" - -#. module: base -#: field:workflow.triggers,workitem_id:0 -msgid "Workitem" -msgstr "" - -#. module: base -#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry -msgid "country_id" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%A - Full weekday name." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "" - -#. module: base -#: view:ir.actions.act_window:0 -msgid "Open a Window" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Groups are used to defined access rights on each screen and menu." -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Months" -msgstr "" - -#. module: base -#: field:workflow.activity,signal_send:0 -msgid "Signal (subflow.*)" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_OUT" -msgstr "" - -#. module: base -#: help:ir.actions.server,model_id:0 -msgid "select the obect on which the action will work (read, write, create)" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -#: selection:ir.module.module,state:0 -msgid "To be removed" -msgstr "" - -#. module: base -#: field:res.partner.category,child_ids:0 -msgid "Childs Category" -msgstr "" - -#. module: base -#: field:ir.model.fields,model:0 -#: field:ir.model.grid,model:0 -#: field:ir.model,model:0 -#: field:ir.model,name:0 -#: field:ir.values,model:0 -msgid "Object Name" -msgstr "" - -#. module: base -#: field:ir.actions.todo,action_id:0 -#: field:ir.actions.act_window.view,act_window_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -#: view:ir.actions.actions:0 -msgid "Action" -msgstr "" - -#. module: base -#: field:ir.rule,domain_force:0 -msgid "Force Domain" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Email Configuration" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_cron -msgid "ir.cron" -msgstr "" - -#. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "And" -msgstr "" - -#. module: base -#: field:ir.model.fields,relation:0 -msgid "Object Relation" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_attachment -#: model:ir.ui.menu,name:base.menu_action_attachment -#: view:ir.attachment:0 -msgid "Attachments" -msgstr "" - -#. module: base -#: field:ir.rule,field_id:0 -#: selection:ir.translation,type:0 -msgid "Field" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Validate" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract_wizard -msgid "maintenance.contract.wizard" -msgstr "" - -#. module: base -#: help:ir.actions.server,code:0 -msgid "python code to be execute" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT" -msgstr "" - -#. module: base -#: field:ir.actions.wizard,multi:0 -msgid "Action on multiple doc." -msgstr "" - -#. module: base -#: field:res.partner,child_ids:0 -#: field:res.request,ref_partner_id:0 -msgid "Partner Ref." -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_report_custom_fields -msgid "ir.report.custom.fields" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Uninstall" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.act_window" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-mrp" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Done" -msgstr "" - -#. module: base -#: field:ir.actions.server,trigger_obj_id:0 -msgid "Trigger On" -msgstr "" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Invoice" -msgstr "" - -#. module: base -#: help:ir.actions.report.custom,multi:0 -#: help:ir.actions.report.xml,multi:0 -#: help:ir.actions.act_window.view,multi:0 -msgid "If set to true, the action will not be displayed on the right toolbar of a form views." -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,start:0 -#: wizard_view:module.upgrade,end:0 -msgid "You may have to reinstall some language pack." -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_currency_rate -msgid "Currency Rate" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_write:0 -msgid "Write Access" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export done" -msgstr "" - -#. module: base -#: field:ir.cron,args:0 -msgid "Arguments" -msgstr "" - -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - -#. module: base -#: field:res.bank,city:0 -#: field:res.partner.address,city:0 -#: field:res.partner.bank,city:0 -#: field:res.partner,city:0 -msgid "City" -msgstr "" - -#. module: base -#: field:res.company,child_ids:0 -msgid "Childs Company" -msgstr "" - -#. module: base -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: base -#: field:ir.actions.configuration.wizard,name:0 -msgid "Next Wizard" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<>" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 -#: field:ir.ui.menu,name:0 -#: view:ir.ui.menu:0 -msgid "Menu" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid "<=" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export Data" -msgstr "" - -#. module: base -#: field:workflow.triggers,instance_id:0 -msgid "Destination Instance" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Estonian / Eesti keel" -msgstr "" - -#. module: base -#: field:ir.module.module,menus_by_module:0 -#: view:res.groups:0 -msgid "Menus" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Action To Launch" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -#: selection:ir.rule,operator:0 -msgid "in" -msgstr "" - -#. module: base -#: field:ir.actions.url,target:0 -msgid "Action Target" -msgstr "" - -#. module: base -#: field:ir.report.custom,field_parent:0 -msgid "Child Field" -msgstr "" - -#. module: base -#: model:res.partner.title,name:base.res_partner_title_sir -msgid "Sir" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "https://translations.launchpad.net/openobject" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Portugese / português" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3 or later version" -msgstr "" - -#. module: base -#: field:ir.actions.actions,usage:0 -#: field:ir.actions.report.custom,usage:0 -#: field:ir.actions.report.xml,usage:0 -#: field:ir.actions.server,usage:0 -#: field:ir.actions.act_window,usage:0 -msgid "Action Usage" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_HOME" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Enter at least one field !" -msgstr "" - -#. module: base -#: field:ir.actions.server,child_ids:0 -msgid "Others Actions" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_server_action_create -msgid "Create Action" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_workitem -msgid "workflow.workitem" -msgstr "" - -#. module: base -#: field:ir.ui.view_sc,name:0 -msgid "Shortcut Name" -msgstr "" - -#. module: base -#: selection:ir.module.module,state:0 -msgid "Not Installable" -msgstr "" - -#. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "" - -#. module: base -#: field:res.partner.address,mobile:0 -msgid "Mobile" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Problem in configuration `Record Id` in Server Action!" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "html" -msgstr "" - -#. module: base -#: field:ir.report.custom,repeat_header:0 -msgid "Repeat Header" -msgstr "" - -#. module: base -#: field:res.lang,time_format:0 -msgid "Time Format" -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Your system will be upgraded." -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_user_form -#: view:res.users:0 -msgid "Configure User" -msgstr "" - -#. module: base -#: help:res.country,name:0 -msgid "The full name of the country." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUMP_TO" -msgstr "" - -#. module: base -#: field:ir.ui.menu,child_id:0 -msgid "Child ids" -msgstr "" - -#. module: base -#: field:ir.actions.todo,end_date:0 -msgid "End Date" -msgstr "" - -#. module: base -#: field:ir.exports,resource:0 -#: field:ir.property,res_id:0 -msgid "Resource" -msgstr "" - -#. module: base -#: field:ir.actions.server,email:0 -msgid "Email Address" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-tools" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Iteration" -msgstr "" - -#. module: base -#: view:ir.actions.report.xml:0 -msgid "Report xml" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_module_open_categ -#: model:ir.actions.act_window,name:base.open_module_tree -#: field:wizard.module.lang.export,modules:0 -#: model:ir.ui.menu,name:base.menu_module_tree -#: view:ir.module.module:0 -msgid "Modules" -msgstr "" - -#. module: base -#: selection:workflow.activity,kind:0 -#: field:workflow.activity,subflow_id:0 -#: field:workflow.workitem,subflow_id:0 -msgid "Subflow" -msgstr "" - -#. module: base -#: help:res.partner,vat:0 -msgid "Value Added Tax number" -msgstr "" - -#. module: base -#: field:maintenance.contract,name:0 -#: field:maintenance.contract.wizard,name:0 -msgid "Contract ID" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Values" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DIALOG_INFO" -msgstr "" - -#. module: base -#: field:workflow.transition,signal:0 -msgid "Signal (button Name)" -msgstr "" - -#. module: base -#: field:res.company,logo:0 -msgid "Logo" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_res_bank_form -#: field:res.partner,bank_ids:0 -#: model:ir.ui.menu,name:base.menu_action_res_bank_form -#: view:res.bank:0 -msgid "Banks" -msgstr "" - -#. module: base -#: field:ir.cron,numbercall:0 -msgid "Number of calls" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-sale" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mappings" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%d - Day of the month as a decimal number [01,31]." -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Romanian / limba română" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ADD" -msgstr "" - -#. module: base -#: view:ir.model.fields:0 -#: view:ir.model:0 -msgid "Security on Groups" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "center" -msgstr "" - -#. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 -#, python-format -msgid "Can not create the module file: %s !" -msgstr "" - -#. module: base -#: field:ir.server.object.lines,server_id:0 -msgid "Object Mapping" -msgstr "" - -#. module: base -#: field:ir.module.module,published_version:0 -msgid "Published Version" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,auto_refresh:0 -msgid "Auto-Refresh" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_country_state -#: field:maintenance.contract.wizard,state:0 -#: model:ir.ui.menu,name:base.menu_country_state_partner -msgid "States" -msgstr "" - -#. module: base -#: field:res.currency.rate,rate:0 -msgid "Rate" -msgstr "" - -#. module: base -#: field:res.request,ref_doc1:0 -msgid "Document Ref 1" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Create / Write" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_exports_line -msgid "ir.exports.line" -msgstr "" - -#. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" -msgstr "" - -#. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -msgid "Object:" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_country_state -msgid "Country state" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form_all -#: model:ir.ui.menu,name:base.menu_ir_property_form_all -msgid "All Properties" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "left" -msgstr "" - -#. module: base -#: field:ir.module.module,category_id:0 -msgid "Category" -msgstr "" - -#. module: base -#: view:res.request:0 -#: view:ir.model:0 -msgid "Status" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_window -#: model:ir.ui.menu,name:base.menu_ir_action_window -msgid "Window Actions" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_act_window_close -msgid "ir.actions.act_window_close" -msgstr "" - -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Service" -msgstr "" - -#. module: base -#: help:ir.actions.act_window,auto_refresh:0 -msgid "Add an auto-refresh on the view" -msgstr "" - -#. module: base -#: field:ir.attachment,datas_fname:0 -#: field:wizard.module.lang.export,name:0 -msgid "Filename" -msgstr "" - -#. module: base -#: field:ir.model,access_ids:0 -msgid "Access" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GO_DOWN" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" -msgstr "" - -#. module: base -#: selection:ir.cron,interval_type:0 -msgid "Weeks" -msgstr "" - -#. module: base -#: field:res.groups,name:0 -msgid "Group Name" -msgstr "" - -#. module: base -#: wizard_field:module.upgrade,next,module_download:0 -#: wizard_view:module.upgrade,next:0 -msgid "Modules to download" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "6. %d, %m ==> 05, 12" -msgstr "" - -#. module: base -#: field:res.bank,fax:0 -#: field:res.partner.address,fax:0 -msgid "Fax" -msgstr "" - -#. module: base -#: help:ir.actions.server,mobile:0 -msgid "provides the fiels that will refer to the tiny to fetch the mobile number, i.e. you select the invoice, then `object.invoice_address_id.mobile` is the field which give the correct mobile number" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_workflow_workitem_form -#: model:ir.ui.menu,name:base.menu_workflow_workitem -msgid "Workitems" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PRINT_PREVIEW" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The perm_read method is not implemented on this object !" -msgstr "" - -#. module: base -#: help:ir.actions.server,wkf_model_id:0 -msgid "Workflow to be execute on which model" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Field Mapping" -msgstr "" - -#. module: base -#: field:res.request,create_date:0 -msgid "Created date" -msgstr "" - -#. module: base -#: field:res.bank,bic:0 -msgid "BIC/Swift code" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_sequence -msgid "ir.sequence" -msgstr "" - -#. module: base -#: field:res.users,menu_id:0 -msgid "Menu Action" -msgstr "" - -#. module: base -#: selection:ir.module.module.dependency,state:0 -#: selection:ir.module.module,state:0 -msgid "Not Installed" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Lithuanian / Lietuvių kalba" -msgstr "" - -#. module: base -#: field:res.partner.event,canal_id:0 -#: view:res.partner.canal:0 -msgid "Channel" -msgstr "" - -#. module: base -#: field:ir.ui.menu,icon:0 -msgid "Icon" -msgstr "" - -#. module: base -#: help:ir.actions.server,subject:0 -msgid "Specify the subject, you can use the fields from the object. like `Hello [[ object.partner_id.name ]]`" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_maintenance_contract_add -#: view:maintenance.contract.wizard:0 -msgid "Add Maintenance Contract" -msgstr "" - -#. module: base -#: wizard_button:module.lang.import,init,finish:0 -#: wizard_button:module.lang.install,start,end:0 -#: wizard_button:module.module.update,update,open_window:0 -msgid "Ok" -msgstr "" - -#. module: base -#: field:ir.cron,doall:0 -msgid "Repeat missed" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Couldn't find tag '%s' in parent view !" -msgstr "" - -#. module: base -#: field:ir.ui.view,inherit_id:0 -msgid "Inherited View" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_translation -msgid "ir.translation" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%p - Equivalent of either AM or PM." -msgstr "" - -#. module: base -#: field:ir.actions.act_window,limit:0 -#: field:ir.report.custom,limitt:0 -msgid "Limit" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Actions" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_request-act -#: model:ir.ui.menu,name:base.menu_res_request_act -#: model:ir.ui.menu,name:base.next_id_12 -#: view:res.request:0 -msgid "Requests" -msgstr "" - -#. module: base -#: selection:workflow.activity,split_mode:0 -msgid "Or" -msgstr "" - -#. module: base -#: field:ir.actions.todo,note:0 -msgid "Text" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_7 -msgid "Openstuff.net" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - -#. module: base -#: field:res.roles,child_id:0 -msgid "Childs" -msgstr "" - -#. module: base -#: field:maintenance.contract,date_stop:0 -msgid "Ending Date" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Selection" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_export -msgid "Import / Export" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Week of the year: %(woy)s" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_install -#: model:ir.ui.menu,name:base.menu_module_tree_install -msgid "Installed modules" -msgstr "" - -#. module: base -#: code:addons/base/res/partner/partner.py:0 -#, python-format -msgid "Warning" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ABOUT" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify an action to launch !" -msgstr "" - -#. module: base -#: field:ir.rule,operator:0 -msgid "Operator" -msgstr "" - -#. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export language" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "ValidateError" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_OPEN" -msgstr "" - -#. module: base -#: field:ir.actions.server,action_id:0 -#: selection:ir.actions.server,state:0 -msgid "Client Action" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "right" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_PREVIOUS" -msgstr "" - -#. module: base -#: wizard_button:base.module.import,init,import:0 -#: model:ir.actions.wizard,name:base.wizard_base_module_import -#: model:ir.ui.menu,name:base.menu_wizard_module_import -msgid "Import module" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Czech / Čeština" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "1. %c ==> Fri Dec 5 18:25:20 2008" -msgstr "" - -#. module: base -#: field:ir.actions.server,loop_action:0 -msgid "Loop Action" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_maintenance_contract -#: view:maintenance.contract:0 -msgid "Maintenance Contract" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - -#. module: base -#: field:res.lang,grouping:0 -msgid "Separator Format" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_report_custom -#: view:ir.report.custom:0 -msgid "Custom Report" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Day of the week (0:Monday): %(weekday)s" -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Email" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Resynchronise Terms" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_create:0 -msgid "Create Access" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_other_form -#: model:ir.ui.menu,name:base.menu_partner_other_form -msgid "Others Partners" -msgstr "" - -#. module: base -#: field:ir.model.data,noupdate:0 -msgid "Non Updatable" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Connect Events to Actions" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Can not upgrade module '%s'. It is not installed." -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not implemented set_memory method !" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window,target:0 -msgid "Current Window" -msgstr "" - -#. module: base -#: view:ir.values:0 -msgid "Action Source" -msgstr "" - -#. module: base -#: selection:ir.values,key2:0 -msgid "/" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%y - Year without century as a decimal number [00,99]." -msgstr "" - -#. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_NETWORK" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_model_fields -#: model:ir.model,name:base.model_ir_model_fields -#: field:ir.model,field_id:0 -#: field:ir.property,fields_id:0 -#: field:ir.report.custom,fields_child0:0 -#: model:ir.ui.menu,name:base.ir_model_model_fields -#: view:ir.model.fields:0 -#: view:ir.model:0 -msgid "Fields" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_base_config -#: model:ir.ui.menu,name:base.menu_config -#: view:ir.sequence:0 -#: view:res.company:0 -msgid "Configuration" -msgstr "" - -#. module: base -#: field:maintenance.contract,date_start:0 -msgid "Starting Date" -msgstr "" - -#. module: base -#: field:ir.model.fields,ttype:0 -#: view:ir.model:0 -msgid "Field Type" -msgstr "" - -#. module: base -#: field:ir.model.fields,complete_name:0 -#: field:ir.ui.menu,complete_name:0 -msgid "Complete Name" -msgstr "" - -#. module: base -#: field:res.country.state,code:0 -msgid "State Code" -msgstr "" - -#. module: base -#: field:ir.model.fields,on_delete:0 -msgid "On delete" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "Reply" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Year with century: %(year)s" -msgstr "" - -#. module: base -#: view:maintenance.contract.wizard:0 -msgid "_Cancel" -msgstr "" - -#. module: base -#: view:ir.report.custom:0 -msgid "Subscribe Report" -msgstr "" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Left-to-Right" -msgstr "" - -#. module: base -#: field:ir.values,object:0 -msgid "Is Object" -msgstr "" - -#. module: base -#: field:res.lang,translatable:0 -msgid "Translatable" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Daily" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "3. %x ,%X ==> 12/05/08, 18:25:20" -msgstr "" - -#. module: base -#: selection:ir.model.fields,on_delete:0 -msgid "Cascade" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Field %d should be a figure" -msgstr "" - -#. module: base -#: field:res.partner.category,name:0 -msgid "Category Name" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Gantt" -msgstr "" - -#. module: base -#: code:osv/fields.py:0 -#, python-format -msgid "Not Implemented" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_5 -msgid "Gold Partner" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_15 -msgid "IT sector" -msgstr "" - -#. module: base -#: view:ir.property:0 -msgid "Property" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank_type -#: view:res.partner.bank.type:0 -msgid "Bank Account Type" -msgstr "" - -#. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Next Configuration Step" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-project" -msgstr "" - -#. module: base -#: field:res.groups,comment:0 -msgid "Comment" -msgstr "" - -#. module: base -#: field:ir.model.fields,domain:0 -#: field:ir.rule,domain:0 -#: field:res.partner.title,domain:0 -msgid "Domain" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_PREFERENCES" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%c - Appropriate date and time representation." -msgstr "" - -#. module: base -#: field:ir.module.module,shortdesc:0 -msgid "Short description" -msgstr "" - -#. module: base -#: help:ir.actions.server,trigger_obj_id:0 -msgid "select the object from the model on which the workflow will execute" -msgstr "" - -#. module: base -#: help:ir.actions.report.xml,attachment:0 -msgid "This is the prefix of the file name the print will be saved as attachement. Keep empty to not save the printed reports" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%X - Appropriate time representation." -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Iteration Action Configuration" -msgstr "" - -#. module: base -#: field:res.country.state,name:0 -msgid "State Name" -msgstr "" - -#. module: base -#: view:res.company:0 -msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "" - -#. module: base -#: help:res.lang,grouping:0 -msgid "The Separator Format should be like [,n] where 0 < n :starting from Unit digit.-1 will end the separation. e.g. [3,2,-1] will represent 106500 to be 1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as 106,500. Provided ',' as the thousand separator in each case." -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Error occured while validating the field(s) %s: %s" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DELETE" -msgstr "" - -#. module: base -#: field:res.partner.event,planned_cost:0 -msgid "Planned Cost" -msgstr "" - -#. module: base -#: field:workflow.activity,join_mode:0 -msgid "Join Mode" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a5" -msgstr "" - -#. module: base -#: wizard_field:res.partner.spam_send,init,text:0 -#: field:ir.actions.server,message:0 -msgid "Message" -msgstr "" - -#. module: base -#: help:ir.actions.server,trigger_name:0 -msgid "Select the Signal name that is to be " -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_xml -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.xml" -msgstr "" - -#. module: base -#: view:wizard.module.lang.export:0 -msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Please note that you will have to logout and relog if you change your password." -msgstr "" - -#. module: base -#: field:res.partner,address:0 -#: view:res.partner.address:0 -msgid "Contacts" -msgstr "" - -#. module: base -#: selection:ir.actions.act_window.view,view_mode:0 -#: selection:ir.ui.view,type:0 -#: selection:wizard.ir.model.menu.create.line,view_type:0 -msgid "Graph" -msgstr "" - -#. module: base -#: field:ir.module.module,installed_version:0 -msgid "Latest version" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_actions_server -msgid "ir.actions.server" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_17 -msgid "HR sector" -msgstr "" - -#. module: base -#: wizard_button:module.lang.install,init,start:0 -msgid "Start installation" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "closed" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_module_module_dependency -msgid "Module dependency" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%w - Weekday as a decimal number [0(Sunday),6]." -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_upgrade -#: model:ir.ui.menu,name:base.menu_wizard_upgrade -msgid "Apply Scheduled Upgrades" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DND_MULTIPLE" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.maintenance -msgid "Maintenance" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_2 -msgid "OpenERP Partners" -msgstr "" - -#. module: base -#: view:res.config.view:0 -msgid "Choose Your Mode" -msgstr "" - -#. module: base -#: view:ir.actions.report.custom:0 -msgid "Report custom" -msgstr "" - -#. module: base -#: field:workflow.activity,action_id:0 -#: view:ir.actions.server:0 -msgid "Server Action" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3" -msgstr "" - -#. module: base -#: field:ir.actions.act_window_close,name:0 -#: field:ir.actions.actions,name:0 -#: field:ir.actions.server,name:0 -#: field:ir.actions.url,name:0 -#: field:ir.actions.act_window,name:0 -msgid "Action Name" -msgstr "" - -#. module: base -#: field:ir.actions.configuration.wizard,progress:0 -msgid "Configuration Progress" -msgstr "" - -#. module: base -#: field:res.company,rml_footer2:0 -msgid "Report Footer 2" -msgstr "" - -#. module: base -#: field:res.bank,email:0 -#: field:res.partner.address,email:0 -msgid "E-Mail" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "module,type,name,res_id,src,value" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_groups -msgid "res.groups" -msgstr "" - -#. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_localisation -msgid "Localisation" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" -msgstr "" - -#. module: base -#: field:ir.module.module,dependencies_id:0 -#: view:ir.module.module:0 -msgid "Dependencies" -msgstr "" - -#. module: base -#: field:ir.cron,user_id:0 -#: field:ir.ui.view.custom,user_id:0 -#: field:ir.values,user_id:0 -#: field:res.partner.event,user_id:0 -#: view:res.users:0 -msgid "User" -msgstr "" - -#. module: base -#: field:res.partner,parent_id:0 -msgid "Main Company" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_property_form -#: model:ir.ui.menu,name:base.menu_ir_property_form -msgid "Default properties" -msgstr "" - -#. module: base -#: field:res.request.history,date_sent:0 -msgid "Date sent" -msgstr "" - -#. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_import -#: model:ir.ui.menu,name:base.menu_wizard_lang_import -msgid "Import a Translation File" -msgstr "" - -#. module: base -#: help:ir.values,model_id:0 -msgid "This field is not used, it only helps you to select a good model." -msgstr "" - -#. module: base -#: field:workflow.activity,in_transitions:0 -#: view:workflow.activity:0 -msgid "Incoming transitions" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_title_partner -#: model:ir.ui.menu,name:base.menu_partner_title_partner -#: view:res.partner.title:0 -msgid "Partners Titles" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "Simple domain setup" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_translation_untrans -#: model:ir.ui.menu,name:base.menu_action_translation_untrans -msgid "Untranslated terms" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "If you use a formula type, use a python expression using the variable 'object'." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Italian / Italiano" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_wizard_ir_model_menu_create -msgid "wizard.ir.model.menu.create" -msgstr "" - -#. module: base -#: view:workflow.transition:0 -msgid "Transition" -msgstr "" - -#. module: base -#: field:res.partner,vat:0 -msgid "VAT" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_translation_app -msgid "Application Terms" -msgstr "" - -#. module: base -#: field:res.partner.address,birthdate:0 -msgid "Birthdate" -msgstr "" - -#. module: base -#: field:ir.module.repository,filter:0 -msgid "Filter" -msgstr "" - -#. module: base -#: field:res.groups,menu_access:0 -msgid "Access Menu" -msgstr "" - -#. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Object" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_som -msgid "res.partner.som" -msgstr "" - -#. module: base -#: field:ir.actions.server,mobile:0 -msgid "Mobile No" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#: code:addons/base/module/module.py:0 -#: code:report/custom.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_workflow_activity -msgid "workflow.activity" -msgstr "" - -#. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" -msgstr "" - -#. module: base -#: selection:res.request,state:0 -msgid "active" -msgstr "" - -#. module: base -#: selection:server.action.create,init,type:0 -msgid "Open Report" -msgstr "" - -#. module: base -#: field:res.currency,rounding:0 -msgid "Rounding factor" -msgstr "" - -#. module: base -#: selection:ir.translation,type:0 -msgid "Wizard Field" -msgstr "" - -#. module: base -#: view:ir.model:0 -msgid "Create a Menu" -msgstr "" - -#. module: base -#: view:ir.cron:0 -msgid "Action to trigger" -msgstr "" - -#. module: base -#: field:ir.model.fields,select_level:0 -msgid "Searchable" -msgstr "" - -#. module: base -#: view:res.partner.event:0 -msgid "Document Link" -msgstr "" - -#. module: base -#: view:res.partner.som:0 -msgid "Partner State of Mind" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_bank -msgid "Bank Accounts" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_title -msgid "res.partner.title" -msgstr "" - -#. module: base -#: view:res.company:0 -#: view:res.partner:0 -msgid "General Information" -msgstr "" - -#. module: base -#: field:ir.sequence,prefix:0 -msgid "Prefix" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_DISCONNECT" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "German / Deutsch" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_company -msgid "res.company" -msgstr "" - -#. module: base -#: field:ir.actions.server,fields_lines:0 -#: view:ir.actions.server:0 -msgid "Fields Mapping" -msgstr "" - -#. module: base -#: wizard_button:base.module.import,import,open_window:0 -#: wizard_button:server.action.create,step_1,end:0 -#: wizard_button:server.action.create,init,end:0 -#: wizard_button:module.upgrade,start,end:0 -#: wizard_button:module.upgrade,end,end:0 -#: view:wizard.module.lang.export:0 -msgid "Close" -msgstr "" - -#. module: base -#: field:ir.sequence,name:0 -#: field:ir.sequence.type,name:0 -msgid "Sequence Name" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_request_history -msgid "res.request.history" -msgstr "" - -#. module: base -#: constraint:res.partner:0 -msgid "The VAT doesn't seem to be correct." -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Hour 00->12: %(h12)s" -msgstr "" - -#. module: base -#: field:res.currency,rate:0 -msgid "Current rate" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_config_simple_view_form -msgid "Configure Simple View" -msgstr "" - -#. module: base -#: wizard_button:module.upgrade,next,start:0 -msgid "Start Upgrade" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "French / Français" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_13 -msgid "Important customers" -msgstr "" - -#. module: base -#: field:res.partner.som,factor:0 -msgid "Factor" -msgstr "" - -#. module: base -#: field:res.partner,category_id:0 -#: view:res.partner:0 -msgid "Categories" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Sum" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 -#: model:ir.model,name:base.model_ir_module_module -#: field:ir.model.data,module:0 -#: field:ir.module.module.dependency,module_id:0 -#: view:ir.module.module:0 -msgid "Module" -msgstr "" - -#. module: base -#: field:workflow.instance,res_type:0 -#: field:workflow,osv:0 -msgid "Resource Object" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "sxw" -msgstr "" - -#. module: base -#: selection:ir.actions.url,target:0 -msgid "This Window" -msgstr "" - -#. module: base -#: field:res.payterm,name:0 -msgid "Payment term (short name)" -msgstr "" - -#. module: base -#: field:ir.cron,function:0 -#: field:res.partner.address,function:0 -#: selection:workflow.activity,kind:0 -msgid "Function" -msgstr "" - -#. module: base -#: constraint:res.company:0 -msgid "Error! You can not create recursive companies." -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify the Partner Email address !" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_config_view -msgid "res.config.view" -msgstr "" - -#. module: base -#: field:ir.attachment,description:0 -#: field:ir.module.module,description:0 -#: field:res.partner.bank,name:0 -#: field:res.partner.event,description:0 -#: view:res.partner.event:0 -#: view:res.request:0 -msgid "Description" -msgstr "" - -#. module: base -#: field:res.partner.bank,owner_name:0 -msgid "Account owner" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_INDENT" -msgstr "" - -#. module: base -#: view:res.request.history:0 -msgid "Request History" -msgstr "" - -#. module: base -#: field:ir.exports.line,name:0 -#: field:res.partner.bank.type.field,name:0 -msgid "Field name" -msgstr "" - -#. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_attachment -msgid "ir.attachment" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The value \"%s\" for the field \"%s\" is not in the selection" -msgstr "" - -#. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" -msgstr "" - -#. module: base -#: field:ir.attachment,preview:0 -msgid "Image Preview" -msgstr "" - -#. module: base -#: view:workflow.workitem:0 -msgid "Workflow Workitems" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "8. %I:%M:%S %p ==> 06:25:20 PM" -msgstr "" - -#. module: base -#: wizard_field:res.partner.sms_send,init,password:0 -#: field:ir.model.config,password:0 -#: field:maintenance.contract,password:0 -#: field:maintenance.contract.wizard,password:0 -#: field:res.users,password:0 -msgid "Password" -msgstr "" - -#. module: base -#: view:res.roles:0 -msgid "Role" -msgstr "" - -#. module: base -#: selection:res.lang,direction:0 -msgid "Right-to-Left" -msgstr "" - -#. module: base -#: field:res.partner,customer:0 -#: selection:res.partner.event,partner_type:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "" - -#. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Unvalidated" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,name:0 -#: field:ir.report.custom,name:0 -msgid "Report Name" -msgstr "" - -#. module: base -#: view:workflow.instance:0 -msgid "Workflow Instances" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.next_id_9 -msgid "Database Structure" -msgstr "" - -#. module: base -#: wizard_view:res.partner.spam_send,init:0 -#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard -msgid "Mass Mailing" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "You can also import .po files." -msgstr "" - -#. module: base -#: wizard_view:base.module.import,import:0 -msgid "Module successfully imported !" -msgstr "" - -#. module: base -#: field:res.partner.event,partner_type:0 -msgid "Partner Relation" -msgstr "" - -#. module: base -#: field:ir.actions.act_window,context:0 -msgid "Context Value" -msgstr "" - -#. module: base -#: view:ir.report.custom:0 -msgid "Unsubscribe Report" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Hour 00->24: %(h24)s" -msgstr "" - -#. module: base -#: constraint:res.partner.category:0 -msgid "Error ! You can not create recursive categories." -msgstr "" - -#. module: base -#: selection:ir.actions.server,state:0 -msgid "Create Object" -msgstr "" - -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a4" -msgstr "" - -#. module: base -#: help:ir.actions.server,loop_action:0 -msgid "select the action, which will be executes. Loop action will not be avaliable inside loop" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form_new -#: model:ir.ui.menu,name:base.menu_partner_customer_form_new -msgid "New Partner" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Installation done" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_JUSTIFY_RIGHT" -msgstr "" - -#. module: base -#: model:res.partner.category,name:base.res_partner_category_1 -msgid "Prospect" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_function -msgid "Function of the contact" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_upgrade -#: model:ir.ui.menu,name:base.menu_module_tree_upgrade -msgid "Modules to be installed, upgraded or removed" -msgstr "" - -#. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_partner_address_form -msgid "Addresses" -msgstr "" - -#. module: base -#: field:ir.actions.todo,sequence:0 -#: field:ir.actions.server,sequence:0 -#: field:ir.actions.act_window.view,sequence:0 -#: field:ir.module.repository,sequence:0 -#: field:ir.report.custom.fields,sequence:0 -#: field:ir.ui.menu,sequence:0 -#: field:ir.ui.view_sc,sequence:0 -#: field:res.partner.bank,sequence:0 -#: field:wizard.ir.model.menu.create.line,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "11. %U or %W ==> 48 (49th week)" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import language" -msgstr "" - -#. module: base -#: help:res.partner.address,type:0 -msgid "Used to select automatically the right address according to the context in sales and purchases documents." -msgstr "" - -#. module: base -#: help:ir.cron,numbercall:0 -msgid "Number of time the function is called,\n" -"a negative number indicates that the function will always be called" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Chinese (CN) / 简体中文" -msgstr "" - -#. module: base -#: field:ir.report.custom,footer:0 -msgid "Report Footer" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_MEDIA_NEXT" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REDO" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Choose a language to install:" -msgstr "" - -#. module: base -#: view:res.partner.event:0 -msgid "General Description" -msgstr "" - -#. module: base -#: view:ir.module.module:0 -msgid "Cancel Install" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "Please check that all your lines have %d columns." -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Russian / русский язык" -msgstr "" - -#. module: base -#: field:ir.model.data,name:0 -msgid "XML Identifier" -msgstr "" - diff --git a/bin/addons/base/ir/ir_model.py b/bin/addons/base/ir/ir_model.py index 8120e4e3bd4..42fa46739cf 100644 --- a/bin/addons/base/ir/ir_model.py +++ b/bin/addons/base/ir/ir_model.py @@ -545,8 +545,9 @@ class ir_model_data(osv.osv): def _process_end(self, cr, uid, modules): if not modules: return True - module_str = ["'%s'" % m for m in modules] - cr.execute('select id,name,model,res_id,module from ir_model_data where module in ('+','.join(module_str)+') and not noupdate') + modules = list(modules) + module_in = "%s" * len(modules) + cr.execute('select id,name,model,res_id,module from ir_model_data where module in (' + module_in + ') and noupdate=%s', modules + [False]) wkf_todo = [] for (id, name, model, res_id,module) in cr.fetchall(): if (module,name) not in self.loads: diff --git a/bin/addons/base/module/report/ir_module_reference.rml b/bin/addons/base/module/report/ir_module_reference.rml index b19d0ddeed9..9cb301e89a1 100644 --- a/bin/addons/base/module/report/ir_module_reference.rml +++ b/bin/addons/base/module/report/ir_module_reference.rml @@ -3,16 +3,17 @@ From 48ed0999d7216799b01392c3cce002ff4f1498c0 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Tue, 30 Dec 2008 19:04:30 +0530 Subject: [PATCH 11/82] Minor edit on ir.model bzr revid: jvo@tinyerp.com-20081230133430-ui83kmlswmgm192j --- bin/addons/base/ir/ir_model.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/addons/base/ir/ir_model.py b/bin/addons/base/ir/ir_model.py index 8120e4e3bd4..1f4aed1d3d5 100644 --- a/bin/addons/base/ir/ir_model.py +++ b/bin/addons/base/ir/ir_model.py @@ -111,6 +111,10 @@ class ir_model_grid(osv.osv): result = super(osv.osv, self).read(cr, uid, ids, fields, context, load) allgr = self.pool.get('res.groups').search(cr, uid, [], context=context) acc_obj = self.pool.get('ir.model.access') + + if not isinstance(result,list): + result=[result] + for res in result: rules = acc_obj.search(cr, uid, [('model_id', '=', res['id'])]) rules_br = acc_obj.browse(cr, uid, rules, context=context) From 98574dde32299c8fbb506125ee3331d91b600012 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Tue, 30 Dec 2008 19:16:52 +0530 Subject: [PATCH 12/82] Added __terp__.py test on base_module_quality,bugfixed base_vat bzr revid: jvo@tinyerp.com-20081230134652-m5fjzebjmt3x7zfr --- addons/base_module_quality/base_module_quality.py | 3 +++ addons/base_module_quality/pylint_test/pylint_test.py | 2 +- addons/base_module_quality/speed_test/speed_test.py | 4 ++-- addons/base_vat/__terp__.py | 2 +- addons/base_vat/base_vat_data.xml | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/addons/base_module_quality/base_module_quality.py b/addons/base_module_quality/base_module_quality.py index fa83381c397..30b40de1a87 100644 --- a/addons/base_module_quality/base_module_quality.py +++ b/addons/base_module_quality/base_module_quality.py @@ -136,6 +136,9 @@ class abstract_quality_check(object): detail += ('\n|-\n| %s \n| %s \n| %s \n| %s \n| %s \n| %s ') % (data[0], data[1], data[2], data[3], data[4], data[5]) res_format['detail'] = detail + '\n|}\n' res_format['summary'] = data_list[0] + elif test=='terp': + res_format['summary'] = data_list[0] + res_format['detail'] = data_list[1] return res_format def add_quatation(self, x, y): diff --git a/addons/base_module_quality/pylint_test/pylint_test.py b/addons/base_module_quality/pylint_test/pylint_test.py index 2620fa3e9cc..c25b884d8e9 100644 --- a/addons/base_module_quality/pylint_test/pylint_test.py +++ b/addons/base_module_quality/pylint_test/pylint_test.py @@ -81,7 +81,7 @@ class quality_test(base_module_quality.abstract_quality_check): summary =""" ===Pylint Test===: -This test checks if the module satisfy the current coding standard used by OpenERP. +This test checks if the module satisfies the current coding standard used by OpenERP. """ #+ "Score: " + str(self.score) + "/10\n" else: diff --git a/addons/base_module_quality/speed_test/speed_test.py b/addons/base_module_quality/speed_test/speed_test.py index 4e6fb43a2b1..7db0d572624 100644 --- a/addons/base_module_quality/speed_test/speed_test.py +++ b/addons/base_module_quality/speed_test/speed_test.py @@ -64,8 +64,8 @@ class quality_test(base_module_quality.abstract_quality_check): if size: c1 = cr.count - pool.get(obj).read(cr, uid, ids[0]) - pool.get(obj).read(cr, uid, ids[0]) + pool.get(obj).read(cr, uid, [ids[0]]) + pool.get(obj).read(cr, uid, [ids[0]]) code_base_complexity = cr.count - c1 pool.get(obj).read(cr, uid, ids[:size/2]) diff --git a/addons/base_vat/__terp__.py b/addons/base_vat/__terp__.py index dd252ecd01d..5da21631075 100644 --- a/addons/base_vat/__terp__.py +++ b/addons/base_vat/__terp__.py @@ -25,7 +25,7 @@ "version" : "1.0", "author" : "Tiny", "category" : "Generic Modules/Base", - "depends" : ["base"], + "depends" : ["base","account"], "update_xml" : ["base_vat_data.xml"], "active": False, "installable": True diff --git a/addons/base_vat/base_vat_data.xml b/addons/base_vat/base_vat_data.xml index 9d900c4adaf..7f426a313ac 100644 --- a/addons/base_vat/base_vat_data.xml +++ b/addons/base_vat/base_vat_data.xml @@ -5,7 +5,7 @@ res.partner.vat.inherit res.partner - + From 6037a8c0bd7fa49154f09faa67b443264c43267c Mon Sep 17 00:00:00 2001 From: "Harry (Open ERP)" Date: Tue, 30 Dec 2008 19:26:38 +0530 Subject: [PATCH 13/82] fixed small bug in DMS bzr revid: hmo@tinyerp.com-20081230135638-heoy1723boagq3nq --- addons/document/document.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/addons/document/document.py b/addons/document/document.py index 75cbdeb2797..3d0b0176dce 100644 --- a/addons/document/document.py +++ b/addons/document/document.py @@ -583,6 +583,9 @@ class document_file(osv.osv): default.update({'name': name+ " (copy)"}) return super(document_file,self).copy(cr,uid,id,default,context) def write(self, cr, uid, ids, vals, context=None): + res=self.search(cr,uid,[('id','in',ids)]) + if not len(res): + return False if not self._check_duplication(cr,uid,vals,ids,'write'): raise except_orm('ValidateError', 'File name must be unique!') result = super(document_file,self).write(cr,uid,ids,vals,context=context) From d4c62ae2d61080008c58b32d9f03777ee5bb29a6 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 30 Dec 2008 15:17:33 +0100 Subject: [PATCH 14/82] [FIX] fix in xml parsing in translations bzr revid: christophe@cobalt-20081230141733-pkseljymenq56256 --- bin/tools/translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 16e583f4812..c4465b626ef 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -354,7 +354,7 @@ def trans_generate(lang, modules, dbname=None): continue obj = pool.get(model).browse(cr, uid, res_id) if model=='ir.ui.view': - d = xml.dom.minidom.parseString(obj.arch) + d = xml.dom.minidom.parseString(encode(obj.arch)) for t in trans_parse_view(d.documentElement): push_translation(module, 'view', encode(obj.model), 0, t) elif model=='ir.actions.wizard': From 2a37233f9253e14fa30faac0035602b858745664 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 30 Dec 2008 15:17:53 +0100 Subject: [PATCH 15/82] [IMP] update pot files bzr revid: christophe@cobalt-20081230141753-yzk13xnccdll4j02 --- bin/addons/base/i18n/base.pot | 235 +++++++++++++++++++--------------- 1 file changed, 132 insertions(+), 103 deletions(-) diff --git a/bin/addons/base/i18n/base.pot b/bin/addons/base/i18n/base.pot index d1196a1e9ec..82f816dbee5 100644 --- a/bin/addons/base/i18n/base.pot +++ b/bin/addons/base/i18n/base.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -295,6 +300,12 @@ msgstr "" msgid "Normal" msgstr "" +#. module: base +#: field:workflow.activity,in_transitions:0 +#: view:workflow.activity:0 +msgid "Incoming transitions" +msgstr "" + #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." @@ -458,8 +469,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -728,9 +739,9 @@ msgid "ir.ui.menu" msgstr "" #. module: base -#: code:osv/orm.py:0 +#: code:addons/base/ir/ir_model.py:0 #, python-format -msgid "ConcurrencyException" +msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" msgstr "" #. module: base @@ -753,11 +764,6 @@ msgstr "" msgid "EAN13" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Roles are used to defined available actions, provided by workflows." -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: model:ir.ui.menu,name:base.menu_module_repository_tree @@ -942,6 +948,11 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" @@ -1104,8 +1115,8 @@ msgid "The selected language has been successfully installed. You must change th msgstr "" #. module: base -#: view:res.lang:0 -msgid "%B - Full month name." +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." msgstr "" #. module: base @@ -1178,8 +1189,8 @@ msgid "Partner contacts" msgstr "" #. module: base -#: field:res.users,address_id:0 -msgid "Address" +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" msgstr "" #. module: base @@ -1256,9 +1267,8 @@ msgid "Low Level Objects" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "The create method is not implemented on this object !" +#: field:res.partner.event,planned_cost:0 +msgid "Planned Cost" msgstr "" #. module: base @@ -1801,8 +1811,8 @@ msgid "Print format" msgstr "" #. module: base -#: selection:res.config.view,view:0 -msgid "Simplified Interface" +#: field:res.users,address_id:0 +msgid "Address" msgstr "" #. module: base @@ -1837,11 +1847,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1927,12 +1932,6 @@ msgstr "" msgid "Draft" msgstr "" -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "Can not create the module file:\n %s" -msgstr "" - #. module: base #: field:ir.report.custom.fields,field_child1:0 msgid "field child1" @@ -2130,6 +2129,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2189,11 +2193,6 @@ msgstr "" msgid "Module Repository" msgstr "" -#. module: base -#: view:ir.actions.server:0 -msgid "Trigger Configuration" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNINDENT" @@ -2412,8 +2411,8 @@ msgid "STOCK_GO_BACK" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 +#: code:addons/base/ir/ir_model.py:0 #, python-format msgid "AccessError" msgstr "" @@ -2486,6 +2485,11 @@ msgstr "" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2647,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2724,7 +2722,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,8 +2863,8 @@ msgid "Childs Field" msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" msgstr "" #. module: base @@ -2930,6 +2927,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3000,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3160,11 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3240,6 @@ msgstr "" msgid "Group by" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_by_category -#: model:ir.actions.act_window,name:base.action_partner_category_form -#: model:ir.model,name:base.model_res_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_form -#: view:res.partner.category:0 -msgid "Partner Categories" -msgstr "" - #. module: base #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3297,9 +3300,9 @@ msgid "STOCK_STOP" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" +msgid "ConcurrencyException" msgstr "" #. module: base @@ -3444,8 +3447,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3533,11 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: view:res.partner.event:0 +msgid "Document Link" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3816,6 +3830,12 @@ msgstr "" msgid "Tree can only be used in tabular reports" msgstr "" +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Can not create the module file:\n %s" +msgstr "" + #. module: base #: selection:ir.actions.act_window,view_type:0 #: selection:ir.actions.act_window.view,view_mode:0 @@ -4605,8 +4625,8 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" msgstr "" #. module: base @@ -5082,6 +5102,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5189,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5315,8 +5340,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5498,11 +5523,6 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" -#. module: base -#: view:res.lang:0 -msgid "%c - Appropriate date and time representation." -msgstr "" - #. module: base #: field:ir.module.module,shortdesc:0 msgid "Short description" @@ -5554,11 +5574,6 @@ msgstr "" msgid "STOCK_DELETE" msgstr "" -#. module: base -#: field:res.partner.event,planned_cost:0 -msgid "Planned Cost" -msgstr "" - #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" @@ -5778,12 +5793,6 @@ msgstr "" msgid "This field is not used, it only helps you to select a good model." msgstr "" -#. module: base -#: field:workflow.activity,in_transitions:0 -#: view:workflow.activity:0 -msgid "Incoming transitions" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_partner_title_partner #: model:ir.ui.menu,name:base.menu_partner_title_partner @@ -5848,8 +5857,8 @@ msgid "Access Menu" msgstr "" #. module: base -#: field:workflow.transition,trigger_model:0 -msgid "Trigger Object" +#: view:ir.sequence:0 +msgid "Month: %(month)s" msgstr "" #. module: base @@ -5863,19 +5872,18 @@ msgid "Mobile No" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#: code:addons/base/module/module.py:0 -#: code:report/custom.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Error" +msgid "The create method is not implemented on this object !" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" msgstr "" #. module: base @@ -5914,6 +5922,11 @@ msgstr "" msgid "Create a Menu" msgstr "" +#. module: base +#: view:res.lang:0 +msgid "%B - Full month name." +msgstr "" + #. module: base #: view:ir.cron:0 msgid "Action to trigger" @@ -5925,8 +5938,8 @@ msgid "Searchable" msgstr "" #. module: base -#: view:res.partner.event:0 -msgid "Document Link" +#: view:res.lang:0 +msgid "%c - Appropriate date and time representation." msgstr "" #. module: base @@ -6068,6 +6081,11 @@ msgstr "" msgid "sxw" msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "" + #. module: base #: selection:ir.actions.url,target:0 msgid "This Window" @@ -6137,6 +6155,17 @@ msgstr "" msgid "Delivery" msgstr "" +#. module: base +#: code:report/custom.py:0 +#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_user.py:0 +#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_attachment msgid "ir.attachment" @@ -6236,6 +6265,11 @@ msgstr "" msgid "Module successfully imported !" msgstr "" +#. module: base +#: selection:res.config.view,view:0 +msgid "Simplified Interface" +msgstr "" + #. module: base #: field:res.partner.event,partner_type:0 msgid "Partner Relation" @@ -6309,8 +6343,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6421,6 @@ msgstr "" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format From be76499caf5402c8bbce1e5a77e69aa3d79c0fdd Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 30 Dec 2008 15:19:05 +0100 Subject: [PATCH 16/82] [IMP] update pot files bzr revid: christophe@cobalt-20081230141905-l8danrifrrgutgmq --- addons/account/i18n/account.pot | 98 ++++++++----- .../i18n/account_analytic_analysis.pot | 4 +- .../i18n/account_analytic_default.pot | 4 +- .../i18n/account_analytic_plans.pot | 4 +- .../account_balance/i18n/account_balance.pot | 4 +- addons/account_budget/i18n/account_budget.pot | 4 +- .../i18n/account_date_check.pot | 4 +- .../i18n/account_followup.pot | 24 +-- .../i18n/account_invoice_layout.pot | 24 +-- .../account_payment/i18n/account_payment.pot | 64 ++++---- addons/account_report/i18n/account_report.pot | 4 +- .../i18n/account_reporting.pot | 14 +- .../i18n/account_tax_include.pot | 4 +- .../account_voucher/i18n/account_voucher.pot | 14 +- .../i18n/analytic_journal_billing_rate.pot | 4 +- .../i18n/analytic_user_function.pot | 4 +- addons/auction/i18n/auction.pot | 4 +- addons/audittrail/i18n/audittrail.pot | 4 +- addons/base_contact/i18n/base_contact.pot | 28 ++-- addons/base_iban/i18n/base_iban.pot | 4 +- .../i18n/base_module_merge.pot | 4 +- .../i18n/base_module_publish.pot | 6 +- .../i18n/base_module_quality.pot | 67 +++++++-- .../i18n/base_module_record.pot | 4 +- .../i18n/base_report_creator.pot | 14 +- .../i18n/base_report_designer.pot | 4 +- addons/base_setup/i18n/base_setup.pot | 24 +-- addons/base_vat/i18n/base_vat.pot | 4 +- addons/board/i18n/board.pot | 4 +- addons/board_account/i18n/board_account.pot | 4 +- .../i18n/board_association.pot | 4 +- addons/board_auction/i18n/board_auction.pot | 4 +- .../i18n/board_crm_configuration.pot | 9 +- addons/board_document/i18n/board_document.pot | 4 +- .../i18n/board_manufacturing.pot | 4 +- addons/board_project/i18n/board_project.pot | 4 +- addons/board_sale/i18n/board_sale.pot | 4 +- addons/crm/i18n/crm.pot | 14 +- .../i18n/crm_configuration.pot | 14 +- addons/crm_profiling/i18n/crm_profiling.pot | 4 +- addons/delivery/i18n/delivery.pot | 4 +- addons/document/i18n/document.pot | 4 +- addons/document_ics/i18n/document_ics.pot | 4 +- addons/event/i18n/event.pot | 4 +- addons/event_project/i18n/event_project.pot | 4 +- addons/google_map/i18n/google_map.pot | 4 +- addons/hr/i18n/hr.pot | 40 ++--- addons/hr_attendance/i18n/hr_attendance.pot | 12 +- addons/hr_contract/i18n/hr_contract.pot | 4 +- addons/hr_expense/i18n/hr_expense.pot | 4 +- addons/hr_holidays/i18n/hr_holidays.pot | 4 +- addons/hr_timesheet/i18n/hr_timesheet.pot | 4 +- .../i18n/hr_timesheet_invoice.pot | 6 +- .../i18n/hr_timesheet_project.pot | 24 +-- .../i18n/hr_timesheet_sheet.pot | 34 ++--- addons/idea/i18n/idea.pot | 4 +- addons/l10n_be/i18n/l10n_be.pot | 4 +- .../i18n/l10n_chart_uk_minimal.pot | 4 +- addons/l10n_fr/i18n/l10n_fr.pot | 137 ++++++++++++++++-- addons/l10n_lu/i18n/l10n_lu.pot | 4 +- addons/membership/i18n/membership.pot | 4 +- addons/mrp/i18n/mrp.pot | 114 ++++++++------- addons/mrp_operations/i18n/mrp_operations.pot | 105 ++++++++++++-- addons/mrp_repair/i18n/mrp_repair.pot | 4 +- addons/mrp_subproduct/i18n/mrp_subproduct.pot | 4 +- addons/point_of_sale/i18n/point_of_sale.pot | 4 +- addons/process/i18n/process.pot | 11 +- addons/product/i18n/product.pot | 60 ++++---- addons/product_margin/i18n/product_margin.pot | 4 +- .../i18n/profile_accounting.pot | 4 +- .../i18n/profile_association.pot | 4 +- .../i18n/profile_manufacturing.pot | 4 +- .../profile_service/i18n/profile_service.pot | 4 +- addons/project/i18n/project.pot | 14 +- addons/project_gtd/i18n/project_gtd.pot | 4 +- addons/project_mrp/i18n/project_mrp.pot | 35 ++--- .../i18n/project_timesheet.pot | 4 +- addons/purchase/i18n/purchase.pot | 52 ++++++- .../i18n/purchase_analytic_plans.pot | 4 +- addons/report_account/i18n/report_account.pot | 4 +- .../report_analytic/i18n/report_analytic.pot | 4 +- .../i18n/report_analytic_line.pot | 4 +- .../i18n/report_analytic_planning.pot | 4 +- addons/report_crm/i18n/report_crm.pot | 4 +- .../report_document/i18n/report_document.pot | 4 +- .../i18n/report_intrastat.pot | 4 +- addons/report_mrp/i18n/report_mrp.pot | 4 +- addons/report_project/i18n/report_project.pot | 4 +- .../report_purchase/i18n/report_purchase.pot | 4 +- addons/report_sale/i18n/report_sale.pot | 4 +- .../i18n/report_timesheet.pot | 4 +- addons/sale/i18n/sale.pot | 18 +-- .../i18n/sale_analytic_plans.pot | 4 +- addons/sale_crm/i18n/sale_crm.pot | 4 +- addons/sale_journal/i18n/sale_journal.pot | 4 +- addons/scrum/i18n/scrum.pot | 4 +- addons/stock/i18n/stock.pot | 56 +------ addons/stock_location/i18n/stock_location.pot | 4 +- .../i18n/stock_no_autopicking.pot | 4 +- addons/subscription/i18n/subscription.pot | 4 +- addons/warning/i18n/warning.pot | 4 +- addons/wiki/i18n/wiki.pot | 4 +- 102 files changed, 837 insertions(+), 587 deletions(-) diff --git a/addons/account/i18n/account.pot b/addons/account/i18n/account.pot index eb77dd37ef9..ab26c7dcdb8 100644 --- a/addons/account/i18n/account.pot +++ b/addons/account/i18n/account.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -310,6 +310,12 @@ msgstr "" msgid "Select period" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Please verify the price of the invoice !\nThe real total does not match the computed total." +msgstr "" + #. module: account #: field:account.invoice.line,origin:0 #: field:account.invoice,origin:0 @@ -767,6 +773,11 @@ msgstr "" msgid "account.move.line" msgstr "" +#. module: account +#: model:process.transition,name:account.process_transition_supplieranalyticcost0 +msgid "Analytic Invoice" +msgstr "" + #. module: account #: field:account.journal.column,field:0 msgid "Field Name" @@ -1311,11 +1322,6 @@ msgstr "" msgid "Value" msgstr "" -#. module: account -#: model:process.node,name:account.process_node_invoiceinvoice0 -msgid "Create Invoice" -msgstr "" - #. module: account #: wizard_field:account.invoice.pay,addendum,writeoff_acc_id:0 #: wizard_field:account.move.line.reconcile,addendum,writeoff_acc_id:0 @@ -1554,9 +1560,8 @@ msgid "Open for reconciliation" msgstr "" #. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "Purchase Journal" +#: model:process.node,name:account.process_node_invoiceinvoice0 +msgid "Create Invoice" msgstr "" #. module: account @@ -1677,12 +1682,12 @@ msgid "Unreconciliation" msgstr "" #. module: account +#: code:addons/account/account.py:0 #: code:addons/account/invoice.py:0 #: code:addons/account/account_move_line.py:0 -#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 #: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 #: code:addons/account/wizard/wizard_journal.py:0 -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 #, python-format msgid "UserError" msgstr "" @@ -2498,6 +2503,7 @@ msgstr "" #. module: account #: code:addons/account/invoice.py:0 +#: code:addons/account/account_move_line.py:0 #, python-format msgid "No Analytic Journal !" msgstr "" @@ -2572,6 +2578,7 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_analyticinvoice0 +#: model:process.transition,note:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts, Create invoice." msgstr "" @@ -2690,6 +2697,7 @@ msgstr "" #: rml:account.analytic.account.journal:0 #: model:ir.ui.menu,name:account.next_id_40 #: model:process.node,name:account.process_node_analytic0 +#: model:process.node,name:account.process_node_analyticcost0 msgid "Analytic" msgstr "" @@ -2701,6 +2709,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_analytic0 +#: model:process.node,note:account.process_node_analyticcost0 msgid "Analytic costs to reinvoice purchases, timesheets, ..." msgstr "" @@ -2776,6 +2785,12 @@ msgstr "" msgid "Invoice Number" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "You have to define an analytic journal of type '%s' !" +msgstr "" + #. module: account #: wizard_button:populate_statement_from_inv,customer,finish:0 #: wizard_button:populate_statement_from_inv,supplier,finish:0 @@ -2863,6 +2878,11 @@ msgstr "" msgid "Total credit" msgstr "" +#. module: account +#: help:account.journal,centralisation:0 +msgid "Check this box if you want that each entry doesn't create a counterpart but share the same counterpart for each entry of this journal. This is used in fiscal year closing." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Best regards." @@ -3350,6 +3370,11 @@ msgstr "" msgid "Total debit" msgstr "" +#. module: account +#: help:account.journal,group_invoice_lines:0 +msgid "If this box is cheked, the system will try to group the accouting lines when generating them from invoices." +msgstr "" + #. module: account #: code:addons/account/wizard/wizard_bank_reconcile.py:0 #, python-format @@ -3409,11 +3434,6 @@ msgstr "" msgid "If a default tax if given in the partner it only override taxes from account (or product) of the same group." msgstr "" -#. module: account -#: help:account.model.line,sequence:0 -msgid "The sequence field is used to order the resources from the lowest sequences to the higher ones" -msgstr "" - #. module: account #: view:account.bank.statement:0 msgid "Real Entries" @@ -3459,8 +3479,8 @@ msgid "Date of the day" msgstr "" #. module: account -#: help:account.journal,centralisation:0 -msgid "Check this box if you want that each entry doesn't create a counterpart but share the same counterpart for each entry of this journal." +#: help:account.model.line,sequence:0 +msgid "The sequence field is used to order the resources from the lowest sequences to the higher ones" msgstr "" #. module: account @@ -3508,10 +3528,10 @@ msgstr "" #. module: account #: code:addons/account/account_bank_statement.py:0 #: code:addons/account/account_analytic_line.py:0 -#: code:addons/account/account_move_line.py:0 #: code:addons/account/account.py:0 -#: code:addons/account/wizard/wizard_pay_invoice.py:0 +#: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_refund.py:0 +#: code:addons/account/wizard/wizard_pay_invoice.py:0 #, python-format msgid "Error !" msgstr "" @@ -3717,8 +3737,8 @@ msgid "Invoice Date" msgstr "" #. module: account -#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 #: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 #, python-format msgid "The journal must have centralised counterpart" msgstr "" @@ -3805,6 +3825,11 @@ msgstr "" msgid "Balance:" msgstr "" +#. module: account +#: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 +msgid "Confirm statement from draft" +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Customer account statement" @@ -3865,6 +3890,12 @@ msgstr "" msgid "Active" msgstr "" +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "Purchase Journal" +msgstr "" + #. module: account #: model:process.node,note:account.process_node_electronicfile0 msgid "Import from your bank statements" @@ -4536,11 +4567,6 @@ msgstr "" msgid "account.config.wizard" msgstr "" -#. module: account -#: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 -msgid "Confirm statement from draft" -msgstr "" - #. module: account #: wizard_field:account.fiscalyear.close,init,report_new:0 msgid "Create new entries" @@ -4760,9 +4786,8 @@ msgstr "" #. module: account #: code:addons/account/account_move_line.py:0 -#: code:addons/account/wizard/wizard_validate_account_move.py:0 #, python-format -msgid "Warning" +msgid "You have to define an analytic journal on the '%s' journal!" msgstr "" #. module: account @@ -4943,6 +4968,13 @@ msgstr "" msgid "Have a number and entries are generated" msgstr "" +#. module: account +#: code:addons/account/account_move_line.py:0 +#: code:addons/account/wizard/wizard_validate_account_move.py:0 +#, python-format +msgid "Warning" +msgstr "" + #. module: account #: rml:account.analytic.account.analytic.check:0 msgid "Analytic Check -" @@ -4954,9 +4986,8 @@ msgid "Account Balance -" msgstr "" #. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Please verify the price of the invoice !\nThe real total does not match the computed total." +#: field:account.journal,group_invoice_lines:0 +msgid "Group invoice lines" msgstr "" #. module: account @@ -5296,7 +5327,6 @@ msgstr "" #. module: account #: selection:account.bank.statement,state:0 #: view:account.bank.statement:0 -#: model:process.transition.action,name:account.process_transition_action_draftconfirmstatement0 msgid "Confirm" msgstr "" @@ -5386,8 +5416,8 @@ msgid "Bad account !" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:0 #: code:addons/account/account.py:0 +#: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 #, python-format msgid "Error" diff --git a/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot b/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot index 0ed085f01b7..a9034786de2 100644 --- a/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot +++ b/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/account_analytic_default.pot b/addons/account_analytic_default/i18n/account_analytic_default.pot index 4c5bb455203..ff5bac68232 100644 --- a/addons/account_analytic_default/i18n/account_analytic_default.pot +++ b/addons/account_analytic_default/i18n/account_analytic_default.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/account_analytic_plans.pot b/addons/account_analytic_plans/i18n/account_analytic_plans.pot index 4339722eba6..d41083c003c 100644 --- a/addons/account_analytic_plans/i18n/account_analytic_plans.pot +++ b/addons/account_analytic_plans/i18n/account_analytic_plans.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/account_balance.pot b/addons/account_balance/i18n/account_balance.pot index ff2e85358a8..ed2564a66ab 100644 --- a/addons/account_balance/i18n/account_balance.pot +++ b/addons/account_balance/i18n/account_balance.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/account_budget.pot b/addons/account_budget/i18n/account_budget.pot index d960b2248f1..471b572ea6d 100644 --- a/addons/account_budget/i18n/account_budget.pot +++ b/addons/account_budget/i18n/account_budget.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/account_date_check.pot b/addons/account_date_check/i18n/account_date_check.pot index 887fc1a7aac..373eb6ce0a5 100644 --- a/addons/account_date_check/i18n/account_date_check.pot +++ b/addons/account_date_check/i18n/account_date_check.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/account_followup.pot b/addons/account_followup/i18n/account_followup.pot index ea44721df04..2f7042d064d 100644 --- a/addons/account_followup/i18n/account_followup.pot +++ b/addons/account_followup/i18n/account_followup.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -31,11 +31,6 @@ msgstr "" msgid "All payable entries" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Partner entries" -msgstr "" - #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Date:" @@ -406,6 +401,11 @@ msgstr "" msgid "Total debit" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Partner entries" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Maturity date" @@ -442,13 +442,13 @@ msgstr "" msgid "Balance" msgstr "" -#. module: account_followup -#: field:account.move.line,followup_line_id:0 -msgid "Follow-up Level" -msgstr "" - #. module: account_followup #: field:account_followup.followup,company_id:0 msgid "Company" msgstr "" +#. module: account_followup +#: field:account.move.line,followup_line_id:0 +msgid "Follow-up Level" +msgstr "" + diff --git a/addons/account_invoice_layout/i18n/account_invoice_layout.pot b/addons/account_invoice_layout/i18n/account_invoice_layout.pot index 1f9d3e02a44..a5e165522ad 100644 --- a/addons/account_invoice_layout/i18n/account_invoice_layout.pot +++ b/addons/account_invoice_layout/i18n/account_invoice_layout.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,6 +36,11 @@ msgstr "" msgid "Title" msgstr "" +#. module: account_invoice_layout +#: model:ir.actions.wizard,name:account_invoice_layout.wizard_notify_message +msgid "Invoices with Layout and Message" +msgstr "" + #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -52,8 +57,8 @@ msgid "Supplier Invoice" msgstr "" #. module: account_invoice_layout -#: model:ir.actions.wizard,name:account_invoice_layout.wizard_notify_message -msgid "Invoice + Message" +#: help:notify.message,msg:0 +msgid "This notification will appear at the bottom of the Invoices when printed." msgstr "" #. module: account_invoice_layout @@ -163,7 +168,6 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_1 msgid "Invoice" msgstr "" @@ -202,6 +206,11 @@ msgstr "" msgid "Total (excl. taxes):" msgstr "" +#. module: account_invoice_layout +#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_1 +msgid "Invoices with Layout" +msgstr "" + #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Draft Invoice" @@ -237,11 +246,6 @@ msgstr "" msgid "Tax" msgstr "" -#. module: account_invoice_layout -#: help:notify.message,msg:0 -msgid "This notification will appear at the bottom of the Invoices when printed." -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "(incl. taxes):" diff --git a/addons/account_payment/i18n/account_payment.pot b/addons/account_payment/i18n/account_payment.pot index c13bf1078d8..7642800dc2a 100644 --- a/addons/account_payment/i18n/account_payment.pot +++ b/addons/account_payment/i18n/account_payment.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -59,6 +59,16 @@ msgid "The amount which should be paid at the current date\n" "minus the amount which is already in payment order" msgstr "" +#. module: account_payment +#: help:payment.line,date:0 +msgid "If no payment date is specified, the bank will treat this payment line directly" +msgstr "" + +#. module: account_payment +#: field:payment.order,date_prefered:0 +msgid "Preferred date" +msgstr "" + #. module: account_payment #: selection:payment.line,state:0 msgid "Free" @@ -85,13 +95,13 @@ msgid "_Add to payment order" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 #: view:payment.order:0 msgid "Amount" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 msgid "Execution date:" msgstr "" @@ -112,7 +122,7 @@ msgid "New Payment Order" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 #: field:payment.order,reference:0 msgid "Reference" msgstr "" @@ -128,8 +138,11 @@ msgid "Directly" msgstr "" #. module: account_payment -#: selection:payment.order,state:0 -msgid "Draft" +#: model:ir.actions.act_window,name:account_payment.action_payment_line_form +#: model:ir.model,name:account_payment.model_payment_line +#: view:payment.line:0 +#: view:payment.order:0 +msgid "Payment Line" msgstr "" #. module: account_payment @@ -178,6 +191,11 @@ msgstr "" msgid "Total debit" msgstr "" +#. module: account_payment +#: field:payment.line,ml_inv_ref:0 +msgid "Invoice Ref." +msgstr "" + #. module: account_payment #: field:payment.line,move_line_id:0 msgid "Entry line" @@ -248,7 +266,7 @@ msgid "Communication Type" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 #: field:payment.line,partner_id:0 msgid "Partner" msgstr "" @@ -291,11 +309,8 @@ msgid "Draft payment order" msgstr "" #. module: account_payment -#: model:ir.actions.act_window,name:account_payment.action_payment_line_form -#: model:ir.model,name:account_payment.model_payment_line -#: view:payment.line:0 -#: view:payment.order:0 -msgid "Payment Line" +#: selection:payment.order,state:0 +msgid "Draft" msgstr "" #. module: account_payment @@ -335,12 +350,12 @@ msgid "Payment Lines" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 msgid "Date" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 msgid "Reference:" msgstr "" @@ -389,11 +404,6 @@ msgstr "" msgid "The Ordering Customer" msgstr "" -#. module: account_payment -#: field:payment.line,ml_inv_ref:0 -msgid "Invoice Ref" -msgstr "" - #. module: account_payment #: field:payment.type,code:0 msgid "Code" @@ -453,7 +463,7 @@ msgid "Pay" msgstr "" #. module: account_payment -#: model:ir.actions.report.xml,name:account_payment.payment_order +#: model:ir.actions.report.xml,name:account_payment.payment_order1 #: model:ir.model,name:account_payment.model_payment_order msgid "Payment Order" msgstr "" @@ -489,7 +499,7 @@ msgid "Cash Journal for the Payment Mode" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 #: field:payment.mode,bank_id:0 msgid "Bank account" msgstr "" @@ -504,11 +514,6 @@ msgstr "" msgid "Company Currency" msgstr "" -#. module: account_payment -#: help:payment.line,date:0 -msgid "If no payment date is specified, the bank will treat this payment line direclty" -msgstr "" - #. module: account_payment #: model:ir.ui.menu,name:account_payment.menu_main #: model:ir.ui.menu,name:account_payment.next_id_44 @@ -577,11 +582,6 @@ msgstr "" msgid "Select the Payment Type for the Payment Mode." msgstr "" -#. module: account_payment -#: field:payment.order,date_prefered:0 -msgid "Prefered date" -msgstr "" - #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_mode_form #: model:ir.model,name:account_payment.model_payment_mode diff --git a/addons/account_report/i18n/account_report.pot b/addons/account_report/i18n/account_report.pot index 708872b2686..e7808ad11c4 100644 --- a/addons/account_report/i18n/account_report.pot +++ b/addons/account_report/i18n/account_report.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/account_reporting.pot b/addons/account_reporting/i18n/account_reporting.pot index 6c5d7b5c39d..bbc92f487fa 100644 --- a/addons/account_reporting/i18n/account_reporting.pot +++ b/addons/account_reporting/i18n/account_reporting.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,11 +66,6 @@ msgstr "" msgid "Courier-BoldOblique" msgstr "" -#. module: account_reporting -#: model:ir.ui.menu,name:account_reporting.bs_report_action_form -msgid "Balance Sheet Rrport Form" -msgstr "" - #. module: account_reporting #: help:account.account.balancesheet.report,init,periods:0 msgid "All periods if empty" @@ -122,6 +117,11 @@ msgstr "" msgid "Notes" msgstr "" +#. module: account_reporting +#: model:ir.ui.menu,name:account_reporting.bs_report_action_form +msgid "Balance Sheet Report Form" +msgstr "" + #. module: account_reporting #: wizard_button:account.account.balancesheet.report,init,report:0 msgid "Print BalanceSheet" diff --git a/addons/account_tax_include/i18n/account_tax_include.pot b/addons/account_tax_include/i18n/account_tax_include.pot index ef60dfc5235..4ba30c82607 100644 --- a/addons/account_tax_include/i18n/account_tax_include.pot +++ b/addons/account_tax_include/i18n/account_tax_include.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/account_voucher.pot b/addons/account_voucher/i18n/account_voucher.pot index db5bb016134..d780f920b99 100644 --- a/addons/account_voucher/i18n/account_voucher.pot +++ b/addons/account_voucher/i18n/account_voucher.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -256,11 +256,6 @@ msgstr "" msgid "Name" msgstr "" -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_rec_voucher_form -msgid "New Cash Receipt" -msgstr "" - #. module: account_voucher #: field:account.voucher,reference_type:0 msgid "Reference Type" @@ -315,6 +310,11 @@ msgstr "" msgid "Receiver's Signature" msgstr "" +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_rec_voucher_form +msgid "New Cash Receipt" +msgstr "" + #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form msgid "New Bank Payment" diff --git a/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot b/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot index 6b44f0ac891..fd7de9c0809 100644 --- a/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot +++ b/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/analytic_user_function.pot b/addons/analytic_user_function/i18n/analytic_user_function.pot index d1631b36632..d2391c2bf27 100644 --- a/addons/analytic_user_function/i18n/analytic_user_function.pot +++ b/addons/analytic_user_function/i18n/analytic_user_function.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/auction.pot b/addons/auction/i18n/auction.pot index e3e5ff1f1f9..c5fe97661ae 100644 --- a/addons/auction/i18n/auction.pot +++ b/addons/auction/i18n/auction.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/audittrail.pot b/addons/audittrail/i18n/audittrail.pot index 3dac7327bd6..815ed0acbc4 100644 --- a/addons/audittrail/i18n/audittrail.pot +++ b/addons/audittrail/i18n/audittrail.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/base_contact.pot b/addons/base_contact/i18n/base_contact.pot index b178b5f66a2..03191cf5279 100644 --- a/addons/base_contact/i18n/base_contact.pot +++ b/addons/base_contact/i18n/base_contact.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -50,8 +50,8 @@ msgid "First Name" msgstr "" #. module: base_contact -#: field:res.partner.job,state:0 -msgid "State" +#: model:ir.model,name:base_contact.model_res_partner_job +msgid "Contact Partner Function" msgstr "" #. module: base_contact @@ -59,6 +59,11 @@ msgstr "" msgid "Contact to function" msgstr "" +#. module: base_contact +#: field:res.partner.job,function_id:0 +msgid "Partner Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -185,11 +190,6 @@ msgstr "" msgid "Extra Information" msgstr "" -#. module: base_contact -#: field:res.partner.job,function_id:0 -msgid "Job Title" -msgstr "" - #. module: base_contact #: field:res.partner.contact,job_ids:0 #: view:res.partner.contact:0 @@ -254,6 +254,11 @@ msgstr "" msgid "base_contact workflow" msgstr "" +#. module: base_contact +#: field:res.partner.job,state:0 +msgid "State" +msgstr "" + #. module: base_contact #: view:res.partner.contact:0 #: view:res.partner.job:0 @@ -270,11 +275,6 @@ msgstr "" msgid "General Information" msgstr "" -#. module: base_contact -#: model:ir.model,name:base_contact.model_res_partner_job -msgid "Contact Job Title" -msgstr "" - #. module: base_contact #: field:res.partner.job,name:0 msgid "Partner" diff --git a/addons/base_iban/i18n/base_iban.pot b/addons/base_iban/i18n/base_iban.pot index 42b54557d58..15635f55aaa 100644 --- a/addons/base_iban/i18n/base_iban.pot +++ b/addons/base_iban/i18n/base_iban.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/base_module_merge.pot b/addons/base_module_merge/i18n/base_module_merge.pot index f6f445db781..d0b5ce1874c 100644 --- a/addons/base_module_merge/i18n/base_module_merge.pot +++ b/addons/base_module_merge/i18n/base_module_merge.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/base_module_publish.pot b/addons/base_module_publish/i18n/base_module_publish.pot index 5af9c863e57..c67a8351ae7 100644 --- a/addons/base_module_publish/i18n/base_module_publish.pot +++ b/addons/base_module_publish/i18n/base_module_publish.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -439,8 +439,8 @@ msgid "Vertical modules/Manufacturing industries" msgstr "" #. module: base_module_publish -#: code:addons/base_module_publish/wizard/base_module_publish.py:0 #: code:addons/base_module_publish/wizard/module_zip.py:0 +#: code:addons/base_module_publish/wizard/base_module_publish.py:0 #, python-format msgid "Error" msgstr "" diff --git a/addons/base_module_quality/i18n/base_module_quality.pot b/addons/base_module_quality/i18n/base_module_quality.pot index e4ff06141cc..14fe8e5490c 100644 --- a/addons/base_module_quality/i18n/base_module_quality.pot +++ b/addons/base_module_quality/i18n/base_module_quality.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,22 +16,59 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: model:ir.actions.wizard,name:base_module_quality.base_module_quality -msgid "Check the Quality of module" +#: field:quality.check.detail,general_info:0 +msgid "General Info" msgstr "" #. module: base_module_quality -#: wizard_button:base.module.quality,init,end:0 -msgid "Ok" -msgstr "" - -#. module: base_module_quality -#: wizard_view:base.module.quality,init:0 -msgid "Check quality" -msgstr "" - -#. module: base_module_quality -#: wizard_view:base.module.quality,init:0 +#: view:quality.check.detail:0 msgid "Summary" msgstr "" +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: base_module_quality +#: field:quality.check.detail,detail:0 +#: view:quality.check.detail:0 +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:wizard.quality.check,verbose_detail:0 +msgid "Verbose Detail" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_quality_check_detail +msgid "quality.check.detail" +msgstr "" + +#. module: base_module_quality +#: view:wizard.quality.check:0 +#: view:quality.check.detail:0 +msgid "Result" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_wizard_quality_check +msgid "wizard.quality.check" +msgstr "" + +#. module: base_module_quality +#: view:wizard.quality.check:0 +msgid "Verbose detail" +msgstr "" + +#. module: base_module_quality +#: field:quality.check.detail,quality_check:0 +msgid "Quality" +msgstr "" + diff --git a/addons/base_module_record/i18n/base_module_record.pot b/addons/base_module_record/i18n/base_module_record.pot index 86a4a4ee3b2..bd39c1b94ac 100644 --- a/addons/base_module_record/i18n/base_module_record.pot +++ b/addons/base_module_record/i18n/base_module_record.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/base_report_creator.pot b/addons/base_report_creator/i18n/base_report_creator.pot index afbc2817ec4..6ccbc4c4eeb 100644 --- a/addons/base_report_creator/i18n/base_report_creator.pot +++ b/addons/base_report_creator/i18n/base_report_creator.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -242,11 +242,6 @@ msgstr "" msgid "Parent Menu" msgstr "" -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Fields" -msgstr "" - #. module: base_report_creator #: field:base_report_creator.report,type:0 msgid "Report Type" @@ -314,6 +309,11 @@ msgstr "" msgid "Graph Orientation" msgstr "" +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Fields" +msgstr "" + #. module: base_report_creator #: view:base_report_creator.report:0 msgid "Authorized Groups (empty for all)" diff --git a/addons/base_report_designer/i18n/base_report_designer.pot b/addons/base_report_designer/i18n/base_report_designer.pot index e02fa25267b..50b066159ad 100644 --- a/addons/base_report_designer/i18n/base_report_designer.pot +++ b/addons/base_report_designer/i18n/base_report_designer.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/base_setup.pot b/addons/base_setup/i18n/base_setup.pot index 6c38c7cc778..7bb897cb77c 100644 --- a/addons/base_setup/i18n/base_setup.pot +++ b/addons/base_setup/i18n/base_setup.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -1209,7 +1209,7 @@ msgstr "" #: selection:base_setup.base_setup,company,country_id:0 #: selection:base_setup.base_setup,update,country_id:0 #: selection:base_setup.base_setup,init,country_id:0 -msgid "Czech Republic" +msgid "Northern Mariana Islands" msgstr "" #. module: base_setup @@ -1872,10 +1872,10 @@ msgid "Neutral Zone" msgstr "" #. module: base_setup -#: selection:base_setup.base_setup,company,state_id:0 -#: selection:base_setup.base_setup,update,state_id:0 -#: selection:base_setup.base_setup,init,state_id:0 -msgid "Amapá" +#: selection:base_setup.base_setup,company,country_id:0 +#: selection:base_setup.base_setup,update,country_id:0 +#: selection:base_setup.base_setup,init,country_id:0 +msgid "Vanuatu" msgstr "" #. module: base_setup @@ -2395,10 +2395,10 @@ msgid "GBP" msgstr "" #. module: base_setup -#: selection:base_setup.base_setup,company,country_id:0 -#: selection:base_setup.base_setup,update,country_id:0 -#: selection:base_setup.base_setup,init,country_id:0 -msgid "Vanuatu" +#: selection:base_setup.base_setup,company,state_id:0 +#: selection:base_setup.base_setup,update,state_id:0 +#: selection:base_setup.base_setup,init,state_id:0 +msgid "Amapá" msgstr "" #. module: base_setup @@ -3608,7 +3608,7 @@ msgstr "" #: selection:base_setup.base_setup,company,country_id:0 #: selection:base_setup.base_setup,update,country_id:0 #: selection:base_setup.base_setup,init,country_id:0 -msgid "Northern Mariana Islands" +msgid "Czech Republic" msgstr "" #. module: base_setup diff --git a/addons/base_vat/i18n/base_vat.pot b/addons/base_vat/i18n/base_vat.pot index afcf558c6d4..3cc0a526378 100644 --- a/addons/base_vat/i18n/base_vat.pot +++ b/addons/base_vat/i18n/base_vat.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/board.pot b/addons/board/i18n/board.pot index c640ccaf8cd..d0ad466765a 100644 --- a/addons/board/i18n/board.pot +++ b/addons/board/i18n/board.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/board_account.pot b/addons/board_account/i18n/board_account.pot index a4ec9a71302..16488c44368 100644 --- a/addons/board_account/i18n/board_account.pot +++ b/addons/board_account/i18n/board_account.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/board_association.pot b/addons/board_association/i18n/board_association.pot index 33817283f8b..07f43a3eb79 100644 --- a/addons/board_association/i18n/board_association.pot +++ b/addons/board_association/i18n/board_association.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/board_auction.pot b/addons/board_auction/i18n/board_auction.pot index 8f1cdf3ca49..99b8e49288b 100644 --- a/addons/board_auction/i18n/board_auction.pot +++ b/addons/board_auction/i18n/board_auction.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/board_crm_configuration.pot b/addons/board_crm_configuration/i18n/board_crm_configuration.pot index fbb0b397fa0..04b0a9267c5 100644 --- a/addons/board_crm_configuration/i18n/board_crm_configuration.pot +++ b/addons/board_crm_configuration/i18n/board_crm_configuration.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -106,8 +106,3 @@ msgstr "" msgid "CRM - Statistics Dashboard" msgstr "" -#. module: board_crm_configuration -#: view:board.board:0 -msgid "My Jobs Requests" -msgstr "" - diff --git a/addons/board_document/i18n/board_document.pot b/addons/board_document/i18n/board_document.pot index e42b363d379..ec282db5f8a 100644 --- a/addons/board_document/i18n/board_document.pot +++ b/addons/board_document/i18n/board_document.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/board_manufacturing.pot b/addons/board_manufacturing/i18n/board_manufacturing.pot index 339e19e0422..6cf876e152f 100644 --- a/addons/board_manufacturing/i18n/board_manufacturing.pot +++ b/addons/board_manufacturing/i18n/board_manufacturing.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/board_project.pot b/addons/board_project/i18n/board_project.pot index 8edfbab385a..6dacf3303f4 100644 --- a/addons/board_project/i18n/board_project.pot +++ b/addons/board_project/i18n/board_project.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/board_sale.pot b/addons/board_sale/i18n/board_sale.pot index 737c89113eb..f891ea45565 100644 --- a/addons/board_sale/i18n/board_sale.pot +++ b/addons/board_sale/i18n/board_sale.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/crm.pot b/addons/crm/i18n/crm.pot index 29ccf6d9819..a75daab184c 100644 --- a/addons/crm/i18n/crm.pot +++ b/addons/crm/i18n/crm.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -632,11 +632,6 @@ msgstr "" msgid "Set responsible to" msgstr "" -#. module: crm -#: view:crm.case:0 -msgid "General" -msgstr "" - #. module: crm #: view:crm.case.rule:0 msgid "The rule use a AND operator. The case must match all non empty fields so that the rule execute the action described in the 'Actions' tab." @@ -1196,6 +1191,11 @@ msgstr "" msgid "All Pending " msgstr "" +#. module: crm +#: view:crm.case:0 +msgid "General" +msgstr "" + #. module: crm #: model:ir.model,name:crm.model_crm_segmentation #: view:crm.segmentation:0 diff --git a/addons/crm_configuration/i18n/crm_configuration.pot b/addons/crm_configuration/i18n/crm_configuration.pot index 8d26221433b..7eff8cea034 100644 --- a/addons/crm_configuration/i18n/crm_configuration.pot +++ b/addons/crm_configuration/i18n/crm_configuration.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -910,11 +910,6 @@ msgstr "" msgid "My Unclosed Requests" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_presale -msgid "Pre-Sales" -msgstr "" - #. module: crm_configuration #: field:crm.menu.config_wizard,name:0 #: view:crm.case:0 @@ -1425,6 +1420,11 @@ msgstr "" msgid "Cases by section and stage" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_presale +msgid "Sales" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "General" diff --git a/addons/crm_profiling/i18n/crm_profiling.pot b/addons/crm_profiling/i18n/crm_profiling.pot index aa73771df24..9de3bbed7b9 100644 --- a/addons/crm_profiling/i18n/crm_profiling.pot +++ b/addons/crm_profiling/i18n/crm_profiling.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/delivery.pot b/addons/delivery/i18n/delivery.pot index 7f805ce2c36..5342d384f38 100644 --- a/addons/delivery/i18n/delivery.pot +++ b/addons/delivery/i18n/delivery.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/document.pot b/addons/document/i18n/document.pot index 07a0c17b3ee..adc030ec95d 100644 --- a/addons/document/i18n/document.pot +++ b/addons/document/i18n/document.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document_ics/i18n/document_ics.pot b/addons/document_ics/i18n/document_ics.pot index 132167ed406..5a14526a556 100644 --- a/addons/document_ics/i18n/document_ics.pot +++ b/addons/document_ics/i18n/document_ics.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/event.pot b/addons/event/i18n/event.pot index e3e1fd31953..5762010d97c 100644 --- a/addons/event/i18n/event.pot +++ b/addons/event/i18n/event.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/event_project.pot b/addons/event_project/i18n/event_project.pot index e8c971365e9..e1550249653 100644 --- a/addons/event_project/i18n/event_project.pot +++ b/addons/event_project/i18n/event_project.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/google_map.pot b/addons/google_map/i18n/google_map.pot index 6c3b3431ceb..f78dec4b2c6 100644 --- a/addons/google_map/i18n/google_map.pot +++ b/addons/google_map/i18n/google_map.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/hr.pot b/addons/hr/i18n/hr.pot index 37ec68d6e58..ce27c4d7244 100644 --- a/addons/hr/i18n/hr.pot +++ b/addons/hr/i18n/hr.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -96,11 +96,6 @@ msgstr "" msgid "Work from" msgstr "" -#. module: hr -#: model:process.transition,note:hr.process_transition_employeeuser0 -msgid "Create openerp user" -msgstr "" - #. module: hr #: code:addons/hr/wizard/sign_in_out.py:0 #, python-format @@ -117,11 +112,6 @@ msgstr "" msgid "Female" msgstr "" -#. module: hr -#: model:process.node,note:hr.process_node_jobshiring0 -msgid "Process to search, interview and evaluate new candidates" -msgstr "" - #. module: hr #: code:addons/hr/wizard/sign_in_out.py:0 #, python-format @@ -268,11 +258,6 @@ msgstr "" msgid "Note" msgstr "" -#. module: hr -#: model:process.transition,note:hr.process_transition_employeejob0 -msgid "After confirming job, he will be a employee" -msgstr "" - #. module: hr #: view:hr.employee:0 msgid "Contact Information" @@ -310,11 +295,6 @@ msgstr "" msgid "Day of week" msgstr "" -#. module: hr -#: model:process.transition,name:hr.process_transition_employeejob0 -msgid "Employee Job" -msgstr "" - #. module: hr #: field:hr.employee,ssnid:0 msgid "SSN No" @@ -335,6 +315,12 @@ msgstr "" msgid "Employee Complete Form" msgstr "" +#. module: hr +#: model:ir.actions.act_window,name:hr.open_view_categ_form +#: model:ir.ui.menu,name:hr.menu_view_employee_category_form +msgid "Categories of Employee" +msgstr "" + #. module: hr #: view:hr.department:0 msgid "Companies" @@ -346,14 +332,8 @@ msgid "Wednesday" msgstr "" #. module: hr -#: model:ir.actions.act_window,name:hr.open_view_categ_form -#: model:ir.ui.menu,name:hr.menu_view_employee_category_form -msgid "Categories of Employee" -msgstr "" - -#. module: hr -#: model:process.node,name:hr.process_node_jobshiring0 -msgid "Jobs hiring" +#: model:process.transition,note:hr.process_transition_employeeuser0 +msgid "Create openerp user" msgstr "" #. module: hr diff --git a/addons/hr_attendance/i18n/hr_attendance.pot b/addons/hr_attendance/i18n/hr_attendance.pot index 89f61ff56f6..8400d903593 100644 --- a/addons/hr_attendance/i18n/hr_attendance.pot +++ b/addons/hr_attendance/i18n/hr_attendance.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,9 +43,9 @@ msgid "(*) A positive delay means that the employee worked less than recorded." msgstr "" #. module: hr_attendance +#: wizard_view:hr.si_so,si_ask_so:0 #: wizard_view:hr.si_so,so_ask_si:0 #: wizard_view:hr.si_so,init:0 -#: wizard_view:hr.si_so,si_ask_so:0 #: model:ir.actions.wizard,name:hr_attendance.si_so #: model:ir.ui.menu,name:hr_attendance.menu_si_so msgid "Sign in / Sign out" @@ -196,8 +196,8 @@ msgid "Define attendance reason" msgstr "" #. module: hr_attendance -#: wizard_button:hr.si_so,init,si_test:0 #: wizard_button:hr.si_so,si_ask_so,si:0 +#: wizard_button:hr.si_so,init,si_test:0 #: selection:hr.action.reason,action_type:0 msgid "Sign in" msgstr "" @@ -229,9 +229,9 @@ msgid "Attendance Errors" msgstr "" #. module: hr_attendance +#: wizard_field:hr.si_so,si_ask_so,name:0 #: wizard_field:hr.si_so,so_ask_si,name:0 #: wizard_field:hr.si_so,init,name:0 -#: wizard_field:hr.si_so,si_ask_so,name:0 msgid "Employee's name" msgstr "" @@ -301,9 +301,9 @@ msgid "Warning" msgstr "" #. module: hr_attendance +#: wizard_button:hr.si_so,si_ask_so,end:0 #: wizard_button:hr.si_so,so_ask_si,end:0 #: wizard_button:hr.si_so,init,end:0 -#: wizard_button:hr.si_so,si_ask_so,end:0 #: wizard_button:hr.timesheet.attendance.report,init,end:0 msgid "Cancel" msgstr "" diff --git a/addons/hr_contract/i18n/hr_contract.pot b/addons/hr_contract/i18n/hr_contract.pot index 44084f2c2fc..6798a849f5a 100644 --- a/addons/hr_contract/i18n/hr_contract.pot +++ b/addons/hr_contract/i18n/hr_contract.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/hr_expense.pot b/addons/hr_expense/i18n/hr_expense.pot index 09acc8bf30e..f6f6a70f5e9 100644 --- a/addons/hr_expense/i18n/hr_expense.pot +++ b/addons/hr_expense/i18n/hr_expense.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/hr_holidays.pot b/addons/hr_holidays/i18n/hr_holidays.pot index 9cd1d61528e..4fdbe08e089 100644 --- a/addons/hr_holidays/i18n/hr_holidays.pot +++ b/addons/hr_holidays/i18n/hr_holidays.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/hr_timesheet.pot b/addons/hr_timesheet/i18n/hr_timesheet.pot index cadc9a5b6b8..70fc0da7f98 100644 --- a/addons/hr_timesheet/i18n/hr_timesheet.pot +++ b/addons/hr_timesheet/i18n/hr_timesheet.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot b/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot index f0a17d27f4e..603b858204d 100644 --- a/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot +++ b/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 #, python-format msgid "Analytic account incomplete" msgstr "" diff --git a/addons/hr_timesheet_project/i18n/hr_timesheet_project.pot b/addons/hr_timesheet_project/i18n/hr_timesheet_project.pot index 00f82f5620e..847e7946645 100644 --- a/addons/hr_timesheet_project/i18n/hr_timesheet_project.pot +++ b/addons/hr_timesheet_project/i18n/hr_timesheet_project.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,14 +15,9 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: hr_timesheet_project -#: model:process.node,note:hr_timesheet_project.process_node_taskwork0 -msgid "Work on task" -msgstr "" - #. module: hr_timesheet_project #: model:process.node,name:hr_timesheet_project.process_node_timesheettask0 -msgid "Timesheet_task" +msgid "Timesheet task" msgstr "" #. module: hr_timesheet_project @@ -45,14 +40,19 @@ msgstr "" msgid "Task encoding" msgstr "" +#. module: hr_timesheet_project +#: model:process.transition,note:hr_timesheet_project.process_transition_tasktimesheet0 +msgid "Moves task entry into the timesheet line" +msgstr "" + #. module: hr_timesheet_project #: model:process.transition,name:hr_timesheet_project.process_transition_tasktimesheet0 msgid "Task timesheet" msgstr "" #. module: hr_timesheet_project -#: model:process.transition,note:hr_timesheet_project.process_transition_tasktimesheet0 -msgid "Moves task entry into the timesheet line" +#: model:process.node,name:hr_timesheet_project.process_node_workontask0 +msgid "Work on Task" msgstr "" #. module: hr_timesheet_project @@ -81,7 +81,7 @@ msgid "Hours From Tasks" msgstr "" #. module: hr_timesheet_project -#: model:process.node,name:hr_timesheet_project.process_node_workontask0 -msgid "Work on Task" +#: model:process.node,note:hr_timesheet_project.process_node_taskwork0 +msgid "Work on task" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot b/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot index 5e1b380de72..9e409cd230f 100644 --- a/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot +++ b/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -70,7 +70,8 @@ msgstr "" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 #: model:process.node,name:hr_timesheet_sheet.process_node_timesheet0 -#: model:process.transition,name:hr_timesheet_sheet.process_transition_timesheet0 +#: model:process.node,name:hr_timesheet_sheet.process_node_timesheetconfirming0 +#: model:process.transition,name:hr_timesheet_sheet.process_transition_timesheetdraft0 msgid "Timesheet" msgstr "" @@ -144,8 +145,8 @@ msgid "Total Difference" msgstr "" #. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_timesheetconfirming0 -msgid "Timesheet Confirming" +#: model:process.transition,name:hr_timesheet_sheet.process_transition_phonecallencoding0 +msgid "Phone call encoding" msgstr "" #. module: hr_timesheet_sheet @@ -212,7 +213,7 @@ msgstr "" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet.day,total_attendance:0 #: model:process.node,name:hr_timesheet_sheet.process_node_attendance0 -#: model:process.transition,name:hr_timesheet_sheet.process_transition_attendance0 +#: model:process.transition,name:hr_timesheet_sheet.process_transition_attendancetimesheet0 msgid "Attendance" msgstr "" @@ -350,8 +351,8 @@ msgid "Review of work" msgstr "" #. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_timesheetline0 -msgid "Timesheet Line" +#: model:process.node,name:hr_timesheet_sheet.process_node_invoiceonwork0 +msgid "Invoice on Work" msgstr "" #. module: hr_timesheet_sheet @@ -442,11 +443,6 @@ msgstr "" msgid "Invoice based on timesheet" msgstr "" -#. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_reviewofwork0 -msgid "Review of your work at the end of the day" -msgstr "" - #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_invoiceontimesheet0 msgid "Creates invoice based on timesheet" @@ -480,7 +476,7 @@ msgid "Confirmed Timesheet" msgstr "" #. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_attendance0 +#: model:process.transition,note:hr_timesheet_sheet.process_transition_attendancetimesheet0 msgid "Attendance entry moves into the timesheet" msgstr "" @@ -490,8 +486,8 @@ msgid "Creates your analytic cost accoording to quantity" msgstr "" #. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_invoiceonwork0 -msgid "Invoice on Work" +#: model:process.node,name:hr_timesheet_sheet.process_node_timesheetline0 +msgid "Timesheet Line" msgstr "" #. module: hr_timesheet_sheet @@ -571,7 +567,7 @@ msgid "Absent" msgstr "" #. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_timesheet0 +#: model:process.transition,note:hr_timesheet_sheet.process_transition_timesheetdraft0 msgid "timesheet entry is into draft state." msgstr "" @@ -591,8 +587,8 @@ msgid "Encode how much time u spent on phone call" msgstr "" #. module: hr_timesheet_sheet -#: model:process.transition,name:hr_timesheet_sheet.process_transition_phonecallencoding0 -msgid "Phone call encoding" +#: model:process.transition,note:hr_timesheet_sheet.process_transition_reviewofwork0 +msgid "Review of your work at the end of the day" msgstr "" #. module: hr_timesheet_sheet diff --git a/addons/idea/i18n/idea.pot b/addons/idea/i18n/idea.pot index c4e307c15f2..e42cf21fa69 100644 --- a/addons/idea/i18n/idea.pot +++ b/addons/idea/i18n/idea.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/l10n_be.pot b/addons/l10n_be/i18n/l10n_be.pot index 79abbf62be3..ae4eff62040 100644 --- a/addons/l10n_be/i18n/l10n_be.pot +++ b/addons/l10n_be/i18n/l10n_be.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/l10n_chart_uk_minimal.pot b/addons/l10n_chart_uk_minimal/i18n/l10n_chart_uk_minimal.pot index 0fa9b86526d..bb9938514cb 100644 --- a/addons/l10n_chart_uk_minimal/i18n/l10n_chart_uk_minimal.pot +++ b/addons/l10n_chart_uk_minimal/i18n/l10n_chart_uk_minimal.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/l10n_fr.pot b/addons/l10n_fr/i18n/l10n_fr.pot index 0dab0a19127..7a37795382f 100644 --- a/addons/l10n_fr/i18n/l10n_fr.pot +++ b/addons/l10n_fr/i18n/l10n_fr.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,13 +21,24 @@ msgid "Receivable" msgstr "" #. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_equity -msgid "Equity" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_immobilisations -msgid "Immobilisations" +#: field:l10n.fr.report,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr +#: model:account.account.type,name:l10n_fr.account_type_stocks +msgid "Actif circulant" +msgstr "" + +#. module: l10n_fr +#: model:ir.actions.todo,note:l10n_fr.config_call_account_template +msgid "Generate Chart of Accounts from a Chart Template. You will be asked to pass the name of the company, the chart template to follow, the no. of digits to generate the code for your accounts and Bank account, currency to create Journals. Thus,the pure copy of chart Template is generated.\n" +" This is the same wizard that runs from Financial Management/Configuration/Financial Accounting/Financial Accounts/Generate Chart of Accounts from a Chart Template." msgstr "" #. module: l10n_fr @@ -35,6 +46,12 @@ msgstr "" msgid "Print Balance Sheet" msgstr "" +#. module: l10n_fr +#: model:ir.actions.wizard,name:l10n_fr.wizard_l10n_fr_cdr_report +#: model:ir.ui.menu,name:l10n_fr.menu_action_cdr +msgid "Compte de resultat" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_asset msgid "Asset" @@ -45,6 +62,22 @@ msgstr "" msgid "Income" msgstr "" +#. module: l10n_fr +#: wizard_button:l10n.fr.bilan.report,init,report:0 +#: wizard_button:l10n.fr.cdr.report,init,report:0 +msgid "Print" +msgstr "" + +#. module: l10n_fr +#: model:ir.model,name:l10n_fr.model_l10n_fr_report +msgid "Report for l10n_fr" +msgstr "" + +#. module: l10n_fr +#: wizard_view:l10n.fr.bilan.report,init:0 +msgid "Select year" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_dettes msgid "Dettes long terme" @@ -55,16 +88,39 @@ msgstr "" msgid "Provisions" msgstr "" +#. module: l10n_fr +#: model:ir.actions.act_window,name:l10n_fr.action_l10n_fr_line_tree +#: model:ir.ui.menu,name:l10n_fr.menu_l10n_fr_line_tree +#: view:l10n.fr.line:0 +msgid "Entrées" +msgstr "" + #. module: l10n_fr #: wizard_field:account.chart.report,init,company_id:0 msgid "Company" msgstr "" +#. module: l10n_fr +#: model:ir.actions.wizard,name:l10n_fr.wizard_l10n_fr_bilan_report +#: model:ir.ui.menu,name:l10n_fr.menu_action_bilan +msgid "Bilan" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_payable msgid "Payable" msgstr "" +#. module: l10n_fr +#: view:l10n.fr.report:0 +msgid "Rapport" +msgstr "" + +#. module: l10n_fr +#: field:l10n.fr.line,report_id:0 +msgid "Report" +msgstr "" + #. module: l10n_fr #: constraint:account.tax.code.template:0 msgid "Error ! You can not create recursive Tax Codes." @@ -75,16 +131,47 @@ msgstr "" msgid "Engagements" msgstr "" +#. module: l10n_fr +#: model:ir.model,name:l10n_fr.model_l10n_fr_line +msgid "Report Lines for l10n_fr" +msgstr "" + #. module: l10n_fr #: wizard_field:account.chart.report,init,target_move:0 msgid "Target Moves" msgstr "" +#. module: l10n_fr +#: model:ir.ui.menu,name:l10n_fr.menu_synthesis +msgid "Documents de synthèse" +msgstr "" + +#. module: l10n_fr +#: field:l10n.fr.line,definition:0 +msgid "Definition" +msgstr "" + +#. module: l10n_fr +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: l10n_fr +#: field:l10n.fr.line,name:0 +#: field:l10n.fr.report,name:0 +msgid "Name" +msgstr "" + #. module: l10n_fr #: selection:account.chart.report,init,target_move:0 msgid "All Posted Entries" msgstr "" +#. module: l10n_fr +#: field:l10n.fr.report,line_ids:0 +msgid "Lines" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_cash msgid "Cash" @@ -101,8 +188,19 @@ msgid "Comptes spéciaux" msgstr "" #. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_stocks -msgid "Actif circulant" +#: model:ir.actions.act_window,name:l10n_fr.action_l10n_fr_report_tree +#: model:ir.ui.menu,name:l10n_fr.menu_l10n_fr_report_tree +msgid "Rapports" +msgstr "" + +#. module: l10n_fr +#: model:account.account.type,name:l10n_fr.account_type_equity +msgid "Equity" +msgstr "" + +#. module: l10n_fr +#: model:account.account.type,name:l10n_fr.account_type_immobilisations +msgid "Immobilisations" msgstr "" #. module: l10n_fr @@ -120,20 +218,24 @@ msgstr "" msgid "Expense" msgstr "" +#. module: l10n_fr +#: wizard_view:l10n.fr.cdr.report,init:0 +msgid "Select period" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_view msgid "View" msgstr "" #. module: l10n_fr -#: model:ir.actions.todo,note:l10n_fr.config_call_account_template -msgid "Generate Chart of Accounts from a Chart Template. You will be asked to pass the name of the company, the chart template to follow, the no. of digits to generate the code for your accounts and Bank account, currency to create Journals. Thus,the pure copy of chart Template is generated.\n" -"This is the same wizard that runs from Financial Management/Configuration/Financial Accounting/Financial Accounts/Generate Chart of Accounts from a Chart Template." +#: model:account.account.type,name:l10n_fr.account_type_stock +msgid "Stocks" msgstr "" #. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_stock -msgid "Stocks" +#: model:ir.ui.menu,name:l10n_fr.menu_synthesis_config +msgid "Configuration" msgstr "" #. module: l10n_fr @@ -149,11 +251,15 @@ msgstr "" #. module: l10n_fr #: wizard_field:account.chart.report,init,fiscalyear:0 +#: wizard_field:l10n.fr.bilan.report,init,fiscalyear:0 +#: wizard_field:l10n.fr.cdr.report,init,fiscalyear:0 msgid "Fiscal year" msgstr "" #. module: l10n_fr #: wizard_button:account.chart.report,init,end:0 +#: wizard_button:l10n.fr.bilan.report,init,end:0 +#: wizard_button:l10n.fr.cdr.report,init,end:0 msgid "Cancel" msgstr "" @@ -162,6 +268,11 @@ msgstr "" msgid "Cloture" msgstr "" +#. module: l10n_fr +#: field:l10n.fr.line,code:0 +msgid "Variable Name" +msgstr "" + #. module: l10n_fr #: selection:account.chart.report,init,target_move:0 msgid "All Entries" diff --git a/addons/l10n_lu/i18n/l10n_lu.pot b/addons/l10n_lu/i18n/l10n_lu.pot index b0b237074b1..bd50bf403d3 100644 --- a/addons/l10n_lu/i18n/l10n_lu.pot +++ b/addons/l10n_lu/i18n/l10n_lu.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/membership.pot b/addons/membership/i18n/membership.pot index 949cd25257e..5537feb13bc 100644 --- a/addons/membership/i18n/membership.pot +++ b/addons/membership/i18n/membership.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/mrp.pot b/addons/mrp/i18n/mrp.pot index c9dac23a220..67664d17e5e 100644 --- a/addons/mrp/i18n/mrp.pot +++ b/addons/mrp/i18n/mrp.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,11 +35,6 @@ msgstr "" msgid "Revision" msgstr "" -#. module: mrp -#: model:process.node,name:mrp.process_node_stockableorder0 -msgid "Stockable Order" -msgstr "" - #. module: mrp #: model:ir.actions.wizard,name:mrp.wiz_mrp_proc2 #: model:ir.ui.menu,name:mrp.menu_wiz_mrp_proc2 @@ -62,11 +57,6 @@ msgstr "" msgid "Finnished Products" msgstr "" -#. module: mrp -#: model:process.node,note:mrp.process_node_maketostock1 -msgid "If Procurement is make to stock" -msgstr "" - #. module: mrp #: rml:bom.structure:0 msgid "UoM" @@ -128,6 +118,11 @@ msgstr "" msgid "Set / Pack" msgstr "" +#. module: mrp +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + #. module: mrp #: help:res.company,security_lead:0 msgid "This is the days added to what you promise to customers for security purpose" @@ -198,7 +193,7 @@ msgid "Packing Exception" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_requestforquotation2 +#: model:process.node,note:mrp.process_node_orderrfq0 msgid "A purchase order is created for a sub-contracting demand." msgstr "" @@ -212,6 +207,11 @@ msgstr "" msgid "Analytic Accounting" msgstr "" +#. module: mrp +#: model:process.node,note:mrp.process_node_servicemts0 +msgid "Do nothing" +msgstr "" + #. module: mrp #: code:addons/mrp/report/price.py:0 #, python-format @@ -267,7 +267,7 @@ msgid "Status" msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_stockableproductionorder0 +#: model:process.transition,name:mrp.process_transition_stockproduction0 msgid "Stockable Production Order" msgstr "" @@ -282,7 +282,7 @@ msgid "This wizard will schedule procurements." msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_stockablerequest0 +#: model:process.transition,name:mrp.process_transition_stockrfq0 msgid "Stockable Request" msgstr "" @@ -292,6 +292,11 @@ msgstr "" msgid "Workcenter name" msgstr "" +#. module: mrp +#: model:process.node,name:mrp.process_node_serviceonorder0 +msgid "Service on Order" +msgstr "" + #. module: mrp #: help:stock.warehouse.orderpoint,product_max_qty:0 #: help:stock.warehouse.orderpoint,product_min_qty:0 @@ -299,7 +304,7 @@ msgid "When the virtual stock goes belong the Min Quantity, Open ERP generates a msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_stockablemaketostock0 +#: model:process.transition,name:mrp.process_transition_stockmts0 msgid "Stockable Make to Stock" msgstr "" @@ -361,7 +366,7 @@ msgid "Production orders" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_stockableproductionorder0 +#: model:process.transition,note:mrp.process_transition_stockproduction0 msgid "If Procure method is Make to order and supply method is produce" msgstr "" @@ -387,8 +392,8 @@ msgid "BoM Lines" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_stockablemaketostock0 -#: model:process.transition,note:mrp.process_transition_stockablerequest0 +#: model:process.transition,note:mrp.process_transition_stockmts0 +#: model:process.transition,note:mrp.process_transition_stockrfq0 msgid "If Product type is Stockable and procure method is make to stock" msgstr "" @@ -465,7 +470,7 @@ msgid "Author" msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_stockableproductstock0 +#: model:process.transition,name:mrp.process_transition_stockproduct0 msgid "Stockable Product Stock" msgstr "" @@ -520,6 +525,11 @@ msgstr "" msgid "Reservation" msgstr "" +#. module: mrp +#: model:process.process,name:mrp.process_process_serviceproductworkflow0 +msgid "Service Product Workflow" +msgstr "" + #. module: mrp #: field:res.company,manufacturing_lead:0 msgid "Manufacturity Lead Time" @@ -564,7 +574,7 @@ msgid "Time in hours for doing one cycle." msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_stockableproductstock0 +#: model:process.transition,note:mrp.process_transition_stockproduct0 msgid "Product type is Stockable and procure method is make to stock" msgstr "" @@ -609,7 +619,8 @@ msgid "Type" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_stockableproduct0 +#: model:process.node,note:mrp.process_node_stockproduct0 +#: model:process.node,note:mrp.process_node_stockproduct1 msgid "For stockable and consumable" msgstr "" @@ -640,8 +651,9 @@ msgid "Printing date" msgstr "" #. module: mrp -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: model:process.node,name:mrp.process_node_orderrfq0 +#: model:process.node,name:mrp.process_node_rfq0 +msgid "RFQ" msgstr "" #. module: mrp @@ -656,7 +668,7 @@ msgid "Hours Cost" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_productionorder1 +#: model:process.node,note:mrp.process_node_production0 msgid "Production orders are created for the product manufacturing." msgstr "" @@ -688,12 +700,18 @@ msgid "Procurement Lines" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_servicemaketostock0 +#: model:process.transition,note:mrp.process_transition_servicemts0 msgid "If Product type is service and procure method is Make to stock" msgstr "" +#. module: mrp +#: model:process.process,name:mrp.process_process_stockableproductworkflow0 +msgid "Stockable Product Workflow" +msgstr "" + #. module: mrp #: model:process.node,note:mrp.process_node_serviceproduct0 +#: model:process.node,note:mrp.process_node_serviceproduct1 msgid "If Product type is service" msgstr "" @@ -740,12 +758,12 @@ msgid "This wizard will planify the procurement for this product. This procureme msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_maketostock0 +#: model:process.node,note:mrp.process_node_mts0 msgid "The system waits for requested products in stock." msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_serivcestockableorder0 +#: model:process.transition,name:mrp.process_transition_servicemto0 msgid "Serivce Stockable Order" msgstr "" @@ -760,7 +778,8 @@ msgid "Properties categories" msgstr "" #. module: mrp -#: model:process.node,name:mrp.process_node_stockableproduct0 +#: model:process.node,name:mrp.process_node_stockproduct0 +#: model:process.node,name:mrp.process_node_stockproduct1 msgid "Stockable Product" msgstr "" @@ -790,8 +809,8 @@ msgid "Property Group" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_billofmaterialrouting0 -msgid "An entry is being made from billing material to routing." +#: field:mrp.bom,bom_id:0 +msgid "Parent BoM" msgstr "" #. module: mrp @@ -835,7 +854,7 @@ msgid "Machine" msgstr "" #. module: mrp -#: model:process.node,name:mrp.process_node_maketostock1 +#: model:process.node,name:mrp.process_node_servicemts0 msgid "Make to stock" msgstr "" @@ -952,7 +971,7 @@ msgid "Time Efficiency" msgstr "" #. module: mrp -#: model:process.node,name:mrp.process_node_stockablestock0 +#: model:process.node,name:mrp.process_node_stock0 msgid "Stockable Stock" msgstr "" @@ -997,12 +1016,6 @@ msgstr "" msgid "Per week" msgstr "" -#. module: mrp -#: model:process.node,name:mrp.process_node_requestforquotation1 -#: model:process.node,name:mrp.process_node_requestforquotation2 -msgid "Request For Quotation" -msgstr "" - #. module: mrp #: wizard_button:mrp.procurement.compute.all,init,compute:0 #: wizard_button:mrp.procurement.compute,init,compute:0 @@ -1011,7 +1024,7 @@ msgid "Compute Procurements" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_stockablestock0 +#: model:process.node,note:mrp.process_node_stock0 msgid "Wait for available products for reservation" msgstr "" @@ -1078,7 +1091,7 @@ msgid "Orderpoint minimum rule" msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_servicemaketostock0 +#: model:process.transition,name:mrp.process_transition_servicemts0 msgid "Service Make to Stock" msgstr "" @@ -1134,12 +1147,12 @@ msgid "Procurement orders" msgstr "" #. module: mrp -#: model:process.node,name:mrp.process_node_maketostock0 +#: model:process.node,name:mrp.process_node_mts0 msgid "Make to Stock" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_serivcestockableorder0 +#: model:process.transition,note:mrp.process_transition_servicemto0 msgid "If product type is service and procure method is Make to order" msgstr "" @@ -1465,7 +1478,7 @@ msgid "Source Location" msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_stockableorderrequest0 +#: model:process.transition,name:mrp.process_transition_servicerfq0 msgid "Stockable Order Request" msgstr "" @@ -1486,7 +1499,7 @@ msgid "numeric indices" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_stockableorderrequest0 +#: model:process.transition,note:mrp.process_transition_servicerfq0 msgid "If Procure method is Make to order and supply method is buy" msgstr "" @@ -1557,8 +1570,8 @@ msgstr "" #: model:ir.actions.report.xml,name:mrp.report_mrp_production_report #: field:mrp.production.product.line,production_id:0 #: field:mrp.production.workcenter.line,production_id:0 +#: model:process.node,name:mrp.process_node_production0 #: model:process.node,name:mrp.process_node_productionorder0 -#: model:process.node,name:mrp.process_node_productionorder1 msgid "Production Order" msgstr "" @@ -1654,7 +1667,7 @@ msgid "Recreate Picking" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_stockableorder0 +#: model:process.node,note:mrp.process_node_serviceonorder0 msgid "If procurement is make to order" msgstr "" @@ -1749,7 +1762,7 @@ msgid "New Production Order" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_requestforquotation1 +#: model:process.node,note:mrp.process_node_rfq0 msgid "A Request for Quotation is created and sent to the supplier." msgstr "" @@ -1803,8 +1816,8 @@ msgid "Procurement Reason" msgstr "" #. module: mrp -#: field:mrp.bom,bom_id:0 -msgid "Parent BoM" +#: model:process.transition,note:mrp.process_transition_billofmaterialrouting0 +msgid "An entry is being made from billing material to routing." msgstr "" #. module: mrp @@ -1889,6 +1902,7 @@ msgstr "" #. module: mrp #: model:process.node,name:mrp.process_node_serviceproduct0 +#: model:process.node,name:mrp.process_node_serviceproduct1 msgid "Service Product" msgstr "" diff --git a/addons/mrp_operations/i18n/mrp_operations.pot b/addons/mrp_operations/i18n/mrp_operations.pot index 57ba06b9f8f..6c26347edda 100644 --- a/addons/mrp_operations/i18n/mrp_operations.pot +++ b/addons/mrp_operations/i18n/mrp_operations.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_startoperation0 +msgid "Start Operation" +msgstr "" + #. module: mrp_operations #: selection:mrp.production.workcenter.line,state:0 msgid "In Progress" @@ -32,6 +37,16 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_startoperation0 +msgid "Operation is started" +msgstr "" + +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_productionorder0 +msgid "Production Order" +msgstr "" + #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Start working" @@ -43,9 +58,9 @@ msgid "mrp_operations.operation.code" msgstr "" #. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Production Order Cannot start in [%s] state" +#: model:process.node,note:mrp_operations.process_node_canceloperation0 +#: model:process.transition,note:mrp_operations.process_transition_startcanceloperation0 +msgid "Operation is cancelled" msgstr "" #. module: mrp_operations @@ -74,6 +89,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_workorder0 +msgid "Work Center" +msgstr "" + #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Set Draft" @@ -115,6 +135,11 @@ msgstr "" msgid "Product" msgstr "" +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_startcanceloperation0 +msgid "Start Cancel Operation" +msgstr "" + #. module: mrp_operations #: selection:mrp_operations.operation.code,start_stop:0 #: view:mrp.production.workcenter.line:0 @@ -153,6 +178,11 @@ msgstr "" msgid "Operation is already finished !" msgstr "" +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_startdoneoperation0 +msgid "Start Done Operation" +msgstr "" + #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -171,6 +201,16 @@ msgstr "" msgid "Sorry!" msgstr "" +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_productionorder0 +msgid "Production order for any products" +msgstr "" + +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_workstartoperation0 +msgid "From work order, define the cycles and hour for creating product" +msgstr "" + #. module: mrp_operations #: field:mrp_operations.operation.code,name:0 msgid "Operation Name" @@ -198,6 +238,12 @@ msgstr "" msgid "This is delay between operation start and stop in this workcenter" msgstr "" +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:0 +#, python-format +msgid "Production Order Cannot start in [%s] state" +msgstr "" + #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_operation_action msgid "Work Order Events Using Bar Codes" @@ -219,10 +265,21 @@ msgstr "" msgid "Operation is not started yet !" msgstr "" +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_canceloperation0 +msgid "Cancel Operation" +msgstr "" + #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:0 #, python-format -msgid "Error!" +msgid " You cannot Resume the operation other then Pause state !" +msgstr "" + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_doneoperation0 +#: model:process.transition,note:mrp_operations.process_transition_startdoneoperation0 +msgid "Operation is done" msgstr "" #. module: mrp_operations @@ -230,6 +287,16 @@ msgstr "" msgid "Workcenter" msgstr "" +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_workorder0 +msgid "Production Work Center" +msgstr "" + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_productionstart0 +msgid "Production start Operation" +msgstr "" + #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Graph view in hours by workcenter" @@ -263,15 +330,25 @@ msgstr "" msgid "Work Orders to Do" msgstr "" +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:0 +#, python-format +msgid "Error!" +msgstr "" + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_workstartoperation0 +msgid "Work start Operation" +msgstr "" + #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_code_barcode msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid " You cannot Resume the operation other then Pause state !" +#: model:process.node,name:mrp_operations.process_node_doneoperation0 +msgid "Done Operation" msgstr "" #. module: mrp_operations @@ -284,6 +361,11 @@ msgstr "" msgid "Canceled" msgstr "" +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_productionstart0 +msgid "From production order, create the workorder" +msgstr "" + #. module: mrp_operations #: selection:mrp_operations.operation.code,start_stop:0 msgid "Done" @@ -322,3 +404,8 @@ msgstr "" msgid "Operation has already started !' 'You can either Pause /Finish/Cancel the operation" msgstr "" +#. module: mrp_operations +#: model:process.process,name:mrp_operations.process_process_mrpoperationworkflow0 +msgid "Mrp Operation Workflow" +msgstr "" + diff --git a/addons/mrp_repair/i18n/mrp_repair.pot b/addons/mrp_repair/i18n/mrp_repair.pot index 13c9685d9c7..27e33436580 100644 --- a/addons/mrp_repair/i18n/mrp_repair.pot +++ b/addons/mrp_repair/i18n/mrp_repair.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/mrp_subproduct.pot b/addons/mrp_subproduct/i18n/mrp_subproduct.pot index df055ad472b..213f72fc5df 100644 --- a/addons/mrp_subproduct/i18n/mrp_subproduct.pot +++ b/addons/mrp_subproduct/i18n/mrp_subproduct.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/point_of_sale.pot b/addons/point_of_sale/i18n/point_of_sale.pot index f88152c0b4d..989735624b9 100644 --- a/addons/point_of_sale/i18n/point_of_sale.pot +++ b/addons/point_of_sale/i18n/point_of_sale.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/process.pot b/addons/process/i18n/process.pot index 18f5bffec47..b3b1f83ac1b 100644 --- a/addons/process/i18n/process.pot +++ b/addons/process/i18n/process.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -107,6 +107,7 @@ msgstr "" #. module: process #: field:process.condition,model_id:0 #: field:process.node,model_id:0 +#: field:process.process,model_id:0 msgid "Object" msgstr "" @@ -204,6 +205,12 @@ msgstr "" msgid "Action ID" msgstr "" +#. module: process +#: code:addons/process/process.py:0 +#, python-format +msgid "%s - Resource: %s, State: %s" +msgstr "" + #. module: process #: selection:process.transition.action,state:0 msgid "Action" diff --git a/addons/product/i18n/product.pot b/addons/product/i18n/product.pot index 9b6eb8764dd..63375f6f74d 100644 --- a/addons/product/i18n/product.pot +++ b/addons/product/i18n/product.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,8 +36,8 @@ msgid "Service" msgstr "" #. module: product -#: field:product.pricelist.item,price_min_margin:0 -msgid "Price Min. Margin" +#: help:product.template,purchase_ok:0 +msgid "Determine if the product is visible in the list of products within a selection from a purchase order line." msgstr "" #. module: product @@ -95,12 +95,6 @@ msgstr "" msgid "Consumable" msgstr "" -#. module: product -#: model:product.category,name:product.product_category_7 -#: model:product.template,name:product.product_product_1_product_template -msgid "Onsite Intervention" -msgstr "" - #. module: product #: wizard_field:product.price_list,init,price_list:0 msgid "PriceList" @@ -157,11 +151,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: product -#: help:product.template,purchase_ok:0 -msgid "Determine if the product is visible in the list of products within a selection from a purchase order line." -msgstr "" - #. module: product #: field:product.product,lst_price:0 msgid "List Price" @@ -251,6 +240,11 @@ msgstr "" msgid "Partner section of the product form" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You can not have 2 pricelist version that overlaps!" +msgstr "" + #. module: product #: help:product.packaging,rows:0 msgid "The number of layer on a palet or box" @@ -291,8 +285,8 @@ msgid "Warning !" msgstr "" #. module: product -#: help:product.pricelist.item,product_id:0 -msgid "Set a product if this rule only apply to one product. Keep empty for all products" +#: field:product.pricelist.item,price_min_margin:0 +msgid "Price Min. Margin" msgstr "" #. module: product @@ -997,6 +991,12 @@ msgstr "" msgid "Active" msgstr "" +#. module: product +#: model:product.category,name:product.product_category_7 +#: model:product.template,name:product.product_product_1_product_template +msgid "Onsite Intervention" +msgstr "" + #. module: product #: field:product.product,price_margin:0 msgid "Variant Price Margin" @@ -1114,8 +1114,10 @@ msgid "Variable" msgstr "" #. module: product -#: help:product.template,uom_id:0 -msgid "Default Unit of Measure used for all stock operation." +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1266,6 +1268,11 @@ msgstr "" msgid "Unit Price" msgstr "" +#. module: product +#: field:product.template,warranty:0 +msgid "Warranty (months)" +msgstr "" + #. module: product #: model:process.node,name:product.process_node_supplier0 msgid "Supplier Info" @@ -1369,8 +1376,8 @@ msgid "Variants" msgstr "" #. module: product -#: field:product.template,warranty:0 -msgid "Warranty (months)" +#: help:product.template,uom_id:0 +msgid "Default Unit of Measure used for all stock operation." msgstr "" #. module: product @@ -1488,11 +1495,6 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: product #: field:product.product,virtual_available:0 msgid "Virtual Stock" @@ -1526,10 +1528,8 @@ msgid "Unit" msgstr "" #. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" +#: help:product.pricelist.item,product_id:0 +msgid "Set a product if this rule only apply to one product. Keep empty for all products" msgstr "" #. module: product diff --git a/addons/product_margin/i18n/product_margin.pot b/addons/product_margin/i18n/product_margin.pot index 3cc0dbbb58c..057dcab84a8 100644 --- a/addons/product_margin/i18n/product_margin.pot +++ b/addons/product_margin/i18n/product_margin.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/profile_accounting.pot b/addons/profile_accounting/i18n/profile_accounting.pot index 42b32fb8917..d3bc7402b0b 100644 --- a/addons/profile_accounting/i18n/profile_accounting.pot +++ b/addons/profile_accounting/i18n/profile_accounting.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/profile_association.pot b/addons/profile_association/i18n/profile_association.pot index 7e92d3a7842..6c732c1e6de 100644 --- a/addons/profile_association/i18n/profile_association.pot +++ b/addons/profile_association/i18n/profile_association.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/profile_manufacturing.pot b/addons/profile_manufacturing/i18n/profile_manufacturing.pot index 9cfe38a52f7..00161993a60 100644 --- a/addons/profile_manufacturing/i18n/profile_manufacturing.pot +++ b/addons/profile_manufacturing/i18n/profile_manufacturing.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/profile_service.pot b/addons/profile_service/i18n/profile_service.pot index dc0b2fb6f29..da4569f9348 100644 --- a/addons/profile_service/i18n/profile_service.pot +++ b/addons/profile_service/i18n/profile_service.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/project.pot b/addons/project/i18n/project.pot index 17bbd69b407..883aba6a963 100644 --- a/addons/project/i18n/project.pot +++ b/addons/project/i18n/project.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -905,11 +905,6 @@ msgstr "" msgid "Remaining Hours" msgstr "" -#. module: project -#: model:process.node,note:project.process_node_triggerinvoice0 -msgid "Trigger invoices from sale order lines (sale subflow)" -msgstr "" - #. module: project #: field:project.project,timesheet_id:0 msgid "Working Time" @@ -1033,6 +1028,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.node,note:project.process_node_triggerinvoice0 +msgid "Trigger invoices from sale order lines" +msgstr "" + #. module: project #: model:ir.actions.act_window,name:project.open_view_template_project #: model:ir.ui.menu,name:project.menu_template_project diff --git a/addons/project_gtd/i18n/project_gtd.pot b/addons/project_gtd/i18n/project_gtd.pot index e0da2f5f292..50c772b7a86 100644 --- a/addons/project_gtd/i18n/project_gtd.pot +++ b/addons/project_gtd/i18n/project_gtd.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/project_mrp.pot b/addons/project_mrp/i18n/project_mrp.pot index b03365fbb78..6c6ea81986f 100644 --- a/addons/project_mrp/i18n/project_mrp.pot +++ b/addons/project_mrp/i18n/project_mrp.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgid "For each product, on type service and on order" msgstr "" #. module: project_mrp -#: model:process.node,name:project_mrp.process_node_procuretask0 +#: model:process.node,name:project_mrp.process_node_mrptask0 #: model:process.node,name:project_mrp.process_node_procuretasktask0 msgid "Task" msgstr "" @@ -41,23 +41,13 @@ msgstr "" msgid "If procure method is Make to order and supply method is produce" msgstr "" -#. module: project_mrp -#: model:process.transition.action,name:project_mrp.process_transition_action_orderconfirmtask0 -msgid "Confirm" -msgstr "" - #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_procuretask0 msgid "Procure Task" msgstr "" #. module: project_mrp -#: model:process.transition.action,name:project_mrp.process_transition_action_taskrunprocurement0 -msgid "Run Procurement" -msgstr "" - -#. module: project_mrp -#: model:process.node,note:project_mrp.process_node_procuretask0 +#: model:process.node,note:project_mrp.process_node_mrptask0 msgid "A task is created to provide the service." msgstr "" @@ -66,23 +56,18 @@ msgstr "" msgid "Order Task" msgstr "" +#. module: project_mrp +#: model:process.node,name:project_mrp.process_node_saleordertask0 +msgid "Sale Order Task" +msgstr "" + #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_createtask0 msgid "Create Task" msgstr "" -#. module: project_mrp -#: model:process.transition.action,name:project_mrp.process_transition_action_ordercanceltask0 -msgid "Cancel" -msgstr "" - #. module: project_mrp #: model:process.node,note:project_mrp.process_node_saleordertask0 -msgid "In case you sell services on sale order (task subflow)" -msgstr "" - -#. module: project_mrp -#: model:process.node,name:project_mrp.process_node_saleordertask0 -msgid "Sale_Order_Task" +msgid "In case you sell services on sale order" msgstr "" diff --git a/addons/project_timesheet/i18n/project_timesheet.pot b/addons/project_timesheet/i18n/project_timesheet.pot index ed82129e161..bc37bb725ba 100644 --- a/addons/project_timesheet/i18n/project_timesheet.pot +++ b/addons/project_timesheet/i18n/project_timesheet.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/purchase.pot b/addons/purchase/i18n/purchase.pot index 624bf655271..0d7ce24f7de 100644 --- a/addons/purchase/i18n/purchase.pot +++ b/addons/purchase/i18n/purchase.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -97,6 +97,11 @@ msgstr "" msgid "Fax :" msgstr "" +#. module: purchase +#: model:process.transition,note:purchase.process_transition_productrecept0 +msgid "Create invoice from product recept" +msgstr "" + #. module: purchase #: help:purchase.order,pricelist_id:0 msgid "The pricelist sets the currency used for this purchase order. It also computes the supplier price for the selected products/quantities." @@ -241,6 +246,11 @@ msgid "From Order: a draft invoice will be pre-generated based on the purchase o "Manual: no invoice will be pre-generated. The accountant will have to encode manually." msgstr "" +#. module: purchase +#: model:process.node,note:purchase.process_node_packinginvoice0 +msgid "Invoice based on deliveries" +msgstr "" + #. module: purchase #: rml:purchase.order:0 msgid "Net Price" @@ -268,6 +278,11 @@ msgstr "" msgid "Confirmed" msgstr "" +#. module: purchase +#: model:process.node,name:purchase.process_node_productrecept0 +msgid "Product Receipt" +msgstr "" + #. module: purchase #: model:process.transition.action,name:purchase.process_transition_action_confirmpurchaseorder0 msgid "Confirm" @@ -278,6 +293,12 @@ msgstr "" msgid "Invoice Control" msgstr "" +#. module: purchase +#: model:process.node,name:purchase.process_node_draftpurchaseorder0 +#: model:process.node,name:purchase.process_node_draftpurchaseorder1 +msgid "RFQ" +msgstr "" + #. module: purchase #: selection:purchase.order,state:0 msgid "Waiting" @@ -522,6 +543,11 @@ msgstr "" msgid "Request for quotation is proposed by the system." msgstr "" +#. module: purchase +#: model:process.transition,name:purchase.process_transition_packinginvoice0 +msgid "Packing Invoice" +msgstr "" + #. module: purchase #: model:process.transition,note:purchase.process_transition_invoicefrompackinglist0 msgid "Creates invoice from packin list" @@ -543,6 +569,11 @@ msgstr "" msgid "There is no expense account defined for this product: \"%s\" (id:%d)" msgstr "" +#. module: purchase +#: model:process.node,name:purchase.process_node_packinginvoice0 +msgid "Out Packing" +msgstr "" + #. module: purchase #: model:process.transition,note:purchase.process_transition_purchaseinvoice0 msgid "After Purchase order , Create invoice." @@ -669,8 +700,6 @@ msgstr "" #. module: purchase #: model:ir.actions.report.xml,name:purchase.report_purchase_quotation #: selection:purchase.order,state:0 -#: model:process.node,name:purchase.process_node_draftpurchaseorder0 -#: model:process.node,name:purchase.process_node_draftpurchaseorder1 msgid "Request for Quotation" msgstr "" @@ -679,6 +708,11 @@ msgstr "" msgid "Tél. :" msgstr "" +#. module: purchase +#: model:process.node,note:purchase.process_node_productrecept0 +msgid "Control invoices on receptions" +msgstr "" + #. module: purchase #: rml:purchase.order:0 msgid "Date Req." @@ -707,6 +741,11 @@ msgstr "" msgid "Description" msgstr "" +#. module: purchase +#: model:process.transition,name:purchase.process_transition_productrecept0 +msgid "Product recept invoice" +msgstr "" + #. module: purchase #: rml:purchase.quotation:0 msgid "Expected Delivery address:" @@ -801,6 +840,11 @@ msgstr "" msgid "Purchase Management" msgstr "" +#. module: purchase +#: model:process.transition,note:purchase.process_transition_packinginvoice0 +msgid "From Packing list, Create invoice." +msgstr "" + #. module: purchase #: field:purchase.order,amount_total:0 msgid "Total" diff --git a/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot b/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot index bab9d1b7a1a..64319e32df8 100644 --- a/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot +++ b/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/report_account.pot b/addons/report_account/i18n/report_account.pot index 92b71261bb2..4c317a0ac5b 100644 --- a/addons/report_account/i18n/report_account.pot +++ b/addons/report_account/i18n/report_account.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/report_analytic.pot b/addons/report_analytic/i18n/report_analytic.pot index b9a85975cbc..2c64d81e2b1 100644 --- a/addons/report_analytic/i18n/report_analytic.pot +++ b/addons/report_analytic/i18n/report_analytic.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/report_analytic_line.pot b/addons/report_analytic_line/i18n/report_analytic_line.pot index 012d254901a..743173530d8 100644 --- a/addons/report_analytic_line/i18n/report_analytic_line.pot +++ b/addons/report_analytic_line/i18n/report_analytic_line.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/report_analytic_planning.pot b/addons/report_analytic_planning/i18n/report_analytic_planning.pot index 17f49e7d4d3..044dbba0774 100644 --- a/addons/report_analytic_planning/i18n/report_analytic_planning.pot +++ b/addons/report_analytic_planning/i18n/report_analytic_planning.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/report_crm.pot b/addons/report_crm/i18n/report_crm.pot index b709034add4..ecc710d0ab6 100644 --- a/addons/report_crm/i18n/report_crm.pot +++ b/addons/report_crm/i18n/report_crm.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/report_document.pot b/addons/report_document/i18n/report_document.pot index aa634ff90d4..0dcf611c7d5 100644 --- a/addons/report_document/i18n/report_document.pot +++ b/addons/report_document/i18n/report_document.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/report_intrastat.pot b/addons/report_intrastat/i18n/report_intrastat.pot index 1eee3ee3c70..ce35bf29e90 100644 --- a/addons/report_intrastat/i18n/report_intrastat.pot +++ b/addons/report_intrastat/i18n/report_intrastat.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/report_mrp.pot b/addons/report_mrp/i18n/report_mrp.pot index 0eceaa3f690..bb10317a7ba 100644 --- a/addons/report_mrp/i18n/report_mrp.pot +++ b/addons/report_mrp/i18n/report_mrp.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/report_project.pot b/addons/report_project/i18n/report_project.pot index ee7c4fc1e64..135585803cc 100644 --- a/addons/report_project/i18n/report_project.pot +++ b/addons/report_project/i18n/report_project.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/report_purchase.pot b/addons/report_purchase/i18n/report_purchase.pot index 1b8a18f5652..bc76b08c40a 100644 --- a/addons/report_purchase/i18n/report_purchase.pot +++ b/addons/report_purchase/i18n/report_purchase.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/report_sale.pot b/addons/report_sale/i18n/report_sale.pot index 4e9ce1d1c03..7c01ac4bb9d 100644 --- a/addons/report_sale/i18n/report_sale.pot +++ b/addons/report_sale/i18n/report_sale.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/report_timesheet.pot b/addons/report_timesheet/i18n/report_timesheet.pot index f6ea239439c..bbe00ef05d7 100644 --- a/addons/report_timesheet/i18n/report_timesheet.pot +++ b/addons/report_timesheet/i18n/report_timesheet.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/sale.pot b/addons/sale/i18n/sale.pot index 36c9fc163fa..66c004fbfc4 100644 --- a/addons/sale/i18n/sale.pot +++ b/addons/sale/i18n/sale.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -153,13 +153,6 @@ msgstr "" msgid "Origin" msgstr "" -#. module: sale -#: model:process.node,name:sale.process_node_quotation0 -#: model:process.node,note:sale.process_node_saleorder0 -#: model:process.node,name:sale.process_node_saleorder0 -msgid "Ok" -msgstr "" - #. module: sale #: view:sale.order:0 msgid "Stock Moves" @@ -179,6 +172,7 @@ msgstr "" #: model:ir.model,name:sale.model_sale_order #: field:stock.picking,sale_id:0 #: view:sale.order:0 +#: model:process.node,name:sale.process_node_saleorder0 #: model:res.request.link,name:sale.req_link_sale_order msgid "Sale Order" msgstr "" @@ -610,6 +604,11 @@ msgstr "" msgid "Packing Default Policy" msgstr "" +#. module: sale +#: model:process.node,note:sale.process_node_saleorder0 +msgid "Manages the delivery and invoicing progress" +msgstr "" + #. module: sale #: field:sale.config.picking_policy,order_policy:0 msgid "Shipping Default Policy" @@ -813,6 +812,7 @@ msgstr "" #. module: sale #: selection:sale.order,state:0 +#: model:process.node,name:sale.process_node_quotation0 msgid "Quotation" msgstr "" diff --git a/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot b/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot index 64d9512b88c..7700048a7c2 100644 --- a/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot +++ b/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/sale_crm.pot b/addons/sale_crm/i18n/sale_crm.pot index e0c26b6e98d..640b9ab76e2 100644 --- a/addons/sale_crm/i18n/sale_crm.pot +++ b/addons/sale_crm/i18n/sale_crm.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/sale_journal.pot b/addons/sale_journal/i18n/sale_journal.pot index f694671ad35..2f33ed11cf8 100644 --- a/addons/sale_journal/i18n/sale_journal.pot +++ b/addons/sale_journal/i18n/sale_journal.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/scrum.pot b/addons/scrum/i18n/scrum.pot index 82a1d567d64..46f01f70c3b 100644 --- a/addons/scrum/i18n/scrum.pot +++ b/addons/scrum/i18n/scrum.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/stock.pot b/addons/stock/i18n/stock.pot index 836b795e0e2..0bb130d4ed0 100644 --- a/addons/stock/i18n/stock.pot +++ b/addons/stock/i18n/stock.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -151,11 +151,6 @@ msgstr "" msgid "Partner" msgstr "" -#. module: stock -#: model:process.node,note:stock.process_node_packinginvoice0 -msgid "Invoice based on deliveries" -msgstr "" - #. module: stock #: help:product.product,track_incoming:0 msgid "Force to use a Production Lot during receptions" @@ -277,16 +272,6 @@ msgstr "" msgid "Products Sent" msgstr "" -#. module: stock -#: model:process.node,note:stock.process_node_productrecept0 -msgid "Control invoices on receptions" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "" - #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree6 #: model:ir.ui.menu,name:stock.menu_action_picking_tree6 @@ -515,11 +500,6 @@ msgstr "" msgid "Customer Invoice" msgstr "" -#. module: stock -#: model:process.node,name:stock.process_node_packinginvoice0 -msgid "Out Packing" -msgstr "" - #. module: stock #: field:stock.location,child_ids:0 msgid "Contains" @@ -618,11 +598,6 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" -#. module: stock -#: model:process.transition,name:stock.process_transition_productrecept0 -msgid "Product recept invoice" -msgstr "" - #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -1022,11 +997,6 @@ msgstr "" msgid "STOCK_APPLY" msgstr "" -#. module: stock -#: model:process.transition,note:stock.process_transition_packinginvoice0 -msgid "From Packing list, Create invoice." -msgstr "" - #. module: stock #: code:addons/stock/wizard/inventory_merge.py:0 #, python-format @@ -1198,11 +1168,6 @@ msgstr "" msgid "Available Moves" msgstr "" -#. module: stock -#: model:process.node,name:stock.process_node_productrecept0 -msgid "Product Recept" -msgstr "" - #. module: stock #: view:stock.inventory:0 msgid "Confirm Inventory" @@ -1319,11 +1284,6 @@ msgstr "" msgid "Tracking a move" msgstr "" -#. module: stock -#: model:process.transition,note:stock.process_transition_productrecept0 -msgid "Create invoice from product recept" -msgstr "" - #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_FIND_AND_REPLACE" @@ -1738,7 +1698,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2228,11 +2188,6 @@ msgstr "" msgid "Packings" msgstr "" -#. module: stock -#: model:process.transition,name:stock.process_transition_packinginvoice0 -msgid "Packing Invoice" -msgstr "" - #. module: stock #: view:stock.location:0 msgid "Localisation" @@ -2462,6 +2417,11 @@ msgstr "" msgid "Move State" msgstr "" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_REDO" +msgstr "" + #. module: stock #: model:stock.location,name:stock.stock_location_locations msgid "Physical Locations" diff --git a/addons/stock_location/i18n/stock_location.pot b/addons/stock_location/i18n/stock_location.pot index dc81cf8d771..5f1ce4b604f 100644 --- a/addons/stock_location/i18n/stock_location.pot +++ b/addons/stock_location/i18n/stock_location.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot b/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot index 3b0f06db717..c1e13fc7d0e 100644 --- a/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot +++ b/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/subscription.pot b/addons/subscription/i18n/subscription.pot index e24b6e77782..0a756046930 100644 --- a/addons/subscription/i18n/subscription.pot +++ b/addons/subscription/i18n/subscription.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/warning.pot b/addons/warning/i18n/warning.pot index df63eea2e07..2d552bec6c3 100644 --- a/addons/warning/i18n/warning.pot +++ b/addons/warning/i18n/warning.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/wiki.pot b/addons/wiki/i18n/wiki.pot index cd63aeab57b..a1ce6803d52 100644 --- a/addons/wiki/i18n/wiki.pot +++ b/addons/wiki/i18n/wiki.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" From 14cbc5b0ccfb308c2422680d3fe8d796e2b3565f Mon Sep 17 00:00:00 2001 From: qdp Date: Tue, 30 Dec 2008 16:52:33 +0100 Subject: [PATCH 17/82] no comment :D bzr revid: qdp@tinyerp.com-20081230155233-ery4uptp5992adf3 --- .bzrignore | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .bzrignore diff --git a/.bzrignore b/.bzrignore deleted file mode 100644 index 25cee50f826..00000000000 --- a/.bzrignore +++ /dev/null @@ -1 +0,0 @@ -st From dfa35ce37625b6298b069e3c880b957cb02e5a45 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 30 Dec 2008 18:30:46 +0100 Subject: [PATCH 18/82] [IMP] better exception handling in netscv bzr revid: christophe@cobalt-20081230173046-ise36mjkxdi69q4x --- bin/netsvc.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index c3450f86c26..e3980b2ac6b 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -257,6 +257,9 @@ class Agent(object): timer.cancel() quit = classmethod(quit) + +import traceback + class xmlrpc(object): class RpcGateway(object): def __init__(self, name): @@ -268,7 +271,6 @@ class GenericXMLRPCRequestHandler: Logger().notifyChannel('XMLRPC-%s' % title, LOG_DEBUG_RPC, pformat(msg)) def _dispatch(self, method, params): - import traceback try: self.log('method', method) self.log('params', params) @@ -285,13 +287,12 @@ class GenericXMLRPCRequestHandler: return r except Exception, e: self.log('exception', e) - tb_s = reduce(lambda x, y: x+y, traceback.format_exception(sys.exc_type, sys.exc_value, sys.exc_traceback)) - s = str(e) + tb = sys.exc_info() + tb_s = "".join(traceback.format_exception(*tb)) if tools.config['debug_mode']: import pdb - tb = sys.exc_info()[2] - pdb.post_mortem(tb) - raise xmlrpclib.Fault(s, tb_s) + pdb.post_mortem(tb[2]) + raise xmlrpclib.Fault(str(e), tb_s) class SSLSocket(object): def __init__(self, socket): @@ -389,10 +390,10 @@ class TinySocketClientThread(threading.Thread): self._logger = Logger() def log(self, msg): - self._logger.notifyChannel('NETRPC', LOG_DEBUG_RPC, msg) + from pprint import pformat + self._logger.notifyChannel('NETRPC', LOG_DEBUG_RPC, pformat(msg)) def run(self): - import traceback import time import select self.running = True @@ -421,14 +422,13 @@ class TinySocketClientThread(threading.Thread): self.log(result_from_method) ts.mysend(result_from_method) except Exception, e: - print repr(e) - tb_s = reduce(lambda x, y: x+y, traceback.format_exception(sys.exc_type, sys.exc_value, sys.exc_traceback)) + self.log(e) + tb = sys.exc_info() + tb_s = "".join(traceback.format_exception(*tb)) if tools.config['debug_mode']: import pdb - tb = sys.exc_info()[2] - pdb.post_mortem(tb) - e = Exception(str(e)) - self.log(str(e)) + pdb.post_mortem(tb[2]) + e = Exception(tools.ustr(e)) # avoid problems of pickeling ts.mysend(e, exception=True, traceback=tb_s) except: pass From f85e82029734541302f21592e75a2585339d3c56 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Tue, 30 Dec 2008 18:58:25 +0100 Subject: [PATCH 19/82] [IMP] Shutdown all handlers of the logger bzr revid: stephane@tinyerp.com-20081230175825-tp4zb02tj7py0pb4 --- bin/netsvc.py | 5 ++++- bin/openerp-server.py | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index e3980b2ac6b..1d5a3e5e9d3 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -137,7 +137,7 @@ class LocalService(Service): raise def service_exist(name): - return (name in _service) and bool(_service[name]) + return _service.get(name, False) LOG_NOTSET = 'notset' LOG_DEBUG_RPC = 'debug_rpc' @@ -230,6 +230,9 @@ class Logger(object): elif result: level_method(result[0]) + def shutdown(self): + logging.shutdown() + import tools init_logger() diff --git a/bin/openerp-server.py b/bin/openerp-server.py index 8065f1ff7bd..6731e362772 100755 --- a/bin/openerp-server.py +++ b/bin/openerp-server.py @@ -189,6 +189,7 @@ def handler(signum, _): os.unlink(tools.config['pidfile']) logger.notifyChannel('shutdown', netsvc.LOG_INFO, "Shutdown Server! - %s" % ( SIGNALS[signum], )) + logger.shutdown() sys.exit(0) for signum in SIGNALS: From 9fb0c227f181feddba0837023e6945d27087c923 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 30 Dec 2008 22:35:12 +0100 Subject: [PATCH 20/82] [FIX] oops bzr revid: christophe@cobalt-20081230213512-8gg0vdk33ud5pmfl --- bin/addons/base/ir/ir_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/addons/base/ir/ir_model.py b/bin/addons/base/ir/ir_model.py index 62b2017d614..f73fba550e9 100644 --- a/bin/addons/base/ir/ir_model.py +++ b/bin/addons/base/ir/ir_model.py @@ -550,7 +550,7 @@ class ir_model_data(osv.osv): if not modules: return True modules = list(modules) - module_in = "%s" * len(modules) + module_in = ",".join(["%s"] * len(modules)) cr.execute('select id,name,model,res_id,module from ir_model_data where module in (' + module_in + ') and noupdate=%s', modules + [False]) wkf_todo = [] for (id, name, model, res_id,module) in cr.fetchall(): From 9025372c57bc12d9a10e03264289e050c0d987a5 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Wed, 31 Dec 2008 10:19:11 +0530 Subject: [PATCH 21/82] [correction]Added __terp__.py test on base_module_quality bzr revid: jvo@tinyerp.com-20081231044911-cepcng981kbikgu8 --- .../base_module_quality/terp_test/__init__.py | 24 ++++ .../terp_test/terp_test.py | 110 ++++++++++++++++++ 2 files changed, 134 insertions(+) create mode 100644 addons/base_module_quality/terp_test/__init__.py create mode 100644 addons/base_module_quality/terp_test/terp_test.py diff --git a/addons/base_module_quality/terp_test/__init__.py b/addons/base_module_quality/terp_test/__init__.py new file mode 100644 index 00000000000..79850888f41 --- /dev/null +++ b/addons/base_module_quality/terp_test/__init__.py @@ -0,0 +1,24 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_quality/terp_test/terp_test.py b/addons/base_module_quality/terp_test/terp_test.py new file mode 100644 index 00000000000..e3cb58d7a6b --- /dev/null +++ b/addons/base_module_quality/terp_test/terp_test.py @@ -0,0 +1,110 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + +import os +import tools + +from base_module_quality import base_module_quality +import pooler +import re + +class quality_test(base_module_quality.abstract_quality_check): + + def __init__(self): + ''' + This test checks the quality of __terp__.py file in the selected module. + ''' + super(quality_test, self).__init__() + self.bool_installed_only = True + return None + + def run_test(self, cr, uid, module_path, module_state): + no_terp = False + list_files = os.listdir(module_path) + for i in list_files: + path = os.path.join(module_path, i) + if os.path.isdir(path): + for j in os.listdir(path): + list_files.append(os.path.join(i, j)) + + n = 0 + score = 0.0 + feel_good_factor = 0 + feel_bad_factor = 0 + detail = "\n===TERP Test===\n" + summary = "\n===TERP Test===:\n" + error = False + + if '__terp__.py' not in list_files: + no_terp = True + + if no_terp: + summary += """ +The module does not contain the __terp__.py file.\n\n """ + header_list = "" + error = True + self.result = self.format_table(test='terp', data_list=[summary, detail, error]) + return None + + terp_file = os.path.join(module_path,'__terp__.py') + res = eval(tools.file_open(terp_file).read()) + + terp_keys = ['category', 'name', 'description', 'author', 'website', 'update_xml', 'init_xml', 'depends', 'version', 'active', 'installable', 'demo_xml'] + + for key in terp_keys: + if key in res: + feel_good_factor += 1 + if isinstance(res[key],(str,unicode)): + if not res[key]: + feel_bad_factor += 1 + else: + if key == 'description' and res[key] and len(str(res[key]))>=25: + feel_good_factor += 1 + if res['description'].count('\n') >= 4:# description contains minimum 5 lines + feel_good_factor += 1 + if key == 'website': + ptrn = re.compile('https?://[\w\.]*') # reg ex matching on temporary basis. + result = ptrn.search(str(res[key])) + if result: + feel_good_factor += 1 + else: + feel_bad_factor += 1 + + self.score = str(round((feel_good_factor * 10) / float(feel_good_factor + feel_bad_factor),2)) +# if not self.bool_installed_only or module_state=="installed": + summary += """ +This test checks if the module satisfies the current coding standard for __terp__.py file used by OpenERP. + +""" + "Score: " + str(self.score) + "/10\n" + +# else: +# summary += """ +#The module has to be installed before running this test.\n\n """ +# header_list = "" +# error = True + + detail += "__terp__.py : "+ str(self.score) + "/10\n" + self.result = self.format_table(test='terp', data_list=[summary, detail, error]) + return None + + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file From 10243911daeb29ee4592969fa74461149b153ebe Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Wed, 31 Dec 2008 11:58:33 +0530 Subject: [PATCH 22/82] [fix]Overdue report on non-addressial partners bzr revid: jvo@tinyerp.com-20081231062833-12ksxl8snkmd0psk --- addons/account/report/overdue.py | 16 +++++++++++++++- addons/account/report/overdue.rml | 12 +++++------- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/addons/account/report/overdue.py b/addons/account/report/overdue.py index 736a4a78138..633fcd6a0a0 100644 --- a/addons/account/report/overdue.py +++ b/addons/account/report/overdue.py @@ -38,11 +38,25 @@ class Overdue(report_sxw.rml_parse): }) def _adr_get(self, partner, type): + res = [] res_partner = pooler.get_pool(self.cr.dbname).get('res.partner') res_partner_address = pooler.get_pool(self.cr.dbname).get('res.partner.address') addresses = res_partner.address_get(self.cr, self.uid, [partner.id], [type]) adr_id = addresses and addresses[type] or False - return adr_id and res_partner_address.read(self.cr, self.uid, [adr_id])[0] or False + result = { + 'name': False, + 'street': False, + 'city' : False, + 'zip' : False, + 'country_id' : False, + } + if adr_id: + result = res_partner_address.read(self.cr, self.uid, [adr_id]) + result[0]['country_id'] = result[0]['country_id'] and result[0]['country_id'][1] or False + return result + + res.append(result) + return res def _tel_get(self,partner): if not partner: diff --git a/addons/account/report/overdue.rml b/addons/account/report/overdue.rml index aa0d111b28f..70f5fd09b25 100644 --- a/addons/account/report/overdue.rml +++ b/addons/account/report/overdue.rml @@ -90,16 +90,14 @@ - - - + [[ repeatIn(adr_get(o, 'invoice'),'addr') ]] [[ o.name ]] - [[ adr_get(o, 'invoice')['name'] ]] - [[ adr_get(o, 'invoice')['street'] ]] - [[ adr_get(o, 'invoice')['zip'] ]] [[ adr_get(o, 'invoice')['city'] ]] - [[ adr_get(o, 'invoice')['country_id'] and adr_get(o, 'invoice')['country_id'][1] ]] + [[ addr['name'] ]] + [[ addr['street'] ]] + [[ addr['zip'] ]] [[ addr['city'] ]] + [[ addr['country_id'] ]] From 26e5c8e26b3c28bc8a40d65d1eff33dab945dda1 Mon Sep 17 00:00:00 2001 From: "hda (Tiny)" Date: Wed, 31 Dec 2008 15:14:49 +0530 Subject: [PATCH 23/82] bugfix bzr revid: hda@tinyerp.com-20081231094449-t31awtrkdc7vj1f8 --- addons/account/account.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/account/account.py b/addons/account/account.py index f218e5b5bd7..c969496beae 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -2070,10 +2070,12 @@ class wizard_multi_charts_accounts(osv.osv_memory): #create the account_account for this bank journal tmp = self.pool.get('res.partner.bank').name_get(cr, uid, [line.acc_no.id])[0][1] dig = obj_multi.code_digits + print ">>>>",dig + print ">>>",ref_acc_bank.code.ljust(dig,'0') vals={ 'name': line.acc_no.bank and line.acc_no.bank.name+' '+tmp or tmp, 'currency_id': line.currency_id and line.currency_id.id or False, - 'code': str(int(ref_acc_bank.code.ljust(dig,'0')) + current_num), + 'code': str(ref_acc_bank.code.ljust(dig,'0') + str(current_num)), 'type': 'other', 'user_type': account_template.user_type and account_template.user_type.id or False, 'reconcile': True, From 399fb0549d3cd094166f055ca8d0e27a88c0e060 Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Wed, 31 Dec 2008 15:24:58 +0530 Subject: [PATCH 24/82] hr_holidays: improvements, bug fix bzr revid: mra@tinyerp.com-20081231095458-t82mtptmwna19p9p --- addons/hr_holidays/hr.py | 71 ++++++++++++++++++++++++++++--- addons/hr_holidays/hr_view.xml | 77 +++++++++++++++++++++++++--------- 2 files changed, 122 insertions(+), 26 deletions(-) diff --git a/addons/hr_holidays/hr.py b/addons/hr_holidays/hr.py index 0ec16766445..4e19e15f2ee 100644 --- a/addons/hr_holidays/hr.py +++ b/addons/hr_holidays/hr.py @@ -87,6 +87,31 @@ class hr_holidays(osv.osv): } _order = 'date_from desc' + def create(self, cr, uid, vals, *args, **kwargs): + id_holiday = super(hr_holidays, self).create(cr, uid, vals, *args, **kwargs) + self._create_log(cr, uid, [id_holiday]) + return id_holiday + + def _create_log(self, cr, uid, ids): + holidays_user_obj = self.pool.get('hr.holidays.per.user') + list_request = [] + holidays_data = self.browse(cr, uid, ids[0]) + datas = { + 'employee_id' : holidays_data.employee_id.id, + 'name' : holidays_data.state, + 'holiday_status' : holidays_data.holiday_status.id, + 'holiday_req_id' : holidays_data.id, + 'nb_holidays' : holidays_data.number_of_days + } + ids_log = self.pool.get('hr.holidays.log').create(cr, uid, datas) + ids_user_hdays = holidays_user_obj.search(cr, uid, [('employee_id', '=', holidays_data.employee_id.id),('holiday_status', '=', holidays_data.holiday_status.id)]) + for hdays in holidays_user_obj.browse(cr, uid, ids_user_hdays): + for req in hdays.history: + list_request.append(req.id) + list_request.append(ids_log) + holidays_user_obj.write(cr, uid, ids_user_hdays, {'history' : [(6,0,list_request)]}) + return True + def onchange_date_to(self, cr, uid, ids, date_from, date_to): result = {} if date_from: @@ -108,19 +133,19 @@ class hr_holidays(osv.osv): 'state':'draft', 'manager_id': False }) + self._create_log(cr, uid, ids) return True def holidays_validate(self, cr, uid, ids, *args): self.check_holidays(cr,uid,ids) - vals = { 'state':'validate', } ids2 = self.pool.get('hr.employee').search(cr, uid, [('user_id','=', uid)]) if ids2: vals['manager_id'] = ids2[0] - self.write(cr, uid, ids, vals) + self._create_log(cr, uid, ids) return True def holidays_confirm(self, cr, uid, ids, *args): @@ -132,6 +157,7 @@ class hr_holidays(osv.osv): 'state':'confirm', 'user_id': user, }) + self._create_log(cr, uid, ids) return True def holidays_refuse(self, cr, uid, ids, *args): @@ -140,6 +166,7 @@ class hr_holidays(osv.osv): 'state':'refuse', 'manager_id':ids2[0] }) + self._create_log(cr, uid, ids) return True def holidays_cancel(self, cr, uid, ids, *args): @@ -150,17 +177,22 @@ class hr_holidays(osv.osv): obj_holidays_per_user=self.pool.get('hr.holidays.per.user').browse(cr, uid,holiday_id[0]) self.pool.get('hr.holidays.per.user').write(cr,uid,obj_holidays_per_user.id,{'leaves_taken':obj_holidays_per_user.leaves_taken - record.number_of_days}) if record.case_id: - self.pool.get('crm.case').unlink(cr,uid,record.case_id.id) + if record.case_id.state <> 'draft': + raise osv.except_osv(_('Warning !'), + _('You can not cancel this holiday request. first You have to make its case in draft state.')) + else: + self.pool.get('crm.case').unlink(cr,uid,[record.case_id.id]) self.write(cr, uid, ids, { 'state':'cancel' }) - + self._create_log(cr, uid, ids) return True def holidays_draft(self, cr, uid, ids, *args): self.write(cr, uid, ids, { 'state':'draft' }) + self._create_log(cr, uid, ids) return True def check_holidays(self,cr,uid,ids): @@ -212,9 +244,17 @@ class hr_holidays_per_user(osv.osv): _description = "Holidays Per User" def _get_remaining_leaves(self, cr, uid, ids, field_name, arg=None, context={}): + obj_holiday = self.pool.get('hr.holidays') + days = 0.0 result = {} - for r in self.read(cr, uid, ids, ['max_leaves','leaves_taken']): - result[r['id']] = r['max_leaves'] - r['leaves_taken'] + for holiday_user in self.browse(cr, uid, ids): + ids_request = obj_holiday.search(cr, uid, [('employee_id', '=', holiday_user.employee_id.id),('state', '=', 'validate'),('holiday_status', '=', holiday_user.holiday_status.id)]) + if ids_request: + holidays = obj_holiday.browse(cr, uid, ids_request) + for holiday in holidays: + days += holiday.number_of_days + days = holiday_user.max_leaves - days + result[holiday_user.id] = days return result _columns = { @@ -226,6 +266,7 @@ class hr_holidays_per_user(osv.osv): 'active' : fields.boolean('Active'), 'notes' : fields.text('Notes'), 'remaining_leaves': fields.function(_get_remaining_leaves, method=True, string='Remaining Leaves', type='float'), + 'history' : fields.one2many('hr.holidays.log', 'holiday_user_id', 'History') } _defaults = { 'active' : lambda *a: True, @@ -239,5 +280,23 @@ class hr_holidays_per_user(osv.osv): hr_holidays_per_user() +class holiday_user_log(osv.osv): + _name = 'hr.holidays.log' + _description = 'hr.holidays.log' + _order = "holiday_req_id desc" + _columns = { + 'name' : fields.char('Action', size=64, readonly=True), + 'holiday_req_id' : fields.char('Holiday Request ID', size=64), + 'nb_holidays' : fields.float('Number of Holidays Requested'), + 'employee_id' : fields.many2one('hr.employee', 'Employee', readonly=True), + 'holiday_status' : fields.many2one("hr.holidays.status", "Holiday's Status", readonly=True), + 'holiday_user_id' : fields.many2one('hr.holidays.per.user', 'Holidays user'), + 'date': fields.datetime('Date'), + } + _defaults = { + 'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'), + } +holiday_user_log() + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_holidays/hr_view.xml b/addons/hr_holidays/hr_view.xml index dcf73f3e9f9..cc940075097 100644 --- a/addons/hr_holidays/hr_view.xml +++ b/addons/hr_holidays/hr_view.xml @@ -8,7 +8,7 @@ hr.holidays form -
+ @@ -17,8 +17,8 @@ - + @@ -36,10 +36,10 @@ hr.holidays.tree - hr.holidays + hr.holidays tree - + @@ -51,10 +51,40 @@ + + + hr.holidays.log.form + hr.holidays.log + form + + + + + + + + + + >hr.holidays.log.tree + hr.holidays.log + tree + + + + + + + + + + + + + hr.holidays.status.form - hr.holidays.status + hr.holidays.status form
@@ -68,15 +98,15 @@ hr.holidays.status.tree - hr.holidays.status + hr.holidays.status tree - - + + @@ -98,17 +128,24 @@ hr.holidays.per.user form - - - - - - - - - - - + + + + + + + + + + + + + + + + + +
@@ -122,7 +159,7 @@ - +
From 4d98bb97bc773396c958ccb7266aac4cb120a998 Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Wed, 31 Dec 2008 15:43:44 +0530 Subject: [PATCH 25/82] bug fix quality module bzr revid: mra@tinyerp.com-20081231101344-8948b16cxraej9nb --- .../terp_test/terp_test.py | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/addons/base_module_quality/terp_test/terp_test.py b/addons/base_module_quality/terp_test/terp_test.py index e3cb58d7a6b..474513869f8 100644 --- a/addons/base_module_quality/terp_test/terp_test.py +++ b/addons/base_module_quality/terp_test/terp_test.py @@ -53,30 +53,30 @@ class quality_test(base_module_quality.abstract_quality_check): detail = "\n===TERP Test===\n" summary = "\n===TERP Test===:\n" error = False - + if '__terp__.py' not in list_files: no_terp = True - + if no_terp: - summary += """ + summary += """ The module does not contain the __terp__.py file.\n\n """ header_list = "" error = True self.result = self.format_table(test='terp', data_list=[summary, detail, error]) return None - + terp_file = os.path.join(module_path,'__terp__.py') res = eval(tools.file_open(terp_file).read()) terp_keys = ['category', 'name', 'description', 'author', 'website', 'update_xml', 'init_xml', 'depends', 'version', 'active', 'installable', 'demo_xml'] - + for key in terp_keys: if key in res: feel_good_factor += 1 if isinstance(res[key],(str,unicode)): if not res[key]: feel_bad_factor += 1 - else: + else: if key == 'description' and res[key] and len(str(res[key]))>=25: feel_good_factor += 1 if res['description'].count('\n') >= 4:# description contains minimum 5 lines @@ -87,22 +87,22 @@ The module does not contain the __terp__.py file.\n\n """ if result: feel_good_factor += 1 else: - feel_bad_factor += 1 - - self.score = str(round((feel_good_factor * 10) / float(feel_good_factor + feel_bad_factor),2)) + feel_bad_factor += 1 + + self.score = round((feel_good_factor * 10) / float(feel_good_factor + feel_bad_factor),2) # if not self.bool_installed_only or module_state=="installed": summary += """ This test checks if the module satisfies the current coding standard for __terp__.py file used by OpenERP. """ + "Score: " + str(self.score) + "/10\n" - + # else: -# summary += """ +# summary += """ #The module has to be installed before running this test.\n\n """ # header_list = "" # error = True - - detail += "__terp__.py : "+ str(self.score) + "/10\n" + + detail += "__terp__.py : "+ str(self.score) + "/10\n" self.result = self.format_table(test='terp', data_list=[summary, detail, error]) return None From 4dd498422c5f4b1f584118e277fd48bdd5eaac28 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Wed, 31 Dec 2008 11:40:47 +0100 Subject: [PATCH 26/82] [FIX] Add the gpl.txt file bzr revid: stephane@tinyerp.com-20081231104047-5x93vo571tb3mzxd --- MANIFEST.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 9f3f31af1f1..5119ce09f57 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,8 +3,10 @@ include README include bin/import_xml.rng include bin/server.cert include bin/server.pkey +include bin/gpl.txt +include man/openerp-server.1 +include man/openerp_serverrc.5 recursive-include doc * -recursive-include man * recursive-include bin *xml *xsl *sql *rml *sxw *csv *rng graft bin/addons/ global-exclude *pyc *~ From e6bfb7ef42b4db008c8c34538d3a886979eeae59 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Wed, 31 Dec 2008 11:43:18 +0100 Subject: [PATCH 27/82] [FIX] Add missing files bzr revid: stephane@tinyerp.com-20081231104318-lwcaeiwi3g0mdoev --- MANIFEST.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index 5119ce09f57..b3992c4e4a8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,11 +1,14 @@ include rpminstall_sh.txt include README +include setup.nsi +include setup.cfg include bin/import_xml.rng include bin/server.cert include bin/server.pkey include bin/gpl.txt include man/openerp-server.1 include man/openerp_serverrc.5 +recursive-include pixmaps recursive-include doc * recursive-include bin *xml *xsl *sql *rml *sxw *csv *rng graft bin/addons/ From d530f2fca6a2a5c9ad52ad0aaafe6fc4dfceb24a Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Wed, 31 Dec 2008 11:47:32 +0100 Subject: [PATCH 28/82] [FIX] Add missing files bzr revid: stephane@tinyerp.com-20081231104732-3gj68aja6rt0wmfh --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index b3992c4e4a8..b25045b8213 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ include rpminstall_sh.txt include README +include MANIFEST.in include setup.nsi include setup.cfg include bin/import_xml.rng From c17b39b50c6a1ebdf6fe28767ee450e308ef6350 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Wed, 31 Dec 2008 11:51:30 +0100 Subject: [PATCH 29/82] =?UTF-8?q?[FIX]=20invoice=20on=20delivery=20includi?= =?UTF-8?q?ng=20service=20+=20taxes=20crashes:=20"ProgrammingError:=20can'?= =?UTF-8?q?t=20adapt"=20patch=20from=20Rapha=C3=ABl=20Valyi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit lp bug: https://launchpad.net/bugs/312673 fixed bzr revid: christophe@cobalt-20081231105130-9zedy1uvcty0lb6w --- addons/sale/stock.py | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/sale/stock.py b/addons/sale/stock.py index 0c6ec645150..9669366add3 100644 --- a/addons/sale/stock.py +++ b/addons/sale/stock.py @@ -158,6 +158,7 @@ class stock_picking(osv.osv): price_unit = sale_line.price_unit discount = sale_line.discount tax_ids = sale_line.tax_id + tax_ids = map(lambda x: x.id, tax_ids) account_analytic_id = self._get_account_analytic_invoice(cursor, user, picking, sale_line) From c9a001510cf57f3d6802337b949549acaa63398f Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Wed, 31 Dec 2008 16:35:45 +0530 Subject: [PATCH 30/82] quality module bzr revid: mra@tinyerp.com-20081231110545-5ph5aa0yndxwjttx --- addons/base_module_quality/base_module_quality.py | 5 ++++- addons/base_module_quality/method_test/method_test.py | 5 ++--- addons/base_module_quality/pylint_test/pylint_test.py | 5 ++--- addons/base_module_quality/speed_test/speed_test.py | 5 ++--- addons/base_module_quality/terp_test/terp_test.py | 10 ++++------ .../base_module_quality/wizard/module_quality_check.py | 3 ++- 6 files changed, 16 insertions(+), 17 deletions(-) diff --git a/addons/base_module_quality/base_module_quality.py b/addons/base_module_quality/base_module_quality.py index 30b40de1a87..d6dd19d3524 100644 --- a/addons/base_module_quality/base_module_quality.py +++ b/addons/base_module_quality/base_module_quality.py @@ -70,6 +70,9 @@ class abstract_quality_check(object): #This variable is use to make result of test should have more weight (Some tests are more critical than others) self.ponderation = 0.0 + #Specify test got an error on module + self.error = False + self.tests = [] self.list_folders = os.listdir(config['addons_path']+'/base_module_quality/') for item in self.list_folders: @@ -138,7 +141,7 @@ class abstract_quality_check(object): res_format['summary'] = data_list[0] elif test=='terp': res_format['summary'] = data_list[0] - res_format['detail'] = data_list[1] + res_format['detail'] = data_list[1] return res_format def add_quatation(self, x, y): diff --git a/addons/base_module_quality/method_test/method_test.py b/addons/base_module_quality/method_test/method_test.py index 3d7f2650fad..57ca26c3295 100644 --- a/addons/base_module_quality/method_test/method_test.py +++ b/addons/base_module_quality/method_test/method_test.py @@ -48,7 +48,6 @@ class quality_test(base_module_quality.abstract_quality_check): result = {} ok_count = 0 ex_count = 0 - error = False for obj in obj_list: temp = [] try: @@ -91,8 +90,8 @@ This test checks if the module classes are raising exception when calling basic The module has to be installed before running this test.\n\n """ header_list = "" - error = True - self.result = self.format_table(test='method', header=header_list, data_list=[summary,result,error]) + self.error = True + self.result = self.format_table(test='method', header=header_list, data_list=[summary,result,self.error]) return None diff --git a/addons/base_module_quality/pylint_test/pylint_test.py b/addons/base_module_quality/pylint_test/pylint_test.py index c25b884d8e9..a99c7256e3d 100644 --- a/addons/base_module_quality/pylint_test/pylint_test.py +++ b/addons/base_module_quality/pylint_test/pylint_test.py @@ -54,7 +54,6 @@ class quality_test(base_module_quality.abstract_quality_check): score = 0.0 detail = "" detail = "\n===Pylint Test===\n" - error = False for file in list_files: if file.split('.')[-1] == 'py' and not file.endswith('__init__.py') and not file.endswith('__terp__.py'): file_path = os.path.join(module_path, file) @@ -89,8 +88,8 @@ This test checks if the module satisfies the current coding standard used by Ope The module has to be installed before running this test.\n\n """ header_list = "" - error = True - self.result = self.format_table(test='pylint', data_list=[summary,detail,error]) + self.error = True + self.result = self.format_table(test='pylint', data_list=[summary,detail,self.error]) return None diff --git a/addons/base_module_quality/speed_test/speed_test.py b/addons/base_module_quality/speed_test/speed_test.py index 7db0d572624..317bb12225b 100644 --- a/addons/base_module_quality/speed_test/speed_test.py +++ b/addons/base_module_quality/speed_test/speed_test.py @@ -55,7 +55,6 @@ class quality_test(base_module_quality.abstract_quality_check): obj_ids = self.get_ids(cr, uid, obj_list) detail = "" list1 = [] - error = False for obj in obj_ids: obj_counter += 1 ids = obj_ids[obj] @@ -110,8 +109,8 @@ This test checks the speed of the module. The module has to be installed before running this test.\n\n """ header_list = "" - error = True - self.result = self.format_table(test='speed', header=header_list, data_list=[summary,list1, error]) + self.error = True + self.result = self.format_table(test='speed', header=header_list, data_list=[summary,list1,self.error]) return None # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_quality/terp_test/terp_test.py b/addons/base_module_quality/terp_test/terp_test.py index 474513869f8..202c9705b6d 100644 --- a/addons/base_module_quality/terp_test/terp_test.py +++ b/addons/base_module_quality/terp_test/terp_test.py @@ -52,7 +52,6 @@ class quality_test(base_module_quality.abstract_quality_check): feel_bad_factor = 0 detail = "\n===TERP Test===\n" summary = "\n===TERP Test===:\n" - error = False if '__terp__.py' not in list_files: no_terp = True @@ -61,8 +60,8 @@ class quality_test(base_module_quality.abstract_quality_check): summary += """ The module does not contain the __terp__.py file.\n\n """ header_list = "" - error = True - self.result = self.format_table(test='terp', data_list=[summary, detail, error]) + self.error = True + self.result = self.format_table(test='terp', data_list=[summary, detail, self.error]) return None terp_file = os.path.join(module_path,'__terp__.py') @@ -94,8 +93,7 @@ The module does not contain the __terp__.py file.\n\n """ summary += """ This test checks if the module satisfies the current coding standard for __terp__.py file used by OpenERP. -""" + "Score: " + str(self.score) + "/10\n" - +""" # else: # summary += """ #The module has to be installed before running this test.\n\n """ @@ -103,7 +101,7 @@ This test checks if the module satisfies the current coding standard for __terp_ # error = True detail += "__terp__.py : "+ str(self.score) + "/10\n" - self.result = self.format_table(test='terp', data_list=[summary, detail, error]) + self.result = self.format_table(test='terp', data_list=[summary, detail, self.error]) return None diff --git a/addons/base_module_quality/wizard/module_quality_check.py b/addons/base_module_quality/wizard/module_quality_check.py index 3bf863764ac..af8331ff40e 100644 --- a/addons/base_module_quality/wizard/module_quality_check.py +++ b/addons/base_module_quality/wizard/module_quality_check.py @@ -77,7 +77,8 @@ class wiz_quality_check(osv.osv_memory): val = test.quality_test() val.run_test(cr, uid, str(module_path), str(module_data[0].state)) string_ret += val.result['summary'] #summary tab - string_ret += "Score: " + str(val.score) + "/10\n" #val.score = val.score * val.ponderation ??? + if not val.error: + string_ret += "Score: " + str(val.score) + "/10\n" #val.score = val.score * val.ponderation ??? string_detail += val.result['detail'] # detail tab score_sum += (val.add_quatation(val.score, 10) * val.ponderation) ponderation_sum += val.ponderation From db6e7d46e9d566fd22820bb391cbce27a20f6073 Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Wed, 31 Dec 2008 13:48:01 +0100 Subject: [PATCH 31/82] bugfix bzr revid: fp@tinyerp.com-20081231124801-g16b2gi1rn2b7lhc --- addons/project_mrp/mrp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/project_mrp/mrp.py b/addons/project_mrp/mrp.py index e042068bf9b..781b1806915 100644 --- a/addons/project_mrp/mrp.py +++ b/addons/project_mrp/mrp.py @@ -41,7 +41,7 @@ class mrp_procurement(osv.osv): self.write(cr, uid, [procurement.id], {'state':'running'}) task_id = self.pool.get('project.task').create(cr, uid, { - 'name': procurement.origin+': '+procurement.name, + 'name': (procurement.origin or procurement.product_id.name) +': '+(procurement.name or ''), 'date_deadline': procurement.date_planned, 'planned_hours': procurement.product_qty, 'remaining_hours': procurement.product_qty, From 285f382b44f82cba05a82af078c53eab279cdff2 Mon Sep 17 00:00:00 2001 From: "Sofia (Open ERP)" Date: Wed, 31 Dec 2008 18:51:05 +0530 Subject: [PATCH 32/82] security rules assigned and bugfixed for crm_configuration-leads view bzr revid: sso@tinyerp.com-20081231132105-eppcbcawp5y9ad06 --- addons/base_module_quality/security/ir.model.access.csv | 3 ++- addons/crm_configuration/crm_lead_view.xml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/addons/base_module_quality/security/ir.model.access.csv b/addons/base_module_quality/security/ir.model.access.csv index 748e3895696..6471e45563c 100644 --- a/addons/base_module_quality/security/ir.model.access.csv +++ b/addons/base_module_quality/security/ir.model.access.csv @@ -1,2 +1,3 @@ "id","name","model_id:id","perm_read","perm_write","perm_create","perm_unlink" -"access_wizard_quality_check","wizard.quality.check","model_wizard_quality_check",1,1,1,1 +"access_wizard_quality_check","wizard.quality.check","model_wizard_quality_check",,1,1,1,1 +"access_quality_check_detail","quality.check.detail","model_quality_check_detail",,1,1,1,1 \ No newline at end of file diff --git a/addons/crm_configuration/crm_lead_view.xml b/addons/crm_configuration/crm_lead_view.xml index c3c84523deb..b67fd1630e0 100644 --- a/addons/crm_configuration/crm_lead_view.xml +++ b/addons/crm_configuration/crm_lead_view.xml @@ -128,7 +128,7 @@ - + From ddd8a0e2d395c15d80b5d577bee959537d4bead4 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Wed, 31 Dec 2008 18:56:45 +0530 Subject: [PATCH 33/82] minor edits bzr revid: jvo@tinyerp.com-20081231132645-x6fxa1oseq5ezfdx --- addons/account/account.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/addons/account/account.py b/addons/account/account.py index c969496beae..b6a114110ce 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -2070,8 +2070,6 @@ class wizard_multi_charts_accounts(osv.osv_memory): #create the account_account for this bank journal tmp = self.pool.get('res.partner.bank').name_get(cr, uid, [line.acc_no.id])[0][1] dig = obj_multi.code_digits - print ">>>>",dig - print ">>>",ref_acc_bank.code.ljust(dig,'0') vals={ 'name': line.acc_no.bank and line.acc_no.bank.name+' '+tmp or tmp, 'currency_id': line.currency_id and line.currency_id.id or False, From 30aad2541411b0013ed3f0f614d670a69b304945 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Wed, 31 Dec 2008 14:30:56 +0100 Subject: [PATCH 34/82] [FIX] Change the confirm button's label to "Confirm (Do Not Process Now)" lp bug: https://launchpad.net/bugs/312106 fixed bzr revid: stephane@tinyerp.com-20081231133056-sv142tvgr612wb2s --- addons/stock/stock_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/stock/stock_view.xml b/addons/stock/stock_view.xml index 1a55d855865..4fef9daa20e 100644 --- a/addons/stock/stock_view.xml +++ b/addons/stock/stock_view.xml @@ -563,7 +563,7 @@ -