From ae62d62367f9ce334a0e1af6c8af373db710bba9 Mon Sep 17 00:00:00 2001 From: Niels Huylebroeck Date: Wed, 17 Jun 2009 17:22:39 +0200 Subject: [PATCH 01/31] [FIX] Age Partner Balance report executed 7 queries per partner, reduced this a total of 7 queries in total. bzr revid: niels@bubbles-it.be-20090617152239-bixa1fvi7bqbb2i2 --- addons/account/report/aged_trial_balance.py | 138 +++++++++++++------- 1 file changed, 92 insertions(+), 46 deletions(-) diff --git a/addons/account/report/aged_trial_balance.py b/addons/account/report/aged_trial_balance.py index 447aa7a5cb8..a4e57ff3952 100644 --- a/addons/account/report/aged_trial_balance.py +++ b/addons/account/report/aged_trial_balance.py @@ -74,66 +74,112 @@ class aged_trial_report(rml_parse.rml_parse): self.total_account.append(0) # + # Build a string like (1,2,3) for easy use in SQL query + partner_ids = '(' + ','.join( [str(x['id']) for x in partners] ) + ')' + + # This dictionary will store the debit-credit for all partners, using partner_id as key. + totals = {} + self.cr.execute("SELECT partner_id, SUM(debit-credit) " \ + "FROM account_move_line AS line, account_account " \ + "WHERE (line.account_id = account_account.id) " \ + "AND (account_account.type IN %s) " \ + "AND (partner_id in %s) " \ + "AND ((reconcile_id IS NULL) " \ + "OR (reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > '%s' ))) " \ + "AND (account_account.company_id = %s) " \ + "AND account_account.active " \ + "GROUP BY partner_id" % (self.ACCOUNT_TYPE, partner_ids,form['date1'],form['company_id'])) + t = self.cr.fetchall() + for i in t: + totals[i[0]] = i[1] + + # This dictionary will store the future or past of all partners + future_past = {} + if form['direction_selection'] == 'future': + self.cr.execute("SELECT partner_id, SUM(debit-credit) " \ + "FROM account_move_line AS line, account_account " \ + "WHERE (line.account_id=account_account.id) " \ + "AND (account_account.type IN %s) " \ + "AND (COALESCE(date_maturity,date) < %s) " \ + "AND (partner_id in %s) " \ + "AND ((reconcile_id IS NULL) " \ + "OR (reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s ))) " \ + "AND (account_account.company_id = %s) " \ + "AND account_account.active " \ + "GROUP BY partner_id", (self.ACCOUNT_TYPE, form['date1'], partner_ids,form['date1'], form['company_id'])) + t = self.cr.fetchall() + for i in t: + future_past[i[0]] = i[1] + elif form['direction_selection'] == 'past': # Using elif so people could extend without this breaking + self.cr.execute("""SELECT partner_id, SUM(debit-credit) + FROM account_move_line AS line, account_account + WHERE (line.account_id=account_account.id) + AND (account_account.type IN %s) + AND (COALESCE(date_maturity,date) > '%s') + AND (partner_id in %s) + AND ((reconcile_id IS NULL) + OR (reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > '%s' ))) + AND (account_account.company_id = %s) + AND account_account.active + GROUP BY partner_id""" % (self.ACCOUNT_TYPE, form['date1'], partner_ids, form['date1'], form['company_id'])) + t = self.cr.fetchall() + for i in t: + future_past[i[0]] = i[1] + + # Use one query per period and store results in history (a list variable) + # Each history will contain : history[1] = {'': } + history = [] + for i in range(5): + self.cr.execute("""SELECT partner_id, SUM(debit-credit) + FROM account_move_line AS line, account_account + WHERE (line.account_id=account_account.id) + AND (account_account.type IN %s) + AND (COALESCE(date_maturity,date) BETWEEN '%s' AND '%s') + AND (partner_id in %s ) + AND ((reconcile_id IS NULL) + OR (reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > '%s' ))) + AND (account_account.company_id = %s) + AND account_account.active + GROUP BY partner_id""" % (self.ACCOUNT_TYPE, form[str(i)]['start'], form[str(i)]['stop'],partner_ids ,form['date1'] ,form['company_id'])) + + t = self.cr.fetchall() + d = {} + for i in t: + d[i[0]] = i[1] + history.append(d) + for partner in partners: values = {} ## If choise selection is in the future if form['direction_selection'] == 'future': - self.cr.execute("SELECT SUM(debit-credit) " \ - "FROM account_move_line AS line, account_account " \ - "WHERE (line.account_id=account_account.id) " \ - "AND (account_account.type IN " + self.ACCOUNT_TYPE + ") " \ - "AND (COALESCE(date_maturity,date) < %s) AND (partner_id=%s) " \ - "AND ((reconcile_id IS NULL) " \ - "OR (reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s ))) " \ - "AND (account_account.company_id = %s) " \ - "AND account_account.active", - (form['date1'], partner['id'],form['date1'], form['company_id'])) - before = self.cr.fetchone() + # Query here is replaced by one query which gets the all the partners their 'before' value + before = False + if future_past.has_key(partner['id']): + before = [ future_past[partner['id']] ] self.total_account[6] = self.total_account[6] + (before and before[0] or 0.0) values['direction'] = before and before[0] or 0.0 - else: - self.cr.execute("SELECT SUM(debit-credit) " \ - "FROM account_move_line AS line, account_account " \ - "WHERE (line.account_id=account_account.id) " \ - "AND (account_account.type IN " + self.ACCOUNT_TYPE + ") " \ - "AND (COALESCE(date_maturity,date) > %s) AND (partner_id=%s) " \ - "AND ((reconcile_id IS NULL) " \ - "OR (reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s ))) " \ - "AND (account_account.company_id = %s) " \ - "AND account_account.active", - (form['date1'], partner['id'],form['date1'], form['company_id'])) - after = self.cr.fetchone() + elif form['direction_selection'] == 'past': # Changed this so people could in the future create new direction_selections + # Query here is replaced by one query which gets the all the partners their 'after' value + after = False + if future_past.has_key(partner['id']): # Making sure this partner actually was found by the query + after = [ future_past[partner['id']] ] + self.total_account[6] = self.total_account[6] + (after and after[0] or 0.0) values['direction'] = after and after[0] or "" + for i in range(5): - self.cr.execute("SELECT SUM(debit-credit) " \ - "FROM account_move_line AS line, account_account " \ - "WHERE (line.account_id=account_account.id) " \ - "AND (account_account.type IN " + self.ACCOUNT_TYPE + ") " \ - "AND (COALESCE(date_maturity,date) BETWEEN %s AND %s) " \ - "AND (partner_id = %s) " \ - "AND ((reconcile_id IS NULL) " \ - "OR (reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s ))) " \ - "AND (account_account.company_id = %s) " \ - "AND account_account.active", - (form[str(i)]['start'], form[str(i)]['stop'],partner['id'],form['date1'] ,form['company_id'])) - during = self.cr.fetchone() + during = False + if history[i].has_key(partner['id']): + during = [ history[i][partner['id']] ] # Ajout du compteur self.total_account[(i)] = self.total_account[(i)] + (during and during[0] or 0) values[str(i)] = during and during[0] or "" - self.cr.execute("SELECT SUM(debit-credit) " \ - "FROM account_move_line AS line, account_account " \ - "WHERE (line.account_id = account_account.id) " \ - "AND (account_account.type IN " + self.ACCOUNT_TYPE + ") " \ - "AND (partner_id = %s) " \ - "AND ((reconcile_id IS NULL) " \ - "OR (reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s ))) " \ - "AND (account_account.company_id = %s) " \ - "AND account_account.active", - (partner['id'],form['date1'],form['company_id'])) - total = self.cr.fetchone() + + total = False + if totals.has_key( partner['id'] ): + total = [ totals[partner['id']] ] values['total'] = total and total[0] or 0.0 ## Add for total self.total_account[(i+1)] = self.total_account[(i+1)] + (total and total[0] or 0.0) From d23332eb8f3d6d9be79024f7db1d26f2c5305a26 Mon Sep 17 00:00:00 2001 From: apa-tiny Date: Mon, 24 Aug 2009 15:28:40 +0530 Subject: [PATCH 03/31] [IMP] : Auction : improved auction reports bzr revid: apa@tinyerp.com-20090824095840-6ny3zwd2uomftiwf --- addons/auction/report/bids_lots.rml | 4 ++-- addons/auction/report/bids_phones_details.rml | 2 +- addons/auction/report/catalog2.xsl | 12 ++++++------ 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/addons/auction/report/bids_lots.rml b/addons/auction/report/bids_lots.rml index 1b272090353..513846b0267 100644 --- a/addons/auction/report/bids_lots.rml +++ b/addons/auction/report/bids_lots.rml @@ -74,10 +74,10 @@ [[ o.ach_uid and o.ach_uid.name or False]] - [[o.bid_lines[0] and o.bid_lines[0].bid_id.name or False]] + [[o.bid_lines[0] and o.bid_lines[0].bid_id.name or removeParentNode('font')]] - [[o.bid_lines[0] and o.bid_lines[0].bid_id.contact_tel or False]] + [[o.bid_lines[0] and o.bid_lines[0].bid_id.contact_tel or removeParentNode('font')]] diff --git a/addons/auction/report/bids_phones_details.rml b/addons/auction/report/bids_phones_details.rml index 0c3b2d00783..c250779caaa 100644 --- a/addons/auction/report/bids_phones_details.rml +++ b/addons/auction/report/bids_phones_details.rml @@ -88,7 +88,7 @@ [[o.lot_est1]]-[[o.lot_est2]] - [[o.bid_lines[0] and o.bid_lines[0].bid_id.contact_tel or False]] + [[o.bid_lines[0] and o.bid_lines[0].bid_id.contact_tel or removeParentNode('font')]] diff --git a/addons/auction/report/catalog2.xsl b/addons/auction/report/catalog2.xsl index 8124a1f2a6b..c0d73eb333d 100755 --- a/addons/auction/report/catalog2.xsl +++ b/addons/auction/report/catalog2.xsl @@ -51,7 +51,7 @@ - + @@ -123,13 +123,13 @@ -  -   +  -   - Est. Euro + Est. Euro @@ -155,14 +155,14 @@ -  -   +  -   - Est. Euro - + Est. Euro + From 13abf174a5c4df5068c11d78295f921bb97b5b94 Mon Sep 17 00:00:00 2001 From: apa-tiny Date: Mon, 24 Aug 2009 17:21:52 +0530 Subject: [PATCH 04/31] [IMP] : Auction : improved code bzr revid: apa@tinyerp.com-20090824115152-edh256mx5sxp4d05 --- addons/auction/auction.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/addons/auction/auction.py b/addons/auction/auction.py index 4fe20c5f0bd..2598375814c 100644 --- a/addons/auction/auction.py +++ b/addons/auction/auction.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution +# OpenERP, Open Source Management Solution # Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # @@ -770,7 +770,7 @@ class auction_lots(osv.osv): 'journal_id': lot.auction_id.journal_id.id, 'partner_id': lot.ach_uid.id, 'type': 'out_invoice', - + } if invoice_number: inv['number'] = invoice_number @@ -1166,7 +1166,7 @@ class report_auction_estimation_adj_category(osv.osv): _columns = { 'lot_est1': fields.float('Minimum Estimation',select=2), 'lot_est2': fields.float('Maximum Estimation',select=2), - 'obj_price': fields.float('Adjudication price'), +# 'obj_price': fields.float('Adjudication price'), 'date': fields.date('Date', readonly=True,select=1), 'lot_type': fields.selection(_type_get, 'Object Type', size=64), 'adj_total': fields.float('Total Adjudication',select=2), @@ -1310,11 +1310,11 @@ class report_object_encoded(osv.osv): 'user_id':fields.many2one('res.users', 'User', select=1), 'estimation': fields.float('Estimation',select=2), 'date': fields.date('Create Date', required=True), - 'gross_revenue':fields.float('Gross revenue',readonly=True, select=2), - 'net_revenue':fields.float('Net revenue',readonly=True, select=2), - 'obj_margin':fields.float('Net margin', readonly=True, select=2), +# 'gross_revenue':fields.float('Gross revenue',readonly=True, select=2), +# 'net_revenue':fields.float('Net revenue',readonly=True, select=2), +# 'obj_margin':fields.float('Net margin', readonly=True, select=2), 'obj_ret':fields.integer('# obj ret', readonly=True, select=2), - 'adj':fields.integer('Adj.', readonly=True, select=2), +# 'adj':fields.integer('Adj.', readonly=True, select=2), 'obj_num':fields.integer('# of Encoded obj.', readonly=True, select=2), } def init(self, cr): From 804178a2fe36680ad8918266de15102c2426d22d Mon Sep 17 00:00:00 2001 From: Olivier Laurent Date: Mon, 24 Aug 2009 16:46:23 +0200 Subject: [PATCH 05/31] [IMP] purchase: Merge purchases wizard: added keyword='client_action_multi' bzr revid: olt@tinyerp.com-20090824144623-xefaqzahrgxna9eb --- addons/purchase/purchase_wizard.xml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/addons/purchase/purchase_wizard.xml b/addons/purchase/purchase_wizard.xml index 886846ca48e..e7fd3ce6efc 100644 --- a/addons/purchase/purchase_wizard.xml +++ b/addons/purchase/purchase_wizard.xml @@ -1,6 +1,11 @@ - - - + + + From 35ee83a233b8787ea9e9ca423ca4bad8b6e984ed Mon Sep 17 00:00:00 2001 From: Naresh Choksy Date: Tue, 25 Aug 2009 12:59:34 +0530 Subject: [PATCH 06/31] [Fix,IMP]:xsl:sml reports for comment node and when there is no type attribute in the node also improved the header for the xsl:xml reports bzr revid: nch@tinyerp.com-20090825072934-ugwcxnl30gx0sdzs --- bin/addons/base/report/corporate_defaults.xsl | 18 +++++++++--------- bin/report/print_xml.py | 18 ++++++++++-------- 2 files changed, 19 insertions(+), 17 deletions(-) diff --git a/bin/addons/base/report/corporate_defaults.xsl b/bin/addons/base/report/corporate_defaults.xsl index de2ef8ee2e1..414071466af 100644 --- a/bin/addons/base/report/corporate_defaults.xsl +++ b/bin/addons/base/report/corporate_defaults.xsl @@ -17,11 +17,11 @@ - 1cm 25.4cm 20cm 25.4cm - + 1cm 28.4cm 20cm 28.4cm + 1cm 25.4cm 7cm 25.4cm - + @@ -34,17 +34,17 @@ Mail: - + - - 1.5cm 1.2cm 19.9cm 1.2cm + + 1.5cm 2.2cm 19.9cm 2.2cm Your contact : - + - + @@ -71,7 +71,7 @@ - + 1.5cm 1.2cm 19.9cm 1.2cm diff --git a/bin/report/print_xml.py b/bin/report/print_xml.py index 63b342457bd..912fdad00a3 100644 --- a/bin/report/print_xml.py +++ b/bin/report/print_xml.py @@ -209,7 +209,6 @@ class document(object): args = [self.eval(browser, arg) for arg in attrs['args'].split(',')] else: args = [] - # get the object if attrs.has_key('model'): obj = self.pool.get(attrs['model']) @@ -232,6 +231,7 @@ class document(object): newdatas = getattr(obj, attrs['name'])(self.cr, self.uid, ids, *args) def parse_result_tree(node, parent, datas): + if not node.tag == etree.Comment: el = etree.Element(node.tag) parent.append(el) atr = self.node_attrs_get(node) @@ -251,7 +251,6 @@ class document(object): elif attrs['type']=='zoom': value = self.get_value(browser, attrs['name']) - if value: if not isinstance(value, list): v_list = [value] @@ -264,12 +263,16 @@ class document(object): self.parse_node(el_cld, el, v) else: # if there is no "type" attribute in the node, copy it to the xml data and parse its childs - for el_cld in node: - self.parse_node(el_cld, parent, browser) - + if not node.tag == etree.Comment: + if node.tag == parent.tag: + el = parent + else: + el = etree.Element(node.tag) + parent.append(el) + for el_cld in node: + self.parse_node(el_cld,el, browser) def xml_get(self): - #return self.doc.toxml('utf-8') - return etree.tostring(self.doc,encoding="utf-8",xml_declaration=True) + return etree.tostring(self.doc,encoding="utf-8",xml_declaration=True,pretty_print=True) def parse_tree(self, ids, model, context=None): if not context: @@ -282,7 +285,6 @@ class document(object): context={} # parses the xml template to memory self.dom = etree.XML(xml) - # create the xml data from the xml template self.parse_tree(ids, model, context) From e8865e6509c5b4687a58b27f89e9b190ea8d05b1 Mon Sep 17 00:00:00 2001 From: "ame (Tiny/Axelor)" Date: Tue, 25 Aug 2009 19:02:22 +0530 Subject: [PATCH 07/31] [IMP] process view node now links to parent document directory if no record selected. bzr revid: ame@tinyerp.com-20090825133222-gieka35fk5o3rmfc --- addons/document/document.py | 3 ++- addons/process/process.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/addons/document/document.py b/addons/document/document.py index cafbb074e28..3450d3a51a4 100644 --- a/addons/document/document.py +++ b/addons/document/document.py @@ -302,7 +302,8 @@ class document_directory(osv.osv): model_ids=self.pool.get('ir.model').search(cr,uid,[('model','=',res_model)]) if directory: _parent(dir_id,path) - path.append(self.pool.get(directory.ressource_type_id.model).browse(cr,uid,res_id).name) + if res_id: + path.append(self.pool.get(directory.ressource_type_id.model).browse(cr,uid,res_id).name) user=self.pool.get('res.users').browse(cr,uid,uid) return "ftp://%s:%s@localhost:%s/%s/%s"%(user.login,user.password,config.get('ftp_server_port',8021),cr.dbname,'/'.join(path)) return False diff --git a/addons/process/process.py b/addons/process/process.py index be53e0a4dc3..739db125833 100644 --- a/addons/process/process.py +++ b/addons/process/process.py @@ -132,6 +132,7 @@ class process_process(osv.osv): if 'directory_id' in node and node.directory_id: data['directory_id'] = node.directory_id.id + data['directory'] = self.pool.get('document.directory').get_resource_path(cr, uid, data['directory_id'], data['model'], False) if node.menu_id: data['menu'] = {'name': node.menu_id.complete_name, 'id': node.menu_id.id} @@ -200,7 +201,7 @@ class process_process(osv.osv): refobj = pool.get(ref_model).browse(cr, uid, [ref_id], context)[0] fields = pool.get(ref_model).fields_get(cr, uid, context=context) - # chech for directory_id from inherited from document module + # check for directory_id from inherited from document module if nodes[nid].get('directory_id', False): resource['directory'] = self.pool.get('document.directory').get_resource_path(cr, uid, nodes[nid]['directory_id'], ref_model, ref_id) From 84a5a835dffe736ae2f21bc93b9cccf018986b39 Mon Sep 17 00:00:00 2001 From: Red15 <> Date: Tue, 25 Aug 2009 19:16:09 +0530 Subject: [PATCH 08/31] [FIX] Project : Delegated tasks from O2M didnt have project_id lp bug: https://launchpad.net/bugs/418541 fixed bzr revid: jvo@tinyerp.com-20090825134609-qv7i3yygn4u2j1x3 --- addons/project/project_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/project/project_view.xml b/addons/project/project_view.xml index f130ec8b5c0..29c67ee640a 100644 --- a/addons/project/project_view.xml +++ b/addons/project/project_view.xml @@ -307,7 +307,7 @@ - + From 08a058190efaef2b9ef1cda15622eaa202e09be6 Mon Sep 17 00:00:00 2001 From: "HDA (OpenERP)" Date: Wed, 26 Aug 2009 12:13:52 +0530 Subject: [PATCH 09/31] Module:base_module_record removed record duplication in copy for one2many field bzr revid: hda@tinyerp.com-20090826064352-i65g34dnnh6i0rlg --- addons/base_module_record/base_module_record.py | 1 + addons/base_module_record/wizard/base_module_save.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/addons/base_module_record/base_module_record.py b/addons/base_module_record/base_module_record.py index b77027bbda2..c5ce478b6fb 100644 --- a/addons/base_module_record/base_module_record.py +++ b/addons/base_module_record/base_module_record.py @@ -205,6 +205,7 @@ class base_module_record(osv.osv): result[key]=data[key][0] elif mod_fields[key]['type'] in ('one2many',): + continue # due to this start stop recording will not record one2many field rel = mod_fields[key]['relation'] if len(data[key]): res1=[] diff --git a/addons/base_module_record/wizard/base_module_save.py b/addons/base_module_record/wizard/base_module_save.py index e3564b611da..026439677a4 100644 --- a/addons/base_module_record/wizard/base_module_save.py +++ b/addons/base_module_record/wizard/base_module_save.py @@ -144,6 +144,8 @@ def _create_module(self, cr, uid, data, context): info = zipfile.ZipInfo(dname+'/'+name) info.compress_type = zipfile.ZIP_DEFLATED info.external_attr = 2175008768 + if not datastr: + datastr = '' zip.writestr(info, datastr) zip.close() return { From 771fdd192ba07f7fb5d3034c8f62034266355534 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Wed, 26 Aug 2009 15:25:41 +0530 Subject: [PATCH 10/31] [FIX] ir_cron :function and its arguements are now editable lp bug: https://launchpad.net/bugs/415334 fixed bzr revid: jvo@tinyerp.com-20090826095541-a6i4advqo4ywdkpa --- bin/addons/base/ir/ir.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/addons/base/ir/ir.xml b/bin/addons/base/ir/ir.xml index f98b888399b..9c94c8179f9 100644 --- a/bin/addons/base/ir/ir.xml +++ b/bin/addons/base/ir/ir.xml @@ -1040,8 +1040,8 @@ - - + + From a46214f11f33cda2a91f916d31a5c4a375d1e013 Mon Sep 17 00:00:00 2001 From: "ACH,JVO" <> Date: Wed, 26 Aug 2009 18:06:48 +0530 Subject: [PATCH 11/31] [FIX] Account_tax_include : onchange of product on invoice line price type issue lp bug: https://launchpad.net/bugs/416767 fixed bzr revid: jvo@tinyerp.com-20090826123648-w1tc3c8j2ssgglvs --- addons/account_tax_include/invoice_tax_incl.py | 4 ++-- addons/account_tax_include/invoice_tax_incl.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/account_tax_include/invoice_tax_incl.py b/addons/account_tax_include/invoice_tax_incl.py index e42800d8b91..afe21383d64 100644 --- a/addons/account_tax_include/invoice_tax_incl.py +++ b/addons/account_tax_include/invoice_tax_incl.py @@ -140,11 +140,11 @@ class account_invoice_line(osv.osv): else: return super(account_invoice_line, self).product_id_change_unit_price_inv(cr, uid, tax_id, price_unit, qty, address_invoice_id, product, partner_id, context=context) - def product_id_change(self, cr, uid, ids, product, uom, qty=0, name='', type='out_invoice', partner_id=False, fposition_id=False, price_unit=False, address_invoice_id=False, price_type='tax_excluded', context=None): + def product_id_change(self, cr, uid, ids, product, uom, qty=0, name='', type='out_invoice', partner_id=False, fposition_id=False, price_unit=False, address_invoice_id=False, context=None): # note: will call product_id_change_unit_price_inv with context... if context is None: context = {} - context.update({'price_type': price_type}) + context.update({'price_type': context.get('price_type','tax_excluded')}) return super(account_invoice_line, self).product_id_change(cr, uid, ids, product, uom, qty, name, type, partner_id, fposition_id, price_unit, address_invoice_id, context=context) account_invoice_line() diff --git a/addons/account_tax_include/invoice_tax_incl.xml b/addons/account_tax_include/invoice_tax_incl.xml index 2da7895562f..946aa0687a2 100644 --- a/addons/account_tax_include/invoice_tax_incl.xml +++ b/addons/account_tax_include/invoice_tax_incl.xml @@ -58,7 +58,7 @@ - + From 74b7e1ac5f6acccd1f9749422d4fd0f97722203b Mon Sep 17 00:00:00 2001 From: "Ferdinand(Chricar)" <> Date: Wed, 26 Aug 2009 18:26:01 +0530 Subject: [PATCH 12/31] [FIX] Audittrail : Logs set in descending order lp bug: https://launchpad.net/bugs/401110 fixed bzr revid: jvo@tinyerp.com-20090826125601-f278ruieeigv6255 --- addons/audittrail/audittrail.py | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/audittrail/audittrail.py b/addons/audittrail/audittrail.py index b721aad42a3..ee23e790e7b 100644 --- a/addons/audittrail/audittrail.py +++ b/addons/audittrail/audittrail.py @@ -112,6 +112,7 @@ class audittrail_log(osv.osv): _defaults = { "timestamp": lambda *a: time.strftime("%Y-%m-%d %H:%M:%S") } + _order = "timestamp desc" audittrail_log() From 30b2fc5bd2ddbaf44cd90f006b166de084029bfc Mon Sep 17 00:00:00 2001 From: "Harry (Open ERP)" Date: Wed, 26 Aug 2009 19:10:49 +0530 Subject: [PATCH 13/31] [FIX] import: support ":db_id" , better warning message lp bug: https://launchpad.net/bugs/415973 fixed bzr revid: hmo@tinyerp.com-20090826134049-0wf8td729mgv32g9 --- bin/osv/orm.py | 95 +++++++++++++++++++++++++++++++------------------- 1 file changed, 60 insertions(+), 35 deletions(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index 9ed0087415f..05b899a5eff 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -524,7 +524,7 @@ class orm_template(object): warning = '' warning_fields = [] for field in fields_export: - if imp_comp and len(field)>1: + if imp_comp and len(field)>1: warning_fields.append('/'.join(map(lambda x:x in cols and cols[x].string or x,field))) elif len (field) <=1: if imp_comp and cols.get(field and field[0],False): @@ -547,12 +547,20 @@ class orm_template(object): fields = map(lambda x: x.split('/'), fields) logger = netsvc.Logger() ir_model_data_obj = self.pool.get('ir.model.data') + + def _check_db_id(self, model_name, db_id): + obj_model = self.pool.get(model_name) + ids = obj_model.search(cr, uid, [('id','=',int(db_id))]) + if not len(ids): + raise Exception(_("Database ID doesn't exist: %s : %s") %(model_name, db_id)) + return True + def process_liness(self, datas, prefix, current_module, model_name, fields_def, position=0): line = datas[position] row = {} translate = {} todo = [] - warning = '' + warning = [] data_id = False data_res_id = False is_xml_id = False @@ -566,7 +574,37 @@ class orm_template(object): raise Exception(_('Please check that all your lines have %d columns.') % (len(fields),)) if not line[i]: continue - field = fields[i] + field = fields[i] + if (len(field)==len(prefix)+1) and field[len(prefix)].endswith(':db_id'): + # Database ID + res = False + if line[i]: + field_name = field[0].split(':')[0] + model_rel = fields_def[field_name]['relation'] + + if fields_def[field[len(prefix)][:-6]]['type']=='many2many': + res_id = [] + for db_id in line[i].split(config.get('csv_internal_sep')): + try: + _check_db_id(self, model_rel, db_id) + res_id.append(db_id) + except Exception,e: + warning += [tools.exception_to_unicode(e)] + logger.notifyChannel("import", netsvc.LOG_ERROR, + tools.exception_to_unicode(e)) + if len(res_id): + res = [(6, 0, res_id)] + else: + try: + _check_db_id(self, model_rel, line[i]) + res = line[i] + except Exception,e: + warning += [tools.exception_to_unicode(e)] + logger.notifyChannel("import", netsvc.LOG_ERROR, + tools.exception_to_unicode(e)) + row[field_name] = res or False + continue + if (len(field)==len(prefix)+1) and field[len(prefix)].endswith(':id'): res_id = False if line[i]: @@ -619,30 +657,21 @@ class orm_template(object): ir_model_data_obj.create(cr, uid, {'module':module, 'model':model_name, 'name':name, 'res_id':is_db_id}) db_id = is_db_id if is_db_id and int(db_id) != int(is_db_id): - warning += ("Id is not the same than existing one: " + str(is_db_id) + " !\n") + warning += [_("Id is not the same than existing one: %s")%(is_db_id)] logger.notifyChannel("import", netsvc.LOG_ERROR, - "Id is not the same than existing one: " + str(is_db_id) + ' !\n') + _("Id is not the same than existing one: %s")%(is_db_id)) continue if field[len(prefix)] == "db_id": # Database ID - try: - line[i]= int(line[i]) - except Exception, e: - warning += (str(e) + "!\n") + try: + _check_db_id(self, model_name, line[i]) + data_res_id = is_db_id = int(line[i]) + except Exception,e: + warning += [tools.exception_to_unicode(e)] logger.notifyChannel("import", netsvc.LOG_ERROR, - str(e) + '!\n') + tools.exception_to_unicode(e)) continue - is_db_id = line[i] - obj_model = self.pool.get(model_name) - ids = obj_model.search(cr, uid, [('id','=',line[i])]) - if not len(ids): - warning += ("Database ID doesn't exist: " + model_name + ": " + str(line[i]) + " !\n") - logger.notifyChannel("import", netsvc.LOG_ERROR, - "Database ID doesn't exist: " + model_name + ": " + str(line[i]) + ' !\n') - continue - else: - data_res_id = ids[0] data_ids = ir_model_data_obj.search(cr, uid, [('model','=',model_name),('res_id','=',line[i])]) if len(data_ids): d = ir_model_data_obj.read(cr, uid, data_ids, ['name','module'])[0] @@ -654,9 +683,9 @@ class orm_template(object): if is_xml_id and not data_id: data_id = is_xml_id if is_xml_id and is_xml_id!=data_id: - warning += ("Id is not the same than existing one: " + str(line[i]) + " !\n") + warning += [_("Id is not the same than existing one: %s")%(line[i])] logger.notifyChannel("import", netsvc.LOG_ERROR, - "Id is not the same than existing one: " + str(line[i]) + ' !\n') + _("Id is not the same than existing one: %s")%(line[i])) continue if fields_def[field[len(prefix)]]['type'] == 'integer': @@ -679,10 +708,10 @@ class orm_template(object): break if line[i] and not res: logger.notifyChannel("import", netsvc.LOG_WARNING, - "key '%s' not found in selection field '%s'" % \ + _("key '%s' not found in selection field '%s'") % \ (line[i], field[len(prefix)])) - warning += "Key/value '"+ str(line[i]) +"' not found in selection field '"+str(field[len(prefix)])+"'" + warning += [_("Key/value '%s' not found in selection field '%s'")%(line[i],field[len(prefix)])] elif fields_def[field[len(prefix)]]['type']=='many2one': res = False @@ -692,11 +721,9 @@ class orm_template(object): line[i], [], operator='=', context=context) res = (res2 and res2[0][0]) or False if not res: - warning += ('Relation not found: ' + line[i] + \ - ' on ' + relation + ' !\n') + warning += [_("Relation not found: %s on '%s'")%(line[i],relation)] logger.notifyChannel("import", netsvc.LOG_WARNING, - 'Relation not found: ' + line[i] + \ - ' on ' + relation + ' !\n') + _("Relation not found: %s on '%s'")%(line[i],relation)) elif fields_def[field[len(prefix)]]['type']=='many2many': res = [] if line[i]: @@ -706,12 +733,10 @@ class orm_template(object): uid, word, [], operator='=', context=context) res3 = (res2 and res2[0][0]) or False if not res3: - warning += ('Relation not found: ' + \ - line[i] + ' on '+relation + ' !\n') + warning += [_("Relation not found: %s on '%s'")%(line[i],relation)] logger.notifyChannel("import", netsvc.LOG_WARNING, - 'Relation not found: ' + line[i] + \ - ' on '+relation + ' !\n') + _("Relation not found: %s on '%s'")%(line[i],relation)) else: res.append(res3) if len(res): @@ -776,9 +801,9 @@ class orm_template(object): #try: (res, other, warning, translate, data_id, res_id) = \ process_liness(self, datas, [], current_module, self._name, fields_def) - if warning: + if len(warning): cr.rollback() - return (-1, res, 'Line ' + str(counter) +' : ' + warning, '') + return (-1, res, 'Line ' + str(counter) +' : ' + '!\n'.join(warning), '') try: id = ir_model_data_obj._update(cr, uid, self._name, @@ -787,7 +812,7 @@ class orm_template(object): except Exception, e: import psycopg2 if isinstance(e,psycopg2.IntegrityError): - msg= 'Insertion Failed!' + msg= _('Insertion Failed!') for key in self.pool._sql_error.keys(): if key in e[0]: msg = self.pool._sql_error[key] From fa29dc7d9e6d87f49bc3316e2b56fa977448ad6c Mon Sep 17 00:00:00 2001 From: Olivier Laurent Date: Wed, 26 Aug 2009 15:41:53 +0200 Subject: [PATCH 14/31] [FIX] sale: bad indentation [FIX] sale: pep8 bzr revid: olt@tinyerp.com-20090826134153-biu238mi160kijfd --- addons/sale/sale.py | 405 +++++++++++++++++++++++--------------------- 1 file changed, 211 insertions(+), 194 deletions(-) diff --git a/addons/sale/sale.py b/addons/sale/sale.py index ca988922c8a..8afb332bc7d 100644 --- a/addons/sale/sale.py +++ b/addons/sale/sale.py @@ -23,39 +23,42 @@ import time import netsvc from osv import fields, osv -import ir from mx import DateTime from tools import config from tools.translate import _ + class sale_shop(osv.osv): _name = "sale.shop" _description = "Sale Shop" _columns = { - 'name': fields.char('Shop Name',size=64, required=True), - 'payment_default_id': fields.many2one('account.payment.term','Default Payment Term',required=True), - 'payment_account_id': fields.many2many('account.account','sale_shop_account','shop_id','account_id','Payment Accounts'), - 'warehouse_id': fields.many2one('stock.warehouse','Warehouse'), + 'name': fields.char('Shop Name', size=64, required=True), + 'payment_default_id': fields.many2one('account.payment.term', 'Default Payment Term', required=True), + 'payment_account_id': fields.many2many('account.account', 'sale_shop_account', 'shop_id', 'account_id', 'Payment Accounts'), + 'warehouse_id': fields.many2one('stock.warehouse', 'Warehouse'), 'pricelist_id': fields.many2one('product.pricelist', 'Pricelist'), 'project_id': fields.many2one('account.analytic.account', 'Analytic Account'), } sale_shop() + def _incoterm_get(self, cr, uid, context={}): cr.execute('select code, code||\', \'||name from stock_incoterms where active') return cr.fetchall() + class sale_order(osv.osv): _name = "sale.order" _description = "Sale Order" - def copy(self, cr, uid, id, default=None,context={}): + + def copy(self, cr, uid, id, default=None, context={}): if not default: default = {} default.update({ - 'state':'draft', - 'shipped':False, - 'invoice_ids':[], - 'picking_ids':[], + 'state': 'draft', + 'shipped': False, + 'invoice_ids': [], + 'picking_ids': [], 'name': self.pool.get('ir.sequence').get(cr, uid, 'sale.order'), }) return super(sale_order, self).copy(cr, uid, id, default, context) @@ -63,12 +66,12 @@ class sale_order(osv.osv): def _amount_line_tax(self, cr, uid, line, context={}): val = 0.0 for c in self.pool.get('account.tax').compute(cr, uid, line.tax_id, line.price_unit * (1-(line.discount or 0.0)/100.0), line.product_uom_qty, line.order_id.partner_invoice_id.id, line.product_id, line.order_id.partner_id): - val+= c['amount'] + val += c['amount'] return val def _amount_all(self, cr, uid, ids, field_name, arg, context): res = {} - cur_obj=self.pool.get('res.currency') + cur_obj = self.pool.get('res.currency') for order in self.browse(cr, uid, ids): res[order.id] = { 'amount_untaxed': 0.0, @@ -76,20 +79,21 @@ class sale_order(osv.osv): 'amount_total': 0.0, } val = val1 = 0.0 - cur=order.pricelist_id.currency_id + cur = order.pricelist_id.currency_id for line in order.order_line: val1 += line.price_subtotal val += self._amount_line_tax(cr, uid, line, context) - res[order.id]['amount_tax']=cur_obj.round(cr, uid, cur, val) - res[order.id]['amount_untaxed']=cur_obj.round(cr, uid, cur, val1) - res[order.id]['amount_total']=res[order.id]['amount_untaxed'] + res[order.id]['amount_tax'] + res[order.id]['amount_tax'] = cur_obj.round(cr, uid, cur, val) + res[order.id]['amount_untaxed'] = cur_obj.round(cr, uid, cur, val1) + res[order.id]['amount_total'] = res[order.id]['amount_untaxed'] + res[order.id]['amount_tax'] return res def _picked_rate(self, cr, uid, ids, name, arg, context=None): - if not ids: return {} + if not ids: + return {} res = {} for id in ids: - res[id] = [0.0,0.0] + res[id] = [0.0, 0.0] cr.execute('''SELECT p.sale_id,sum(m.product_qty), m.state FROM @@ -97,12 +101,12 @@ class sale_order(osv.osv): LEFT JOIN stock_picking p on (p.id=m.picking_id) WHERE - p.sale_id in ('''+','.join(map(str,ids))+''') + p.sale_id in ('''+','.join(map(str, ids))+''') GROUP BY m.state, p.sale_id''') - for oid,nbr,state in cr.fetchall(): - if state=='cancel': + for oid, nbr, state in cr.fetchall(): + if state == 'cancel': continue - if state=='done': + if state == 'done': res[oid][0] += nbr or 0.0 res[oid][1] += nbr or 0.0 else: @@ -125,7 +129,7 @@ class sale_order(osv.osv): continue tot = 0.0 for invoice in sale.invoice_ids: - if invoice.state not in ('draft','cancel'): + if invoice.state not in ('draft', 'cancel'): tot += invoice.amount_untaxed if tot: @@ -139,7 +143,7 @@ class sale_order(osv.osv): for sale in self.browse(cursor, user, ids, context=context): res[sale.id] = True for invoice in sale.invoice_ids: - if invoice.state <> 'paid': + if invoice.state != 'paid': res[sale.id] = False break if not sale.invoice_ids: @@ -181,49 +185,49 @@ class sale_order(osv.osv): _columns = { 'name': fields.char('Order Reference', size=64, required=True, select=True), - 'shop_id':fields.many2one('sale.shop', 'Shop', required=True, readonly=True, states={'draft':[('readonly',False)]}), + 'shop_id': fields.many2one('sale.shop', 'Shop', required=True, readonly=True, states={'draft': [('readonly', False)]}), 'origin': fields.char('Origin', size=64), - 'client_order_ref': fields.char('Customer Ref',size=64), + 'client_order_ref': fields.char('Customer Ref', size=64), 'state': fields.selection([ - ('draft','Quotation'), - ('waiting_date','Waiting Schedule'), - ('manual','Manual In Progress'), - ('progress','In Progress'), - ('shipping_except','Shipping Exception'), - ('invoice_except','Invoice Exception'), - ('done','Done'), - ('cancel','Cancelled') + ('draft', 'Quotation'), + ('waiting_date', 'Waiting Schedule'), + ('manual', 'Manual In Progress'), + ('progress', 'In Progress'), + ('shipping_except', 'Shipping Exception'), + ('invoice_except', 'Invoice Exception'), + ('done', 'Done'), + ('cancel', 'Cancelled') ], 'Order State', readonly=True, help="Gives the state of the quotation or sale order. The exception state is automatically set when a cancel operation occurs in the invoice validation (Invoice Exception) or in the packing list process (Shipping Exception). The 'Waiting Schedule' state is set when the invoice is confirmed but waiting for the scheduler to run on the date 'Date Ordered'.", select=True), - 'date_order':fields.date('Date Ordered', required=True, readonly=True, states={'draft':[('readonly',False)]}), + 'date_order': fields.date('Date Ordered', required=True, readonly=True, states={'draft': [('readonly', False)]}), - 'user_id':fields.many2one('res.users', 'Salesman', states={'draft':[('readonly',False)]}, select=True), - 'partner_id':fields.many2one('res.partner', 'Customer', readonly=True, states={'draft':[('readonly',False)]}, required=True, change_default=True, select=True), - 'partner_invoice_id':fields.many2one('res.partner.address', 'Invoice Address', readonly=True, required=True, states={'draft':[('readonly',False)]}), - 'partner_order_id':fields.many2one('res.partner.address', 'Ordering Contact', readonly=True, required=True, states={'draft':[('readonly',False)]}, help="The name and address of the contact that requested the order or quotation."), - 'partner_shipping_id':fields.many2one('res.partner.address', 'Shipping Address', readonly=True, required=True, states={'draft':[('readonly',False)]}), + 'user_id': fields.many2one('res.users', 'Salesman', states={'draft': [('readonly', False)]}, select=True), + 'partner_id': fields.many2one('res.partner', 'Customer', readonly=True, states={'draft': [('readonly', False)]}, required=True, change_default=True, select=True), + 'partner_invoice_id': fields.many2one('res.partner.address', 'Invoice Address', readonly=True, required=True, states={'draft': [('readonly', False)]}), + 'partner_order_id': fields.many2one('res.partner.address', 'Ordering Contact', readonly=True, required=True, states={'draft': [('readonly', False)]}, help="The name and address of the contact that requested the order or quotation."), + 'partner_shipping_id': fields.many2one('res.partner.address', 'Shipping Address', readonly=True, required=True, states={'draft': [('readonly', False)]}), - 'incoterm': fields.selection(_incoterm_get, 'Incoterm',size=3), - 'picking_policy': fields.selection([('direct','Partial Delivery'),('one','Complete Delivery')], + 'incoterm': fields.selection(_incoterm_get, 'Incoterm', size=3), + 'picking_policy': fields.selection([('direct', 'Partial Delivery'), ('one', 'Complete Delivery')], 'Packing Policy', required=True, help="""If you don't have enough stock available to deliver all at once, do you accept partial shipments or not?"""), 'order_policy': fields.selection([ - ('prepaid','Payment Before Delivery'), - ('manual','Shipping & Manual Invoice'), - ('postpaid','Invoice on Order After Delivery'), - ('picking','Invoice from the Packing'), - ], 'Shipping Policy', required=True, readonly=True, states={'draft':[('readonly',False)]}, + ('prepaid', 'Payment Before Delivery'), + ('manual', 'Shipping & Manual Invoice'), + ('postpaid', 'Invoice on Order After Delivery'), + ('picking', 'Invoice from the Packing'), + ], 'Shipping Policy', required=True, readonly=True, states={'draft': [('readonly', False)]}, help="""The Shipping Policy is used to synchronise invoice and delivery operations. - The 'Pay before delivery' choice will first generate the invoice and then generate the packing order after the payment of this invoice. - The 'Shipping & Manual Invoice' will create the packing order directly and wait for the user to manually click on the 'Invoice' button to generate the draft invoice. - The 'Invoice on Order After Delivery' choice will generate the draft invoice based on sale order after all packing lists have been finished. - The 'Invoice from the packing' choice is used to create an invoice during the packing process."""), - 'pricelist_id':fields.many2one('product.pricelist', 'Pricelist', required=True, readonly=True, states={'draft':[('readonly',False)]}), - 'project_id':fields.many2one('account.analytic.account', 'Analytic Account', readonly=True, states={'draft':[('readonly', False)]}), + 'pricelist_id': fields.many2one('product.pricelist', 'Pricelist', required=True, readonly=True, states={'draft': [('readonly', False)]}), + 'project_id': fields.many2one('account.analytic.account', 'Analytic Account', readonly=True, states={'draft': [('readonly', False)]}), - 'order_line': fields.one2many('sale.order.line', 'order_id', 'Order Lines', readonly=True, states={'draft':[('readonly',False)]}), + 'order_line': fields.one2many('sale.order.line', 'order_id', 'Order Lines', readonly=True, states={'draft': [('readonly', False)]}), 'invoice_ids': fields.many2many('account.invoice', 'sale_order_invoice_rel', 'order_id', 'invoice_id', 'Invoice', help="This is the list of invoices that have been generated for this sale order. The same sale order may have been invoiced in several times (by line for example)."), 'picking_ids': fields.one2many('stock.picking', 'sale_id', 'Related Packing', readonly=True, help="This is the list of picking list that have been generated for this invoice"), - 'shipped':fields.boolean('Picked', readonly=True), + 'shipped': fields.boolean('Picked', readonly=True), 'picked_rate': fields.function(_picked_rate, method=True, string='Picked', type='float'), 'invoiced_rate': fields.function(_invoiced_rate, method=True, string='Invoiced', type='float'), 'invoiced': fields.function(_invoiced, method=True, string='Paid', @@ -231,26 +235,26 @@ class sale_order(osv.osv): 'note': fields.text('Notes'), 'amount_untaxed': fields.function(_amount_all, method=True, string='Untaxed Amount', - store={ + store = { 'sale.order': (lambda self, cr, uid, ids, c={}: ids, ['order_line'], 10), - 'sale.order.line': (_get_order, ['price_unit','tax_id','discount','product_uom_qty'], 10), + 'sale.order.line': (_get_order, ['price_unit', 'tax_id', 'discount', 'product_uom_qty'], 10), }, multi='sums'), 'amount_tax': fields.function(_amount_all, method=True, string='Taxes', - store={ + store = { 'sale.order': (lambda self, cr, uid, ids, c={}: ids, ['order_line'], 10), - 'sale.order.line': (_get_order, ['price_unit','tax_id','discount','product_uom_qty'], 10), + 'sale.order.line': (_get_order, ['price_unit', 'tax_id', 'discount', 'product_uom_qty'], 10), }, multi='sums'), 'amount_total': fields.function(_amount_all, method=True, string='Total', - store={ + store = { 'sale.order': (lambda self, cr, uid, ids, c={}: ids, ['order_line'], 10), - 'sale.order.line': (_get_order, ['price_unit','tax_id','discount','product_uom_qty'], 10), + 'sale.order.line': (_get_order, ['price_unit', 'tax_id', 'discount', 'product_uom_qty'], 10), }, multi='sums'), - 'invoice_quantity': fields.selection([('order','Ordered Quantities'),('procurement','Shipped Quantities')], 'Invoice on', help="The sale order will automatically create the invoice proposition (draft invoice). Ordered and delivered quantities may not be the same. You have to choose if you invoice based on ordered or shipped quantities. If the product is a service, shipped quantities means hours spent on the associated tasks.",required=True), - 'payment_term' : fields.many2one('account.payment.term', 'Payment Term'), + 'invoice_quantity': fields.selection([('order', 'Ordered Quantities'), ('procurement', 'Shipped Quantities')], 'Invoice on', help="The sale order will automatically create the invoice proposition (draft invoice). Ordered and delivered quantities may not be the same. You have to choose if you invoice based on ordered or shipped quantities. If the product is a service, shipped quantities means hours spent on the associated tasks.", required=True), + 'payment_term': fields.many2one('account.payment.term', 'Payment Term'), 'fiscal_position': fields.many2one('account.fiscal.position', 'Fiscal Position') } _defaults = { @@ -273,31 +277,30 @@ class sale_order(osv.osv): sale_orders = self.read(cr, uid, ids, ['state']) unlink_ids = [] for s in sale_orders: - if s['state'] in ['draft','cancel']: + if s['state'] in ['draft', 'cancel']: unlink_ids.append(s['id']) else: raise osv.except_osv(_('Invalid action !'), _('Cannot delete Sale Order(s) which are already confirmed !')) return osv.osv.unlink(self, cr, uid, unlink_ids, context=context) - def onchange_shop_id(self, cr, uid, ids, shop_id): - v={} + v = {} if shop_id: - shop=self.pool.get('sale.shop').browse(cr,uid,shop_id) - v['project_id']=shop.project_id.id + shop = self.pool.get('sale.shop').browse(cr, uid, shop_id) + v['project_id'] = shop.project_id.id # Que faire si le client a une pricelist a lui ? if shop.pricelist_id.id: - v['pricelist_id']=shop.pricelist_id.id + v['pricelist_id'] = shop.pricelist_id.id #v['payment_default_id']=shop.payment_default_id.id - return {'value':v} + return {'value': v} def action_cancel_draft(self, cr, uid, ids, *args): if not len(ids): return False cr.execute('select id from sale_order_line where order_id in ('+','.join(map(str, ids))+')', ('draft',)) line_ids = map(lambda x: x[0], cr.fetchall()) - self.write(cr, uid, ids, {'state':'draft', 'invoice_ids':[], 'shipped':0}) - self.pool.get('sale.order.line').write(cr, uid, line_ids, {'invoiced':False, 'state':'draft', 'invoice_lines':[(6,0,[])]}) + self.write(cr, uid, ids, {'state': 'draft', 'invoice_ids': [], 'shipped': 0}) + self.pool.get('sale.order.line').write(cr, uid, line_ids, {'invoiced': False, 'state': 'draft', 'invoice_lines': [(6, 0, [])]}) wf_service = netsvc.LocalService("workflow") for inv_id in ids: wf_service.trg_create(uid, 'sale.order', inv_id, cr) @@ -305,41 +308,41 @@ class sale_order(osv.osv): def onchange_partner_id(self, cr, uid, ids, part): if not part: - return {'value':{'partner_invoice_id': False, 'partner_shipping_id':False, 'partner_order_id':False, 'payment_term' : False, 'fiscal_position': False}} - addr = self.pool.get('res.partner').address_get(cr, uid, [part], ['delivery','invoice','contact']) + return {'value': {'partner_invoice_id': False, 'partner_shipping_id': False, 'partner_order_id': False, 'payment_term': False, 'fiscal_position': False}} + addr = self.pool.get('res.partner').address_get(cr, uid, [part], ['delivery', 'invoice', 'contact']) part = self.pool.get('res.partner').browse(cr, uid, part) pricelist = part.property_product_pricelist and part.property_product_pricelist.id or False payment_term = part.property_payment_term and part.property_payment_term.id or False fiscal_position = part.property_account_position and part.property_account_position.id or False - val = {'partner_invoice_id': addr['invoice'], 'partner_order_id':addr['contact'], 'partner_shipping_id':addr['delivery'], 'payment_term' : payment_term, 'fiscal_position': fiscal_position} + val = {'partner_invoice_id': addr['invoice'], 'partner_order_id': addr['contact'], 'partner_shipping_id': addr['delivery'], 'payment_term': payment_term, 'fiscal_position': fiscal_position} if pricelist: val['pricelist_id'] = pricelist - return {'value':val} + return {'value': val} def shipping_policy_change(self, cr, uid, ids, policy, context={}): if not policy: return {} inv_qty = 'order' - if policy=='prepaid': + if policy == 'prepaid': inv_qty = 'order' - elif policy=='picking': + elif policy == 'picking': inv_qty = 'procurement' - return {'value':{'invoice_quantity':inv_qty}} + return {'value': {'invoice_quantity': inv_qty}} def write(self, cr, uid, ids, vals, context=None): - if vals.has_key('order_policy'): - if vals['order_policy']=='prepaid': - vals.update({'invoice_quantity':'order'}) - elif vals['order_policy']=='picking': - vals.update({'invoice_quantity':'procurement'}) + if 'order_policy' in vals: + if vals['order_policy'] == 'prepaid': + vals.update({'invoice_quantity': 'order'}) + elif vals['order_policy'] == 'picking': + vals.update({'invoice_quantity': 'procurement'}) return super(sale_order, self).write(cr, uid, ids, vals, context=context) def create(self, cr, uid, vals, context={}): - if vals.has_key('order_policy'): - if vals['order_policy']=='prepaid': - vals.update({'invoice_quantity':'order'}) - if vals['order_policy']=='picking': - vals.update({'invoice_quantity':'procurement'}) + if 'order_policy' in vals: + if vals['order_policy'] == 'prepaid': + vals.update({'invoice_quantity': 'order'}) + if vals['order_policy'] == 'picking': + vals.update({'invoice_quantity': 'procurement'}) return super(sale_order, self).create(cr, uid, vals, context=context) def button_dummy(self, cr, uid, ids, context={}): @@ -352,7 +355,7 @@ class sale_order(osv.osv): def _inv_get(self, cr, uid, order, context={}): return {} - def _make_invoice(self, cr, uid, order, lines,context={}): + def _make_invoice(self, cr, uid, order, lines, context={}): a = order.partner_id.property_account_receivable.id if order.payment_term: pay_term = order.payment_term.id @@ -361,19 +364,19 @@ class sale_order(osv.osv): for preinv in order.invoice_ids: if preinv.state not in ('cancel',): for preline in preinv.invoice_line: - inv_line_id = self.pool.get('account.invoice.line').copy(cr, uid, preline.id, {'invoice_id':False, 'price_unit':-preline.price_unit}) + inv_line_id = self.pool.get('account.invoice.line').copy(cr, uid, preline.id, {'invoice_id': False, 'price_unit': -preline.price_unit}) lines.append(inv_line_id) inv = { 'name': order.client_order_ref or order.name, 'origin': order.name, 'type': 'out_invoice', - 'reference': "P%dSO%d"%(order.partner_id.id,order.id), + 'reference': "P%dSO%d" % (order.partner_id.id, order.id), 'account_id': a, 'partner_id': order.partner_id.id, 'address_invoice_id': order.partner_invoice_id.id, 'address_contact_id': order.partner_invoice_id.id, - 'invoice_line': [(6,0,lines)], - 'currency_id' : order.pricelist_id.currency_id.id, + 'invoice_line': [(6, 0, lines)], + 'currency_id': order.pricelist_id.currency_id.id, 'comment': order.note, 'payment_term': pay_term, 'fiscal_position': order.partner_id.property_account_position.id @@ -381,20 +384,18 @@ class sale_order(osv.osv): inv_obj = self.pool.get('account.invoice') inv.update(self._inv_get(cr, uid, order)) inv_id = inv_obj.create(cr, uid, inv) - data = inv_obj.onchange_payment_term_date_invoice(cr, uid, [inv_id], - pay_term,time.strftime('%Y-%m-%d')) - if data.get('value',False): + data = inv_obj.onchange_payment_term_date_invoice(cr, uid, [inv_id], pay_term, time.strftime('%Y-%m-%d')) + if data.get('value', False): inv_obj.write(cr, uid, [inv_id], data['value'], context=context) inv_obj.button_compute(cr, uid, [inv_id]) return inv_id - - def action_invoice_create(self, cr, uid, ids, grouped=False, states=['confirmed','done','exception']): + def action_invoice_create(self, cr, uid, ids, grouped=False, states=['confirmed', 'done', 'exception']): res = False invoices = {} invoice_ids = [] - for o in self.browse(cr,uid,ids): + for o in self.browse(cr, uid, ids): lines = [] for line in o.order_line: if (line.state in states) and not line.invoiced: @@ -408,64 +409,63 @@ class sale_order(osv.osv): for i in o.invoice_ids: if i.state == 'draft': return i.id - picking_obj=self.pool.get('stock.picking') + picking_obj = self.pool.get('stock.picking') for val in invoices.values(): if grouped: - res = self._make_invoice(cr, uid, val[0][0], reduce(lambda x,y: x + y, [l for o,l in val], [])) - for o,l in val: - self.write(cr, uid, [o.id], {'state' : 'progress'}) - if o.order_policy=='picking': - picking_obj.write(cr,uid,map(lambda x:x.id,o.picking_ids),{'invoice_state':'invoiced'}) + res = self._make_invoice(cr, uid, val[0][0], reduce(lambda x, y: x + y, [l for o, l in val], [])) + for o, l in val: + self.write(cr, uid, [o.id], {'state': 'progress'}) + if o.order_policy == 'picking': + picking_obj.write(cr, uid, map(lambda x: x.id, o.picking_ids), {'invoice_state': 'invoiced'}) cr.execute('insert into sale_order_invoice_rel (order_id,invoice_id) values (%s,%s)', (o.id, res)) else: for order, il in val: res = self._make_invoice(cr, uid, order, il) invoice_ids.append(res) - self.write(cr, uid, [order.id], {'state' : 'progress'}) - if order.order_policy=='picking': - picking_obj.write(cr,uid,map(lambda x:x.id,order.picking_ids),{'invoice_state':'invoiced'}) + self.write(cr, uid, [order.id], {'state': 'progress'}) + if order.order_policy == 'picking': + picking_obj.write(cr, uid, map(lambda x: x.id, order.picking_ids), {'invoice_state': 'invoiced'}) cr.execute('insert into sale_order_invoice_rel (order_id,invoice_id) values (%s,%s)', (order.id, res)) return res def action_invoice_cancel(self, cr, uid, ids, context={}): for sale in self.browse(cr, uid, ids): for line in sale.order_line: - invoiced=False + invoiced = False for iline in line.invoice_lines: if iline.invoice_id and iline.invoice_id.state == 'cancel': continue else: - invoiced=True + invoiced = True self.pool.get('sale.order.line').write(cr, uid, [line.id], {'invoiced': invoiced}) - self.write(cr, uid, ids, {'state':'invoice_except', 'invoice_ids':False}) + self.write(cr, uid, ids, {'state': 'invoice_except', 'invoice_ids': False}) return True - def action_cancel(self, cr, uid, ids, context={}): ok = True sale_order_line_obj = self.pool.get('sale.order.line') for sale in self.browse(cr, uid, ids): for pick in sale.picking_ids: - if pick.state not in ('draft','cancel'): + if pick.state not in ('draft', 'cancel'): raise osv.except_osv( _('Could not cancel sale order !'), _('You must first cancel all packing attached to this sale order.')) - for r in self.read(cr,uid,ids,['picking_ids']): + for r in self.read(cr, uid, ids, ['picking_ids']): for pick in r['picking_ids']: wf_service = netsvc.LocalService("workflow") wf_service.trg_validate(uid, 'stock.picking', pick, 'button_cancel', cr) for inv in sale.invoice_ids: - if inv.state not in ('draft','cancel'): + if inv.state not in ('draft', 'cancel'): raise osv.except_osv( _('Could not cancel this sale order !'), _('You must first cancel all invoices attached to this sale order.')) - for r in self.read(cr,uid,ids,['invoice_ids']): + for r in self.read(cr, uid, ids, ['invoice_ids']): for inv in r['invoice_ids']: wf_service = netsvc.LocalService("workflow") wf_service.trg_validate(uid, 'account.invoice', inv, 'invoice_cancel', cr) sale_order_line_obj.write(cr, uid, [l.id for l in sale.order_line], {'state': 'cancel'}) - self.write(cr,uid,ids,{'state':'cancel'}) + self.write(cr, uid, ids, {'state': 'cancel'}) return True def action_wait(self, cr, uid, ids, *args): @@ -525,22 +525,22 @@ class sale_order(osv.osv): if write_cancel_ids: self.pool.get('sale.order.line').write(cr, uid, write_cancel_ids, {'state': 'exception'}) - if mode=='finished': + if mode == 'finished': return finished - elif mode=='canceled': + elif mode == 'canceled': return canceled if notcanceled: return False return canceled def action_ship_create(self, cr, uid, ids, *args): - picking_id=False + picking_id = False company = self.pool.get('res.users').browse(cr, uid, uid).company_id for order in self.browse(cr, uid, ids, context={}): output_id = order.shop_id.warehouse_id.lot_output_id.id picking_id = False for line in order.order_line: - proc_id=False + proc_id = False date_planned = DateTime.now() + DateTime.RelativeDateTime(days=line.delay or 0.0) date_planned = (date_planned - DateTime.RelativeDateTime(days=company.security_lead)).strftime('%Y-%m-%d %H:%M:%S') if line.state == 'done': @@ -571,8 +571,8 @@ class sale_order(osv.osv): 'product_uos_qty': line.product_uos_qty, 'product_uos': (line.product_uos and line.product_uos.id)\ or line.product_uom.id, - 'product_packaging' : line.product_packaging.id, - 'address_id' : line.address_allotment_id.id or order.partner_shipping_id.id, + 'product_packaging': line.product_packaging.id, + 'address_id': line.address_allotment_id.id or order.partner_shipping_id.id, 'location_id': location_id, 'location_dest_id': output_id, 'sale_line_id': line.id, @@ -600,7 +600,7 @@ class sale_order(osv.osv): wf_service = netsvc.LocalService("workflow") wf_service.trg_validate(uid, 'mrp.procurement', proc_id, 'button_confirm', cr) self.pool.get('sale.order.line').write(cr, uid, [line.id], {'procurement_id': proc_id}) - elif line.product_id and line.product_id.product_tmpl_id.type=='service': + elif line.product_id and line.product_id.product_tmpl_id.type == 'service': proc_id = self.pool.get('mrp.procurement').create(cr, uid, { 'name': line.name, 'origin': order.name, @@ -626,12 +626,12 @@ class sale_order(osv.osv): wf_service = netsvc.LocalService("workflow") wf_service.trg_validate(uid, 'stock.picking', picking_id, 'button_confirm', cr) - if order.state=='shipping_except': + if order.state == 'shipping_except': val['state'] = 'progress' if (order.order_policy == 'manual'): for line in order.order_line: - if (not line.invoiced) and (line.state not in ('cancel','draft')): + if (not line.invoiced) and (line.state not in ('cancel', 'draft')): val['state'] = 'manual' break self.write(cr, uid, [order.id], val) @@ -640,33 +640,48 @@ class sale_order(osv.osv): def action_ship_end(self, cr, uid, ids, context={}): for order in self.browse(cr, uid, ids): - val = {'shipped':True} - if order.state=='shipping_except': + val = {'shipped': True} + if order.state == 'shipping_except': val['state'] = 'progress' if (order.order_policy == 'manual'): for line in order.order_line: - if (not line.invoiced) and (line.state not in ('cancel','draft')): + if (not line.invoiced) and (line.state not in ('cancel', 'draft')): val['state'] = 'manual' break for line in order.order_line: towrite = [] - if line.state=='exception': + if line.state == 'exception': towrite.append(line.id) if towrite: - self.pool.get('sale.order.line').write(cr, uid, towrite, {'state':'done'},context=context) + self.pool.get('sale.order.line').write(cr, uid, towrite, {'state': 'done'}, context=context) self.write(cr, uid, [order.id], val) return True def _log_event(self, cr, uid, ids, factor=0.7, name='Open Order'): - invs = self.read(cr, uid, ids, ['date_order','partner_id','amount_untaxed']) + invs = self.read(cr, uid, ids, ['date_order', 'partner_id', 'amount_untaxed']) for inv in invs: - part=inv['partner_id'] and inv['partner_id'][0] + part = inv['partner_id'] and inv['partner_id'][0] pr = inv['amount_untaxed'] or 0.0 partnertype = 'customer' eventtype = 'sale' - self.pool.get('res.partner.event').create(cr, uid, {'name':'Order: '+name, 'som':False, 'description':'Order '+str(inv['id']), 'document':'', 'partner_id':part, 'date':time.strftime('%Y-%m-%d'), 'canal_id':False, 'user_id':uid, 'partner_type':partnertype, 'probability':1.0, 'planned_revenue':pr, 'planned_cost':0.0, 'type':eventtype}) + event = { + 'name': 'Order: '+name, + 'som': False, + 'description': 'Order '+str(inv['id']), + 'document': '', + 'partner_id': part, + 'date': time.strftime('%Y-%m-%d'), + 'canal_id': False, + 'user_id': uid, + 'partner_type': partnertype, + 'probability': 1.0, + 'planned_revenue': pr, + 'planned_cost': 0.0, + 'type': eventtype + } + self.pool.get('res.partner.event').create(cr, uid, event) - def has_stockable_products(self,cr, uid, ids, *args): + def has_stockable_products(self, cr, uid, ids, *args): for order in self.browse(cr, uid, ids): for order_line in order.order_line: if order_line.product_id and order_line.product_id.product_tmpl_id.type in ('product', 'consu'): @@ -686,7 +701,7 @@ class sale_order_line(osv.osv): def _amount_line(self, cr, uid, ids, field_name, arg, context): res = {} - cur_obj=self.pool.get('res.currency') + cur_obj = self.pool.get('res.currency') for line in self.browse(cr, uid, ids): res[line.id] = line.price_unit * line.product_uom_qty * (1 - (line.discount or 0.0) / 100.0) cur = line.order_id.pricelist_id.currency_id @@ -709,28 +724,28 @@ class sale_order_line(osv.osv): 'name': fields.char('Description', size=256, required=True, select=True), 'sequence': fields.integer('Sequence'), 'delay': fields.float('Delivery Delay', required=True), - 'product_id': fields.many2one('product.product', 'Product', domain=[('sale_ok','=',True)], change_default=True), - 'invoice_lines': fields.many2many('account.invoice.line', 'sale_order_line_invoice_rel', 'order_line_id','invoice_id', 'Invoice Lines', readonly=True), + 'product_id': fields.many2one('product.product', 'Product', domain=[('sale_ok', '=', True)], change_default=True), + 'invoice_lines': fields.many2many('account.invoice.line', 'sale_order_line_invoice_rel', 'order_line_id', 'invoice_id', 'Invoice Lines', readonly=True), 'invoiced': fields.boolean('Invoiced', readonly=True), 'procurement_id': fields.many2one('mrp.procurement', 'Procurement'), 'price_unit': fields.float('Unit Price', required=True, digits=(16, int(config['price_accuracy']))), 'price_net': fields.function(_amount_line_net, method=True, string='Net Price', digits=(16, int(config['price_accuracy']))), 'price_subtotal': fields.function(_amount_line, method=True, string='Subtotal'), 'tax_id': fields.many2many('account.tax', 'sale_order_tax', 'order_line_id', 'tax_id', 'Taxes'), - 'type': fields.selection([('make_to_stock','from stock'),('make_to_order','on order')],'Procure Method', required=True), + 'type': fields.selection([('make_to_stock', 'from stock'), ('make_to_order', 'on order')], 'Procure Method', required=True), 'property_ids': fields.many2many('mrp.property', 'sale_order_line_property_rel', 'order_id', 'property_id', 'Properties'), - 'address_allotment_id' : fields.many2one('res.partner.address', 'Allotment Partner'), - 'product_uom_qty': fields.float('Quantity (UoM)', digits=(16,2), required=True), + 'address_allotment_id': fields.many2one('res.partner.address', 'Allotment Partner'), + 'product_uom_qty': fields.float('Quantity (UoM)', digits=(16, 2), required=True), 'product_uom': fields.many2one('product.uom', 'Product UoM', required=True), 'product_uos_qty': fields.float('Quantity (UoS)'), 'product_uos': fields.many2one('product.uom', 'Product UoS'), 'product_packaging': fields.many2one('product.packaging', 'Packaging'), 'move_ids': fields.one2many('stock.move', 'sale_line_id', 'Inventory Moves', readonly=True), - 'discount': fields.float('Discount (%)', digits=(16,2)), + 'discount': fields.float('Discount (%)', digits=(16, 2)), 'number_packages': fields.function(_number_packages, method=True, type='integer', string='Number Packages'), 'notes': fields.text('Notes'), - 'th_weight' : fields.float('Weight'), - 'state': fields.selection([('draft','Draft'),('confirmed','Confirmed'),('done','Done'),('cancel','Cancelled'),('exception','Exception')], 'Status', required=True, readonly=True), + 'th_weight': fields.float('Weight'), + 'state': fields.selection([('draft', 'Draft'), ('confirmed', 'Confirmed'), ('done', 'Done'), ('cancel', 'Cancelled'), ('exception', 'Exception')], 'Status', required=True, readonly=True), 'order_partner_id': fields.related('order_id', 'partner_id', type='many2one', relation='res.partner', string='Customer') } _order = 'sequence, id' @@ -745,6 +760,7 @@ class sale_order_line(osv.osv): 'type': lambda *a: 'make_to_stock', 'product_packaging': lambda *a: False } + def invoice_line_create(self, cr, uid, ids, context={}): def _get_line_qty(line): if (line.order_id.invoice_quantity=='order') or not line.procurement_id: @@ -769,7 +785,7 @@ class sale_order_line(osv.osv): for line in self.browse(cr, uid, ids, context): if not line.invoiced: if line.product_id: - a = line.product_id.product_tmpl_id.property_account_income.id + a = line.product_id.product_tmpl_id.property_account_income.id if not a: a = line.product_id.categ_id.property_account_income_categ.id if not a: @@ -791,19 +807,19 @@ class sale_order_line(osv.osv): a = self.pool.get('account.fiscal.position').map_account(cr, uid, fpos, a) inv_id = self.pool.get('account.invoice.line').create(cr, uid, { 'name': line.name, - 'origin':line.order_id.name, + 'origin': line.order_id.name, 'account_id': a, 'price_unit': pu, 'quantity': uosqty, 'discount': line.discount, 'uos_id': uos_id, 'product_id': line.product_id.id or False, - 'invoice_line_tax_id': [(6,0,[x.id for x in line.tax_id])], + 'invoice_line_tax_id': [(6, 0, [x.id for x in line.tax_id])], 'note': line.notes, 'account_analytic_id': line.order_id.project_id.id, }) cr.execute('insert into sale_order_line_invoice_rel (order_line_id,invoice_id) values (%s,%s)', (line.id, inv_id)) - self.write(cr, uid, [line.id], {'invoiced':True}) + self.write(cr, uid, [line.id], {'invoiced': True}) sales[line.order_id.id] = True create_ids.append(inv_id) @@ -818,15 +834,15 @@ class sale_order_line(osv.osv): for line in self.browse(cr, uid, ids, context=context): if line.invoiced: raise osv.except_osv(_('Invalid action !'), _('You cannot cancel a sale order line that has already been invoiced !')) - return self.write(cr, uid, ids, {'state':'cancel'}) + return self.write(cr, uid, ids, {'state': 'cancel'}) def button_confirm(self, cr, uid, ids, context={}): - return self.write(cr, uid, ids, {'state':'confirmed'}) + return self.write(cr, uid, ids, {'state': 'confirmed'}) def button_done(self, cr, uid, ids, context={}): wf_service = netsvc.LocalService("workflow") - res = self.write(cr, uid, ids, {'state':'done'}) - for line in self.browse(cr,uid,ids,context): + res = self.write(cr, uid, ids, {'state': 'done'}) + for line in self.browse(cr, uid, ids, context): wf_service.trg_write(uid, 'sale.order', line.order_id.id, cr) return res @@ -835,26 +851,26 @@ class sale_order_line(osv.osv): product_obj = self.pool.get('product.product') if not product_id: return {'value': {'product_uom': product_uos, - 'product_uom_qty': product_uos_qty}, 'domain':{}} + 'product_uom_qty': product_uos_qty}, 'domain': {}} product = product_obj.browse(cr, uid, product_id) value = { - 'product_uom' : product.uom_id.id, + 'product_uom': product.uom_id.id, } # FIXME must depend on uos/uom of the product and not only of the coeff. try: value.update({ - 'product_uom_qty' : product_uos_qty / product.uos_coeff, - 'th_weight' : product_uos_qty / product.uos_coeff * product.weight + 'product_uom_qty': product_uos_qty / product.uos_coeff, + 'th_weight': product_uos_qty / product.uos_coeff * product.weight }) except ZeroDivisionError: pass - return {'value' : value} + return {'value': value} - def copy_data(self, cr, uid, id, default=None,context={}): + def copy_data(self, cr, uid, id, default=None, context={}): if not default: default = {} - default.update({'state':'draft', 'move_ids':[], 'invoiced':False, 'invoice_lines':[]}) + default.update({'state': 'draft', 'move_ids': [], 'invoiced': False, 'invoice_lines': []}) return super(sale_order_line, self).copy_data(cr, uid, id, default, context) def product_id_change(self, cr, uid, ids, pricelist, product, qty=0, @@ -862,7 +878,7 @@ class sale_order_line(osv.osv): lang=False, update_tax=True, date_order=False, packaging=False, fiscal_position=False, flag=False): if not partner_id: raise osv.except_osv(_('No Customer Defined !'), _('You have to select a customer in the sale form !\nPlease set one customer before choosing a product.')) - warning={} + warning = {} product_uom_obj = self.pool.get('product.uom') partner_obj = self.pool.get('res.partner') product_obj = self.pool.get('product.product') @@ -871,7 +887,7 @@ class sale_order_line(osv.osv): context = {'lang': lang, 'partner_id': partner_id} if not product: - return {'value': {'th_weight' : 0, 'product_packaging': False, + return {'value': {'th_weight': 0, 'product_packaging': False, 'product_uos_qty': qty}, 'domain': {'product_uom': [], 'product_uos': []}} @@ -894,22 +910,22 @@ class sale_order_line(osv.osv): qty_pack = pack.qty type_ul = pack.ul warn_msg = _("You selected a quantity of %d Units.\nBut it's not compatible with the selected packaging.\nHere is a proposition of quantities according to the packaging: ") % (qty) - warn_msg = warn_msg + "\n\n"+_("EAN: ") + str(ean) + _(" Quantity: ") + str(qty_pack) + _(" Type of ul: ") + str(type_ul.name) - warning={ - 'title':_('Packing Information !'), + warn_msg = warn_msg + "\n\n" + _("EAN: ") + str(ean) + _(" Quantity: ") + str(qty_pack) + _(" Type of ul: ") + str(type_ul.name) + warning = { + 'title': _('Packing Information !'), 'message': warn_msg } result['product_uom_qty'] = qty if uom: uom2 = product_uom_obj.browse(cr, uid, uom) - if product_obj.uom_id.category_id.id <> uom2.category_id.id: + if product_obj.uom_id.category_id.id != uom2.category_id.id: uom = False if uos: if product_obj.uos_id: uos2 = product_uom_obj.browse(cr, uid, uos) - if product_obj.uos_id.category_id.id <> uos2.category_id.id: + if product_obj.uos_id.category_id.id != uos2.category_id.id: uos = False else: uos = False @@ -921,7 +937,7 @@ class sale_order_line(osv.osv): result['delay'] = (product_obj.sale_delay or 0.0) partner = partner_obj.browse(cr, uid, partner_id) result['tax_id'] = self.pool.get('account.fiscal.position').map_tax(cr, uid, fpos, product_obj.taxes_id) - if not flag: + if not flag: result['name'] = product_obj.partner_ref domain = {} if (not uom) and (not uos): @@ -958,8 +974,8 @@ class sale_order_line(osv.osv): # get unit price if not pricelist: - warning={ - 'title':'No Pricelist !', + warning = { + 'title': 'No Pricelist !', 'message': 'You have to select a pricelist in the sale form !\n' 'Please set one before choosing a product.' @@ -971,15 +987,15 @@ class sale_order_line(osv.osv): 'date': date_order, })[pricelist] if price is False: - warning={ - 'title':'No valid pricelist line found !', + warning = { + 'title': 'No valid pricelist line found !', 'message': "Couldn't find a pricelist line matching this product and quantity.\n" "You have to change either the product, the quantity or the pricelist." } else: result.update({'price_unit': price}) - return {'value': result, 'domain': domain,'warning':warning} + return {'value': result, 'domain': domain, 'warning': warning} def product_uom_change(self, cursor, user, ids, pricelist, product, qty=0, uom=False, qty_uos=0, uos=False, name='', partner_id=False, @@ -993,77 +1009,78 @@ class sale_order_line(osv.osv): if not uom: res['value']['price_unit'] = 0.0 return res - + def unlink(self, cr, uid, ids, context={}): """Allows to delete sale order lines in draft,cancel states""" for rec in self.browse(cr, uid, ids, context=context): - if rec.state not in ['draft','cancel']: + if rec.state not in ['draft', 'cancel']: raise osv.except_osv(_('Invalid action !'), _('Cannot delete a sale order line which is %s !')%(rec.state,)) return super(sale_order_line, self).unlink(cr, uid, ids, context=context) - + sale_order_line() class sale_config_picking_policy(osv.osv_memory): - _name='sale.config.picking_policy' + _name = 'sale.config.picking_policy' _columns = { - 'name':fields.char('Name', size=64), + 'name': fields.char('Name', size=64), 'picking_policy': fields.selection([ - ('direct','Direct Delivery'), - ('one','All at Once') - ], 'Packing Default Policy', required=True ), + ('direct', 'Direct Delivery'), + ('one', 'All at Once') + ], 'Packing Default Policy', required=True), 'order_policy': fields.selection([ - ('manual','Invoice Based on Sales Orders'), - ('picking','Invoice Based on Deliveries'), + ('manual', 'Invoice Based on Sales Orders'), + ('picking', 'Invoice Based on Deliveries'), ], 'Shipping Default Policy', required=True), 'step': fields.selection([ - ('one','Delivery Order Only'), - ('two','Packing List & Delivery Order') + ('one', 'Delivery Order Only'), + ('two', 'Packing List & Delivery Order') ], 'Steps To Deliver a Sale Order', required=True, help="By default, Open ERP is able to manage complex routing and paths "\ "of products in your warehouse and partner locations. This will configure "\ "the most common and simple methods to deliver products to the customer "\ "in one or two operations by the worker.") } - _defaults={ + _defaults = { 'picking_policy': lambda *a: 'direct', 'order_policy': lambda *a: 'picking', 'step': lambda *a: 'one' } + def set_default(self, cr, uid, ids, context=None): for o in self.browse(cr, uid, ids, context=context): ir_values_obj = self.pool.get('ir.values') - ir_values_obj.set(cr,uid,'default',False,'picking_policy',['sale.order'],o.picking_policy) - ir_values_obj.set(cr,uid,'default',False,'order_policy',['sale.order'],o.order_policy) + ir_values_obj.set(cr, uid, 'default', False, 'picking_policy', ['sale.order'], o.picking_policy) + ir_values_obj.set(cr, uid, 'default', False, 'order_policy', ['sale.order'], o.order_policy) - if o.step=='one': + if o.step == 'one': md = self.pool.get('ir.model.data') group_id = md._get_id(cr, uid, 'base', 'group_no_one') group_id = md.browse(cr, uid, group_id, context).res_id - menu_id = md._get_id(cr, uid, 'stock', 'menu_action_picking_tree_delivery') + menu_id = md._get_id(cr, uid, 'stock', 'menu_action_picking_tree_delivery') menu_id = md.browse(cr, uid, menu_id, context).res_id - self.pool.get('ir.ui.menu').write(cr, uid, [menu_id], {'groups_id':[(6,0,[group_id])]}) + self.pool.get('ir.ui.menu').write(cr, uid, [menu_id], {'groups_id': [(6, 0, [group_id])]}) - location_id = md._get_id(cr, uid, 'stock', 'stock_location_output') + location_id = md._get_id(cr, uid, 'stock', 'stock_location_output') location_id = md.browse(cr, uid, location_id, context).res_id - self.pool.get('stock.location').write(cr, uid, [location_id], {'chained_auto_packing':'transparent'}) + self.pool.get('stock.location').write(cr, uid, [location_id], {'chained_auto_packing': 'transparent'}) return { 'view_type': 'form', "view_mode": 'form', 'res_model': 'ir.actions.configuration.wizard', 'type': 'ir.actions.act_window', - 'target':'new', + 'target': 'new', } - def action_cancel(self,cr,uid,ids,conect=None): + + def action_cancel(self, cr, uid, ids, context=None): return { 'view_type': 'form', "view_mode": 'form', 'res_model': 'ir.actions.configuration.wizard', 'type': 'ir.actions.act_window', - 'target':'new', + 'target': 'new', } + sale_config_picking_policy() - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From b7a20ff02c46d53ae6897665901ae4d21ea80855 Mon Sep 17 00:00:00 2001 From: Olivier Laurent Date: Wed, 26 Aug 2009 15:45:54 +0200 Subject: [PATCH 15/31] [FIX] point_of_sale: fixed a wrong domain bzr revid: olt@tinyerp.com-20090826134554-qfux7r5kwuy6shsn --- addons/point_of_sale/pos_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/point_of_sale/pos_view.xml b/addons/point_of_sale/pos_view.xml index 4ff34b78143..ddd8c7c4bee 100644 --- a/addons/point_of_sale/pos_view.xml +++ b/addons/point_of_sale/pos_view.xml @@ -176,7 +176,7 @@ form tree,form - [('date_order','=', time.strftime('%Y-%m-%d 00:00:00'))] + [('date_order','>=',time.strftime('%Y-%m-%d')),('date_order','<=',time.strftime('%Y-%m-%d'))] From 466cdeb5d3c626161a59851e6820c527304a0922 Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Thu, 27 Aug 2009 09:46:32 +0530 Subject: [PATCH 16/31] [REM] remove pyflakes test from Quality module bzr revid: mra@tinyerp.com-20090827041632-wvju38h6p202wx6a --- .../pyflakes_test/__init__.py | 24 ---- .../pyflakes_test/pyflakes_test.py | 132 ------------------ 2 files changed, 156 deletions(-) delete mode 100644 addons/base_module_quality/pyflakes_test/__init__.py delete mode 100644 addons/base_module_quality/pyflakes_test/pyflakes_test.py diff --git a/addons/base_module_quality/pyflakes_test/__init__.py b/addons/base_module_quality/pyflakes_test/__init__.py deleted file mode 100644 index 8df5ef52e59..00000000000 --- a/addons/base_module_quality/pyflakes_test/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 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: \ No newline at end of file diff --git a/addons/base_module_quality/pyflakes_test/pyflakes_test.py b/addons/base_module_quality/pyflakes_test/pyflakes_test.py deleted file mode 100644 index bc649f26b52..00000000000 --- a/addons/base_module_quality/pyflakes_test/pyflakes_test.py +++ /dev/null @@ -1,132 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 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 - -from tools import config -from tools.translate import _ -from base_module_quality import base_module_quality - -class quality_test(base_module_quality.abstract_quality_check): - - def __init__(self): - super(quality_test, self).__init__() - self.name = _("Pyflakes Test") - self.note = _("""This test uses Pyflakes to analyze Python programs and detect various errors. It works by parsing the source file, not importing it. See http://www.divmod.org/trac/wiki/DivmodPyflakes for further info.\n (This test score does not effect final score) """) - self.bool_installed_only = False - self.bool_count_score = False #This test display on report (summary/detail) does not count score - return None - - def run_test(self, cr, uid, module_path): - 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)) - - dict_py = {} - flag = False - self.result_details += ''' - - - - Report''' - for file_py in list_files: - if file_py.split('.')[-1] == 'py' and not file_py.endswith('__init__.py') and not file_py.endswith('__terp__.py'): - if not flag: - flag = True - file_path = os.path.join(module_path, file_py) - try: - try: - import pyflakes - res = os.popen('pyflakes' + ' ' + file_path).read() - except: - self.error = True - import netsvc - netsvc.Logger().notifyChannel('Pyflakes', netsvc.LOG_WARNING, "Is pyflakes correctly installed? (http://pypi.python.org/pypi/pyflakes/0.3.0)") - self.result += _("Error! Is pyflakes correctly installed? (http://pypi.python.org/pypi/pyflakes/0.3.0)")+"\n" - return None - if not res: - continue - self.result_details += '''
''' + file_py + '' - list_res = res.split('\n') - temp_dict = {} - keys = ['imported but unused statements', 'unable to detect undefined names', \ - 'undefined name', 'redefinition of unused from line', \ - 'import shadowed by loop variable', 'local variables referenced before assignment', \ - 'duplicate argument in function definition', 'redefinition of function from line', \ - 'future import after other statements'] - map(lambda key:temp_dict.setdefault(key, 0), keys) - detail_str = '' - for line in list_res: - line = line.split(':') - line.pop(0) - line = " ".join(line) - self.result_details += '''' - detail_str += line + '\n' - if line.find("imported but unused") != -1: - temp_dict['imported but unused statements'] += 1 - elif line.find("*' used; unable to detect undefined names") != -1: - temp_dict['unable to detect undefined names'] += 1 - elif line.find("undefined name") != -1: - temp_dict['undefined name'] += 1 - elif line.find("redefinition of unused") != -1: - temp_dict['redefinition of unused from line'] += 1 - elif line.find("shadowed by loop variable") != -1: - temp_dict['import shadowed by loop variable'] += 1 - elif line.find("referenced before assignment") != -1: - temp_dict['local variables referenced before assignment'] += 1 - elif line.find("in function definition") != -1: - temp_dict['duplicate argument in function definition'] += 1 - elif line.find("redefinition of function") != -1: - temp_dict['redefinition of function from line'] += 1 - elif line.find("after other statements") != -1: - temp_dict['future import after other statements'] += 1 - final_str = '\n' - for t in temp_dict: - if str(temp_dict[t]) != '0': - final_str += '\n' + str(t) + ' : ' + str(temp_dict[t]) + '\n' - except: - self.error = True - self.result += _("Error in running pyflakes") + "\n" - return None - try: - dict_py[file_py] = [file_py, final_str] - except: - dict_py[file_py] = [file_py, _("Unable to parse the result. Check the details.")] - self.result_details += '
''' + line + '
' - if not flag: - self.error = True - self.result = _("No python file found") - return None - self.result_details += '' - self.score = 0 - self.result = self.get_result(dict_py) - return None - - def get_result(self, dict_py): - header = ('{| border="1" cellspacing="0" cellpadding="5" align="left" \n! %-40s \n! %-10s \n', [_('File Name'), _('Result')]) - if not self.error: - return self.format_table(header, data_list=dict_py) - return "" - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From 20a0acd6cfaba4317a4c5051f7f79d3667acfc67 Mon Sep 17 00:00:00 2001 From: NCH-OpenERP <> Date: Thu, 27 Aug 2009 15:34:54 +0530 Subject: [PATCH 17/31] [FIX] Pagecount probelm while all objects print on same page and printing special character on xsl report bzr revid: hda@tinyerp.com-20090827100454-ph1ffi4ulanykb7s --- bin/report/render/rml2pdf/trml2pdf.py | 10 +++++----- bin/report/render/rml2pdf/utils.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/report/render/rml2pdf/trml2pdf.py b/bin/report/render/rml2pdf/trml2pdf.py index d73b5068ce0..f4b70a2da27 100644 --- a/bin/report/render/rml2pdf/trml2pdf.py +++ b/bin/report/render/rml2pdf/trml2pdf.py @@ -765,12 +765,12 @@ class _rml_template(object): r = _rml_flowable(self.doc,self.localcontext, images=self.images, path=self.path, title=self.title) story_cnt = 0 for node_story in node_stories: + if story_cnt > 0: + fis.append(platypus.PageBreak()) fis += r.render(node_story) - if self.localcontext: - story_cnt += 1 - if story_cnt == len(self.localcontext['objects']): - fis.append(PageCount()) - fis.append(platypus.PageBreak()) + story_cnt += 1 + if self.localcontext: + fis.append(PageCount()) self.doc_tmpl.build(fis) def parseNode(rml, localcontext = {},fout=None, images={}, path='.',title=None): diff --git a/bin/report/render/rml2pdf/utils.py b/bin/report/render/rml2pdf/utils.py index cb44ee6d5f2..59724d7d1b4 100644 --- a/bin/report/render/rml2pdf/utils.py +++ b/bin/report/render/rml2pdf/utils.py @@ -97,7 +97,7 @@ def _child_get(node, self=None, tagname=None): def _process_text(self, txt): if not self.localcontext: - return txt + return str2xml(txt) if not txt: return '' result = '' From ce0c60e15212e595354e35cb0b1ae9ce652b46db Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Thu, 27 Aug 2009 19:49:22 +0530 Subject: [PATCH 18/31] [FIX] Functional fields with M2O relation can be printed on print screen now lp bug: https://launchpad.net/bugs/415391 fixed bzr revid: jvo@tinyerp.com-20090827141922-aapmtmc50y168jun --- bin/osv/fields.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/bin/osv/fields.py b/bin/osv/fields.py index ee235e95eca..dbd37ec8a76 100644 --- a/bin/osv/fields.py +++ b/bin/osv/fields.py @@ -641,6 +641,17 @@ class function(_column): else: res = self._fnct(cr, obj._table, ids, name, self._arg, context) + if self._type == "many2one" : + # Filtering only integer/long values if passed + res_ids = [x for x in res.values() if x and isinstance(x, (int,long))] + + if res_ids: + obj_model = obj.pool.get(self._obj) + dict_names = dict(obj_model.name_get(cr, user, res_ids, context)) + for r in res.keys(): + if res[r] and res[r] in dict_names: + res[r] = (res[r], dict_names[res[r]]) + if self._type == 'binary' and context.get('bin_size', False): # convert the data returned by the function with the size of that data... res = dict(map(lambda (x, y): (x, tools.human_size(len(y or ''))), res.items())) From fc5d45c54aff32eba3c04c1b8a989c0cd1ece2ab Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Fri, 28 Aug 2009 12:54:57 +0530 Subject: [PATCH 19/31] [IMP] base_module_quality: make minimal score for all test, add message if the score is below limit,varible for whether to activate the test or not bzr revid: mra@tinyerp.com-20090828072457-en2vpm5l1514xtj7 --- .../base_module_quality.py | 77 +++++++++++-------- .../base_module_quality_view.xml | 1 + .../method_test/method_test.py | 3 + .../object_test/object_test.py | 3 + .../pep8_test/pep8_test.py | 3 + .../pylint_test/pylint_test.py | 3 + .../speed_test/speed_test.py | 3 + .../structure_test/structure_test.py | 5 ++ .../terp_test/terp_test.py | 2 + .../wizard/module_quality_check.py | 2 - .../workflow_test/workflow_test.py | 4 +- 11 files changed, 70 insertions(+), 36 deletions(-) diff --git a/addons/base_module_quality/base_module_quality.py b/addons/base_module_quality/base_module_quality.py index ec1a50adb4a..d584177a993 100644 --- a/addons/base_module_quality/base_module_quality.py +++ b/addons/base_module_quality/base_module_quality.py @@ -30,12 +30,12 @@ from osv import osv, fields class abstract_quality_check(object): ''' - This Class provides... + This Class is abstract class for all test ''' def __init__(self): ''' - this method should initialize the var + this method should initialize the variables ''' #This float have to store the rating of the module. #Used to compute the final score (average of all scores). @@ -73,6 +73,15 @@ class abstract_quality_check(object): #Specify test got an error on module self.error = False + #Specify the minimal score for the test (in percentage(%)) + self.min_score = 50 + + #Specify whether test should be consider for Quality checking of the module + self.active = True + + #This variable used to give message if test result is good or not + self.message = '' + #The tests have to subscribe itselfs in this list, that contains #all the test that have to be performed. self.tests = [] @@ -189,40 +198,41 @@ class module_quality_check(osv.osv): ad = tools.config['root_path']+'/addons' module_path = os.path.join(ad, module_name) val = test.quality_test() - if not val.bool_installed_only or module_state == "installed": - val.run_test(cr, uid, str(module_path)) - if not val.error: - data = { - 'name': val.name, - 'score': val.score * 100, - 'ponderation': val.ponderation, - 'summary': val.result, - 'detail': val.result_details, - 'state': 'done', - 'note': val.note, - } - if val.bool_count_score: - score_sum += val.score * val.ponderation - ponderation_sum += val.ponderation + if val.active: + if not val.bool_installed_only or module_state == "installed": + val.run_test(cr, uid, str(module_path)) + if not val.error: + data = { + 'name': val.name, + 'score': val.score * 100, + 'ponderation': val.ponderation, + 'summary': val.result, + 'detail': val.result_details, + 'state': 'done', + 'note': val.note, + 'message': val.message + } + if val.bool_count_score: + score_sum += val.score * val.ponderation + ponderation_sum += val.ponderation + else: + data = { + 'name': val.name, + 'score': 0, + 'summary': val.result, + 'state': 'skipped', + 'note': val.note, + } else: data = { 'name': val.name, - 'score': 0, - 'summary': val.result, - 'state': 'skipped', 'note': val.note, + 'score': 0, + 'state': 'skipped', + 'summary': _("The module has to be installed before running this test.") } - else: - data = { - 'name': val.name, - 'note': val.note, - 'score': 0, - 'state': 'skipped', - 'summary': _("The module has to be installed before running this test.") - } - create_ids.append((0, 0, data)) - - final_score = '%.2f' % (score_sum / ponderation_sum * 100) + create_ids.append((0, 0, data)) + final_score = ponderation_sum and '%.2f' % (score_sum / ponderation_sum * 100) or 0 data = { 'name': module_name, 'final_score': final_score, @@ -236,12 +246,13 @@ class module_quality_detail(osv.osv): _name = 'module.quality.detail' _columns = { 'quality_check_id': fields.many2one('module.quality.check', 'Quality'), - 'name': fields.char('Name',size=128,), + 'name': fields.char('Name',size=128), 'score': fields.float('Score (%)'), 'ponderation': fields.float('Ponderation', help='Some tests are more critical than others, so they have a bigger weight in the computation of final rating'), - 'note': fields.text('Note',), + 'note': fields.text('Note'), 'summary': fields.text('Summary'), 'detail': fields.text('Details'), + 'message': fields.char('Message', size=64), 'state': fields.selection([('done','Done'),('skipped','Skipped'),], 'State', size=6, help='The test will be completed only if the module is installed or if the test may be processed on uninstalled module.'), } diff --git a/addons/base_module_quality/base_module_quality_view.xml b/addons/base_module_quality/base_module_quality_view.xml index 18ad04415bd..6b56eb41a5d 100644 --- a/addons/base_module_quality/base_module_quality_view.xml +++ b/addons/base_module_quality/base_module_quality_view.xml @@ -62,6 +62,7 @@ +
diff --git a/addons/base_module_quality/method_test/method_test.py b/addons/base_module_quality/method_test/method_test.py index 31719958c03..b7132ac5dbe 100644 --- a/addons/base_module_quality/method_test/method_test.py +++ b/addons/base_module_quality/method_test/method_test.py @@ -34,6 +34,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 not. """) self.bool_installed_only = True + self.min_score = 60 return None def run_test(self, cr, uid, module_path): @@ -72,6 +73,8 @@ This test checks if the module classes are raising exception when calling basic ex_count += 1 result_dict[obj] = temp self.score = (ok_count + ex_count) and float(ok_count)/float(ok_count + ex_count) or 0.0 + if self.score*100 < self.min_score: + self.message = 'Score is below than minimal score(%s%%)' % self.min_score self.result = self.get_result(result_dict) return None diff --git a/addons/base_module_quality/object_test/object_test.py b/addons/base_module_quality/object_test/object_test.py index 49677c79c1f..d319d3f3a50 100644 --- a/addons/base_module_quality/object_test/object_test.py +++ b/addons/base_module_quality/object_test/object_test.py @@ -36,6 +36,7 @@ class quality_test(base_module_quality.abstract_quality_check): Test checks for fields, views, security rules, dependancy level """) self.bool_installed_only = True + self.min_score = 40 return None def run_test(self, cr, uid, module_path): @@ -166,6 +167,8 @@ Test checks for fields, views, security rules, dependancy level score_depend = (100 - (bad_depend * 5)) / 100.0 # note : score is calculated based on if you have for e.g. two module extra in dependancy it will score -10 out of 100 score_security = good_sec and float(good_sec - bad_sec) / float(good_sec) self.score = (score_view + score_field + score_security + score_depend) / 4 + if self.score*100 < self.min_score: + self.message = 'Score is below than minimal score(%s%%)' % self.min_score self.result = self.get_result({ module_name: [int(score_field * 100), int(score_view * 100), int(score_security * 100), int(score_depend * 100)]}) self.result_details += self.get_result_details(result_dict) self.result_details += self.get_result_general(result_view, name="View") diff --git a/addons/base_module_quality/pep8_test/pep8_test.py b/addons/base_module_quality/pep8_test/pep8_test.py index 448eb94f029..f45b9516498 100644 --- a/addons/base_module_quality/pep8_test/pep8_test.py +++ b/addons/base_module_quality/pep8_test/pep8_test.py @@ -37,6 +37,7 @@ PEP-8 Test , copyright of py files check, method can not call from loops self.bad_standard = 0 self.good_standard = 0 self.result_py = {} + self.min_score = 40 return None def run_test(self, cr, uid, module_path): @@ -85,6 +86,8 @@ PEP-8 Test , copyright of py files check, method can not call from loops self.check_boolean(open_files) self.score = self.good_standard and float(self.good_standard) / float(self.good_standard + self.bad_standard) + if self.score*100 < self.min_score: + self.message = 'Score is below than minimal score(%s%%)' % self.min_score self.result = self.get_result({ module_path: [int(self.score * 100)]}) self.result_details += self.get_result_general(self.result_py) 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 7cabf4a19d8..c8ba4b77a3c 100644 --- a/addons/base_module_quality/pylint_test/pylint_test.py +++ b/addons/base_module_quality/pylint_test/pylint_test.py @@ -32,6 +32,7 @@ class quality_test(base_module_quality.abstract_quality_check): self.name = _("Pylint Test") self.note = _("""This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n """) self.bool_installed_only = False + self.min_score = 30 return None def run_test(self, cr, uid, module_path): @@ -92,6 +93,8 @@ class quality_test(base_module_quality.abstract_quality_check): self.result_details += '' average_score = count and score / count or score self.score = (max(average_score, 0)) / 10 + if self.score*100 < self.min_score: + self.message = 'Score is below than minimal score(%s%%)' % self.min_score self.result = self.get_result(dict_py) 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 a5211c53429..875b2de136a 100644 --- a/addons/base_module_quality/speed_test/speed_test.py +++ b/addons/base_module_quality/speed_test/speed_test.py @@ -36,6 +36,7 @@ class quality_test(base_module_quality.abstract_quality_check): This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it. """) + self.min_score = 30 return None def run_test(self, cr, uid, module_path): @@ -104,6 +105,8 @@ This test checks the speed of the module. Note that at least 5 demo data is need result_dict[obj] = speed_list result_dict2[obj] = list2 self.score = obj_counter and score / obj_counter or 0.0 + if self.score*100 < self.min_score: + self.message = 'Score is below than minimal score(%s%%)' % self.min_score self.result_details += self.get_result_details(result_dict) self.result += self.get_result(result_dict2) return None diff --git a/addons/base_module_quality/structure_test/structure_test.py b/addons/base_module_quality/structure_test/structure_test.py index 93b49b46c3d..e89c68cdefb 100644 --- a/addons/base_module_quality/structure_test/structure_test.py +++ b/addons/base_module_quality/structure_test/structure_test.py @@ -37,6 +37,7 @@ This test checks if the module satisfy tiny structure self.module_score = 0.0 self.count = 0 self.recur = True + self.min_score = 30 return None def run_test_struct(self, cr, uid, module_path): @@ -139,6 +140,10 @@ This test checks if the module satisfy tiny structure def run_test(self, cr, uid, module_path): self.run_test_struct(cr, uid, module_path) + if self.score*100 < self.min_score: + self.message = 'Score is below than minimal score(%s%%)' % self.min_score + else: + self.message = '' if self.score != 1: self.result_details = self.get_result_details(self.result_dict) return None diff --git a/addons/base_module_quality/terp_test/terp_test.py b/addons/base_module_quality/terp_test/terp_test.py index 9aad0eebef8..db1add21340 100644 --- a/addons/base_module_quality/terp_test/terp_test.py +++ b/addons/base_module_quality/terp_test/terp_test.py @@ -123,6 +123,8 @@ class quality_test(base_module_quality.abstract_quality_check): def run_test(self, cr, uid, module_path): terp_score = self.run_test_terp(cr, uid, module_path) self.score = terp_score and terp_score[1] or 0.0 + if self.score*100 < self.min_score: + self.message = 'Score is below than minimal score(%s%%)' % self.min_score if terp_score: self.result = self.get_result({'__terp__.py': terp_score}) 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 2dbefa6b049..15dd8384b67 100644 --- a/addons/base_module_quality/wizard/module_quality_check.py +++ b/addons/base_module_quality/wizard/module_quality_check.py @@ -25,8 +25,6 @@ import wizard import pooler from osv import osv, fields -#TODO: add cheks: do the class quality_check inherits the class abstract_quality_check? - class quality_check(wizard.interface): def _create_quality_check(self, cr, uid, data, context={}): diff --git a/addons/base_module_quality/workflow_test/workflow_test.py b/addons/base_module_quality/workflow_test/workflow_test.py index 76d2facd5b4..d31b13f1087 100644 --- a/addons/base_module_quality/workflow_test/workflow_test.py +++ b/addons/base_module_quality/workflow_test/workflow_test.py @@ -33,6 +33,7 @@ class quality_test(base_module_quality.abstract_quality_check): self.name = _("Workflow Test") self.note = _("This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file") self.bool_installed_only = True + self.min_score = 40 return None def run_test(self, cr, uid, module_path): @@ -116,7 +117,8 @@ class quality_test(base_module_quality.abstract_quality_check): good_view += 1 score_avail = good_view and float(good_view) / float(bad_view + good_view) self.score = (score_general + score_avail) / 2 - + if self.score*100 < self.min_score: + self.message = 'Score is below than minimal score(%s%%)' % self.min_score if not wkf_ids and not bad_view: self.error = True self.result = _("No Workflow define") From 369221b47101072e094ad2d02fe2edd2b47690aa Mon Sep 17 00:00:00 2001 From: Olivier Laurent Date: Fri, 28 Aug 2009 11:40:49 +0200 Subject: [PATCH 20/31] [FIX] pep8 bzr revid: olt@tinyerp.com-20090828094049-9ls3emo12g34r0d8 --- addons/stock/stock.py | 463 ++++++++++++++++++++++-------------------- 1 file changed, 243 insertions(+), 220 deletions(-) diff --git a/addons/stock/stock.py b/addons/stock/stock.py index 4398877df43..2a372d4eeed 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -23,12 +23,11 @@ from mx import DateTime import time import netsvc -from osv import fields,osv -import ir +from osv import fields, osv from tools import config from tools.translate import _ import tools -from xml.dom import minidom + #---------------------------------------------------------- # Incoterms @@ -44,8 +43,10 @@ class stock_incoterms(osv.osv): _defaults = { 'active': lambda *a: True, } + stock_incoterms() + #---------------------------------------------------------- # Stock Location #---------------------------------------------------------- @@ -85,7 +86,6 @@ class stock_location(osv.osv): res[loc]['stock_virtual'] = prod.virtual_available return res - def product_detail(self, cr, uid, id, field, context={}): res = {} res[id] = {} @@ -93,13 +93,13 @@ class stock_location(osv.osv): field_to_read = 'virtual_available' if field == 'stock_real_value': field_to_read = 'qty_available' - cr.execute('select distinct product_id from stock_move where (location_id=%s) or (location_dest_id=%s)',(id,id)) + cr.execute('select distinct product_id from stock_move where (location_id=%s) or (location_dest_id=%s)', (id, id)) result = cr.dictfetchall() if result: for r in result: c = (context or {}).copy() c['location'] = id - product = self.pool.get('product.product').read(cr, uid, r['product_id'], [field_to_read,'standard_price'], context=c) + product = self.pool.get('product.product').read(cr, uid, r['product_id'], [field_to_read, 'standard_price'], context=c) final_value += (product[field_to_read] * product['standard_price']) return final_value @@ -109,30 +109,30 @@ class stock_location(osv.osv): result[id] = {}.fromkeys(field_names, 0.0) for field_name in field_names: for loc in ids: - ret_dict = self.product_detail(cr,uid,loc,field=field_name) + ret_dict = self.product_detail(cr, uid, loc, field=field_name) result[loc][field_name] = ret_dict return result _columns = { 'name': fields.char('Location Name', size=64, required=True, translate=True), 'active': fields.boolean('Active'), - 'usage': fields.selection([('supplier','Supplier Location'),('view','View'),('internal','Internal Location'),('customer','Customer Location'),('inventory','Inventory'),('procurement','Procurement'),('production','Production')], 'Location Type', required=True), - 'allocation_method': fields.selection([('fifo','FIFO'),('lifo','LIFO'),('nearest','Nearest')], 'Allocation Method', required=True), + 'usage': fields.selection([('supplier', 'Supplier Location'), ('view', 'View'), ('internal', 'Internal Location'), ('customer', 'Customer Location'), ('inventory', 'Inventory'), ('procurement', 'Procurement'), ('production', 'Production')], 'Location Type', required=True), + 'allocation_method': fields.selection([('fifo', 'FIFO'), ('lifo', 'LIFO'), ('nearest', 'Nearest')], 'Allocation Method', required=True), 'complete_name': fields.function(_complete_name, method=True, type='char', size=100, string="Location Name"), 'stock_real': fields.function(_product_qty_available, method=True, type='float', string='Real Stock', multi="stock"), 'stock_virtual': fields.function(_product_qty_available, method=True, type='float', string='Virtual Stock', multi="stock"), - 'account_id': fields.many2one('account.account', string='Inventory Account', domain=[('type','!=','view')]), + 'account_id': fields.many2one('account.account', string='Inventory Account', domain=[('type', '!=', 'view')]), 'location_id': fields.many2one('stock.location', 'Parent Location', select=True, ondelete='cascade'), 'child_ids': fields.one2many('stock.location', 'location_id', 'Contains'), 'chained_location_id': fields.many2one('stock.location', 'Chained Location If Fixed'), - 'chained_location_type': fields.selection([('none','None'),('customer', 'Customer'),('fixed','Fixed Location')], + 'chained_location_type': fields.selection([('none', 'None'), ('customer', 'Customer'), ('fixed', 'Fixed Location')], 'Chained Location Type', required=True), 'chained_auto_packing': fields.selection( - [('auto','Automatic Move'), ('manual','Manual Operation'),('transparent','Automatic No Step Added')], + [('auto', 'Automatic Move'), ('manual', 'Manual Operation'), ('transparent', 'Automatic No Step Added')], 'Automatic Move', required=True, help="This is used only if you selected a chained location type.\n" \ @@ -168,10 +168,10 @@ class stock_location(osv.osv): def chained_location_get(self, cr, uid, location, partner=None, product=None, context={}): result = None - if location.chained_location_type=='customer': + if location.chained_location_type == 'customer': if partner: result = partner.property_stock_customer - elif location.chained_location_type=='fixed': + elif location.chained_location_type == 'fixed': result = location.chained_location_id if result: return result, location.chained_auto_packing, location.chained_delay @@ -179,9 +179,9 @@ class stock_location(osv.osv): def picking_type_get(self, cr, uid, from_location, to_location, context={}): result = 'internal' - if (from_location.usage=='internal') and (to_location and to_location.usage in ('customer','supplier')): + if (from_location.usage=='internal') and (to_location and to_location.usage in ('customer', 'supplier')): result = 'delivery' - elif (from_location.usage in ('supplier','customer')) and (to_location.usage=='internal'): + elif (from_location.usage in ('supplier', 'customer')) and (to_location.usage=='internal'): result = 'in' return result @@ -234,7 +234,7 @@ class stock_location(osv.osv): 'variants': product.variants or '', 'uom': product.uom_id.name, 'prod_qty': qty[product_id], - 'price_value':price, + 'price_value': price, }) result['total'] = quantity_total result['total_price'] = total_price @@ -243,11 +243,11 @@ class stock_location(osv.osv): def _product_get_multi_location(self, cr, uid, ids, product_ids=False, context={}, states=['done'], what=('in', 'out')): product_obj = self.pool.get('product.product') context.update({ - 'states':states, - 'what':what, - 'location':ids + 'states': states, + 'what': what, + 'location': ids }) - return product_obj.get_product_available(cr,uid,product_ids,context=context) + return product_obj.get_product_available(cr, uid, product_ids, context=context) def _product_get(self, cr, uid, id, product_ids=False, context={}, states=['done']): ids = id and [id] or [] @@ -260,7 +260,7 @@ class stock_location(osv.osv): return self._product_get_multi_location(cr, uid, location_ids, product_ids, context, states) def _product_virtual_get(self, cr, uid, id, product_ids=False, context={}, states=['done']): - return self._product_all_get(cr, uid, id, product_ids, context, ['confirmed','waiting','assigned','done']) + return self._product_all_get(cr, uid, id, product_ids, context, ['confirmed', 'waiting', 'assigned', 'done']) # # TODO: @@ -273,35 +273,37 @@ class stock_location(osv.osv): result = [] amount = 0.0 for id in self.search(cr, uid, [('location_id', 'child_of', ids)]): - cr.execute("select product_uom,sum(product_qty) as product_qty from stock_move where location_dest_id=%s and location_id<>%s and product_id=%s and state='done' group by product_uom", (id,id,product_id)) + cr.execute("select product_uom,sum(product_qty) as product_qty from stock_move where location_dest_id=%s and location_id<>%s and product_id=%s and state='done' group by product_uom", (id, id, product_id)) results = cr.dictfetchall() - cr.execute("select product_uom,-sum(product_qty) as product_qty from stock_move where location_id=%s and location_dest_id<>%s and product_id=%s and state in ('done', 'assigned') group by product_uom", (id,id,product_id)) + cr.execute("select product_uom,-sum(product_qty) as product_qty from stock_move where location_id=%s and location_dest_id<>%s and product_id=%s and state in ('done', 'assigned') group by product_uom", (id, id, product_id)) results += cr.dictfetchall() total = 0.0 results2 = 0.0 for r in results: - amount = self.pool.get('product.uom')._compute_qty(cr, uid, r['product_uom'],r['product_qty'], context.get('uom',False)) + amount = self.pool.get('product.uom')._compute_qty(cr, uid, r['product_uom'], r['product_qty'], context.get('uom', False)) results2 += amount total += amount - if total<=0.0: + if total <= 0.0: continue amount = results2 - if amount>0: - if amount>min(total,product_qty): - amount = min(product_qty,total) - result.append((amount,id)) + if amount > 0: + if amount > min(total, product_qty): + amount = min(product_qty, total) + result.append((amount, id)) product_qty -= amount total -= amount - if product_qty<=0.0: + if product_qty <= 0.0: return result - if total<=0.0: + if total <= 0.0: continue return False + stock_location() + class stock_tracking(osv.osv): _name = "stock.tracking" _description = "Stock Tracking Lots" @@ -322,73 +324,78 @@ class stock_tracking(osv.osv): 'name': fields.char('Tracking', size=64, required=True), 'active': fields.boolean('Active'), 'serial': fields.char('Reference', size=64), - 'move_ids' : fields.one2many('stock.move', 'tracking_id', 'Moves Tracked'), + 'move_ids': fields.one2many('stock.move', 'tracking_id', 'Moves Tracked'), 'date': fields.datetime('Date Created', required=True), } _defaults = { 'active': lambda *a: 1, - 'name' : make_sscc, + 'name': make_sscc, 'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'), } def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=80): if not args: - args=[] + args = [] if not context: - context={} - ids = self.search(cr, user, [('serial','=',name)]+ args, limit=limit, context=context) - ids += self.search(cr, user, [('name',operator,name)]+ args, limit=limit, context=context) + context = {} + ids = self.search(cr, user, [('serial', '=', name)]+ args, limit=limit, context=context) + ids += self.search(cr, user, [('name', operator, name)]+ args, limit=limit, context=context) return self.name_get(cr, user, ids, context) def name_get(self, cr, uid, ids, context={}): if not len(ids): return [] - res = [(r['id'], r['name']+' ['+(r['serial'] or '')+']') for r in self.read(cr, uid, ids, ['name','serial'], context)] + res = [(r['id'], r['name']+' ['+(r['serial'] or '')+']') for r in self.read(cr, uid, ids, ['name', 'serial'], context)] return res - def unlink(self, cr ,uid, ids, context=None): + def unlink(self, cr, uid, ids, context=None): raise osv.except_osv(_('Error'), _('You can not remove a lot line !')) + stock_tracking() + #---------------------------------------------------------- # Stock Picking #---------------------------------------------------------- class stock_picking(osv.osv): _name = "stock.picking" _description = "Packing List" + def _set_maximum_date(self, cr, uid, ids, name, value, arg, context): - if not value: return False + if not value: + return False if isinstance(ids, (int, long)): - ids=[ids] + ids = [ids] for pick in self.browse(cr, uid, ids, context): - sql_str="""update stock_move set + sql_str = """update stock_move set date_planned='%s' where - picking_id=%d """ % (value,pick.id) + picking_id=%d """ % (value, pick.id) if pick.max_date: - sql_str += " and (date_planned='"+pick.max_date+"' or date_planned>'"+value+"')" + sql_str += " and (date_planned='" + pick.max_date + "' or date_planned>'" + value + "')" cr.execute(sql_str) return True def _set_minimum_date(self, cr, uid, ids, name, value, arg, context): - if not value: return False + if not value: + return False if isinstance(ids, (int, long)): - ids=[ids] + ids = [ids] for pick in self.browse(cr, uid, ids, context): - sql_str="""update stock_move set + sql_str = """update stock_move set date_planned='%s' where - picking_id=%s """ % (value,pick.id) + picking_id=%s """ % (value, pick.id) if pick.min_date: - sql_str += " and (date_planned='"+pick.min_date+"' or date_planned<'"+value+"')" + sql_str += " and (date_planned='" + pick.min_date + "' or date_planned<'" + value + "')" cr.execute(sql_str) return True def get_min_max_date(self, cr, uid, ids, field_name, arg, context={}): res = {} for id in ids: - res[id] = {'min_date':False, 'max_date': False} + res[id] = {'min_date': False, 'max_date': False} if not ids: return res cr.execute("""select @@ -401,7 +408,7 @@ class stock_picking(osv.osv): picking_id in (""" + ','.join(map(str, ids)) + """) group by picking_id""") - for pick, dt1,dt2 in cr.fetchall(): + for pick, dt1, dt2 in cr.fetchall(): res[pick]['min_date'] = dt1 res[pick]['max_date'] = dt2 return res @@ -409,45 +416,45 @@ class stock_picking(osv.osv): def create(self, cr, user, vals, context=None): if ('name' not in vals) or (vals.get('name')=='/'): vals['name'] = self.pool.get('ir.sequence').get(cr, user, 'stock.picking') + return super(stock_picking, self).create(cr, user, vals, context) _columns = { 'name': fields.char('Reference', size=64, select=True), 'origin': fields.char('Origin Reference', size=64), 'backorder_id': fields.many2one('stock.picking', 'Back Order'), - 'type': fields.selection([('out','Sending Goods'),('in','Getting Goods'),('internal','Internal'),('delivery','Delivery')], 'Shipping Type', required=True, select=True), + 'type': fields.selection([('out', 'Sending Goods'), ('in', 'Getting Goods'), ('internal', 'Internal'), ('delivery', 'Delivery')], 'Shipping Type', required=True, select=True), 'active': fields.boolean('Active'), 'note': fields.text('Notes'), 'location_id': fields.many2one('stock.location', 'Location'), 'location_dest_id': fields.many2one('stock.location', 'Dest. Location'), - 'move_type': fields.selection([('direct','Direct Delivery'),('one','All at once')],'Delivery Method', required=True), + 'move_type': fields.selection([('direct', 'Direct Delivery'), ('one', 'All at once')], 'Delivery Method', required=True), 'state': fields.selection([ - ('draft','Draft'), - ('auto','Waiting'), - ('confirmed','Confirmed'), - ('assigned','Available'), - ('done','Done'), - ('cancel','Canceled'), + ('draft', 'Draft'), + ('auto', 'Waiting'), + ('confirmed', 'Confirmed'), + ('assigned', 'Available'), + ('done', 'Done'), + ('cancel', 'Canceled'), ], 'Status', readonly=True, select=True), 'min_date': fields.function(get_min_max_date, fnct_inv=_set_minimum_date, multi="min_max_date", - method=True,store=True, type='datetime', string='Planned Date', select=1), - 'date':fields.datetime('Date Order'), - 'date_done':fields.datetime('Date Done'), + method=True, store=True, type='datetime', string='Planned Date', select=1), + 'date': fields.datetime('Date Order'), + 'date_done': fields.datetime('Date Done'), 'max_date': fields.function(get_min_max_date, fnct_inv=_set_maximum_date, multi="min_max_date", - method=True,store=True, type='datetime', string='Max. Planned Date', select=2), - 'move_lines': fields.one2many('stock.move', 'picking_id', 'Move lines',states={'done':[('readonly',True)],'cancel':[('readonly',True)]}), - + method=True, store=True, type='datetime', string='Max. Planned Date', select=2), + 'move_lines': fields.one2many('stock.move', 'picking_id', 'Move lines', states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}), 'auto_picking': fields.boolean('Auto-Packing'), 'address_id': fields.many2one('res.partner.address', 'Partner'), - 'invoice_state':fields.selection([ - ("invoiced","Invoiced"), - ("2binvoiced","To Be Invoiced"), - ("none","Not from Packing")], "Invoice Status", - select=True, required=True, readonly=True, states={'draft':[('readonly',False)]}), + 'invoice_state': fields.selection([ + ("invoiced", "Invoiced"), + ("2binvoiced", "To Be Invoiced"), + ("none", "Not from Packing")], "Invoice Status", + select=True, required=True, readonly=True, states={'draft': [('readonly', False)]}), } _defaults = { - 'name': lambda self,cr,uid,context: '/', + 'name': lambda self, cr, uid, context: '/', 'active': lambda *a: 1, 'state': lambda *a: 'draft', 'move_type': lambda *a: 'direct', @@ -455,6 +462,7 @@ class stock_picking(osv.osv): 'invoice_state': lambda *a: 'none', 'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'), } + def copy(self, cr, uid, id, default=None, context={}): if default is None: default = {} @@ -463,7 +471,7 @@ class stock_picking(osv.osv): return super(stock_picking, self).copy(cr, uid, id, default, context) def onchange_partner_in(self, cr, uid, context, partner_id=None): - return { } + return {} def action_explode(self, cr, uid, moves, context={}): return moves @@ -473,7 +481,7 @@ class stock_picking(osv.osv): todo = [] for picking in self.browse(cr, uid, ids): for r in picking.move_lines: - if r.state=='draft': + if r.state == 'draft': todo.append(r.id) todo = self.action_explode(cr, uid, todo, context) if len(todo): @@ -493,7 +501,7 @@ class stock_picking(osv.osv): def action_assign(self, cr, uid, ids, *args): for pick in self.browse(cr, uid, ids): - move_ids = [x.id for x in pick.move_lines if x.state=='confirmed'] + move_ids = [x.id for x in pick.move_lines if x.state == 'confirmed'] self.pool.get('stock.move').action_assign(cr, uid, move_ids) return True @@ -525,7 +533,7 @@ class stock_picking(osv.osv): wf_service.trg_write(uid, 'stock.picking', pick.id, cr) self.action_move(cr, uid, [pick.id]) - wf_service.trg_validate(uid, 'stock.picking', pick.id , 'button_done', cr) + wf_service.trg_validate(uid, 'stock.picking', pick.id, 'button_done', cr) return True def cancel_assign(self, cr, uid, ids, *args): @@ -537,17 +545,17 @@ class stock_picking(osv.osv): return True def action_assign_wkf(self, cr, uid, ids): - self.write(cr, uid, ids, {'state':'assigned'}) + self.write(cr, uid, ids, {'state': 'assigned'}) return True def test_finnished(self, cr, uid, ids): - move_ids=self.pool.get('stock.move').search(cr,uid,[('picking_id','in',ids)]) - for move in self.pool.get('stock.move').browse(cr,uid,move_ids): - if move.state not in ('done','cancel') : + move_ids = self.pool.get('stock.move').search(cr, uid, [('picking_id', 'in', ids)]) + for move in self.pool.get('stock.move').browse(cr, uid, move_ids): + if move.state not in ('done', 'cancel'): if move.product_qty != 0.0: return False else: - move.write(cr,uid,[move.id],{'state':'done'}) + move.write(cr, uid, [move.id], {'state': 'done'}) return True def test_assigned(self, cr, uid, ids): @@ -555,32 +563,32 @@ class stock_picking(osv.osv): for pick in self.browse(cr, uid, ids): mt = pick.move_type for move in pick.move_lines: - if (move.state in ('confirmed','draft')) and (mt=='one'): + if (move.state in ('confirmed', 'draft')) and (mt=='one'): return False if (mt=='direct') and (move.state=='assigned') and (move.product_qty): return True - ok = ok and (move.state in ('cancel','done','assigned')) + ok = ok and (move.state in ('cancel', 'done', 'assigned')) return ok def action_cancel(self, cr, uid, ids, context={}): for pick in self.browse(cr, uid, ids): ids2 = [move.id for move in pick.move_lines] self.pool.get('stock.move').action_cancel(cr, uid, ids2, context) - self.write(cr,uid, ids, {'state':'cancel', 'invoice_state':'none'}) + self.write(cr, uid, ids, {'state': 'cancel', 'invoice_state': 'none'}) return True # # TODO: change and create a move if not parents # def action_done(self, cr, uid, ids, context=None): - self.write(cr,uid, ids, {'state':'done', 'date_done': time.strftime('%Y-%m-%d %H:%M:%S')}) + self.write(cr, uid, ids, {'state': 'done', 'date_done': time.strftime('%Y-%m-%d %H:%M:%S')}) return True def action_move(self, cr, uid, ids, context={}): for pick in self.browse(cr, uid, ids): todo = [] for move in pick.move_lines: - if move.state=='assigned': + if move.state == 'assigned': todo.append(move.id) if len(todo): @@ -667,7 +675,7 @@ class stock_picking(osv.osv): if type in ('out_invoice', 'out_refund'): account_id = partner.property_account_receivable.id - payment_term_id=self._get_payment_term(cursor, user, picking) + payment_term_id = self._get_payment_term(cursor, user, picking) else: account_id = partner.property_account_payable.id @@ -677,13 +685,13 @@ class stock_picking(osv.osv): comment = self._get_comment_invoice(cursor, user, picking) if group and partner.id in invoices_group: invoice_id = invoices_group[partner.id] - invoice=invoice_obj.browse(cursor, user,invoice_id) + invoice = invoice_obj.browse(cursor, user, invoice_id) invoice_vals = { - 'name': (invoice.name or '') +', '+(picking.name or ''), - 'origin': (invoice.origin or '')+', '+(picking.name or '')+(picking.origin and (':' + picking.origin) or ''), - 'comment':(comment and (invoice.comment and invoice.comment+"\n"+comment or comment)) or (invoice.comment and invoice.comment or ''), + 'name': (invoice.name or '') + ', ' + (picking.name or ''), + 'origin': (invoice.origin or '') + ', ' + (picking.name or '') + (picking.origin and (':' + picking.origin) or ''), + 'comment': (comment and (invoice.comment and invoice.comment+"\n"+comment or comment)) or (invoice.comment and invoice.comment or ''), } - invoice_obj.write(cursor, user, [invoice_id],invoice_vals,context=context) + invoice_obj.write(cursor, user, [invoice_id], invoice_vals, context=context) else: invoice_vals = { 'name': picking.name, @@ -707,9 +715,9 @@ class stock_picking(osv.osv): invoices_group[partner.id] = invoice_id res[picking.id] = invoice_id for move_line in picking.move_lines: - origin=move_line.picking_id.name + origin = move_line.picking_id.name if move_line.picking_id.origin: - origin+=':' + move_line.picking_id.origin + origin += ':' + move_line.picking_id.origin if group: name = (picking.name or '') + '-' + move_line.name else: @@ -738,7 +746,7 @@ class stock_picking(osv.osv): account_id = self.pool.get('account.fiscal.position').map_account(cursor, user, partner.property_account_position, account_id) invoice_line_id = invoice_line_obj.create(cursor, user, { 'name': name, - 'origin':origin, + 'origin': origin, 'invoice_id': invoice_id, 'uos_id': move_line.product_uos.id, 'product_id': move_line.product_id.id, @@ -762,7 +770,7 @@ class stock_picking(osv.osv): }, context=context) return res - def test_cancel(self,cr, uid, ids, context={}): + def test_cancel(self, cr, uid, ids, context={}): for pick in self.browse(cr, uid, ids, context=context): if not pick.move_lines: return False @@ -770,6 +778,7 @@ class stock_picking(osv.osv): if move.state not in ('cancel',): return False return True + stock_picking() @@ -778,21 +787,20 @@ class stock_production_lot(osv.osv): if not ids: return [] reads = self.read(cr, uid, ids, ['name', 'ref'], context) - res=[] + res = [] for record in reads: - name=record['name'] + name = record['name'] if record['ref']: - name=name+'/'+record['ref'] + name = name + '/' + record['ref'] res.append((record['id'], name)) return res - _name = 'stock.production.lot' _description = 'Production lot' def _get_stock(self, cr, uid, ids, field_name, arg, context={}): if 'location_id' not in context: - locations = self.pool.get('stock.location').search(cr, uid, [('usage','=','internal')], context=context) + locations = self.pool.get('stock.location').search(cr, uid, [('usage', '=', 'internal')], context=context) else: locations = context['location_id'] and [context['location_id']] or [] @@ -817,34 +825,34 @@ class stock_production_lot(osv.osv): return res def _stock_search(self, cr, uid, obj, name, args): - locations = self.pool.get('stock.location').search(cr, uid, [('usage','=','internal')]) + locations = self.pool.get('stock.location').search(cr, uid, [('usage', '=', 'internal')]) cr.execute('''select prodlot_id, sum(name) from stock_report_prodlots where - location_id in ('''+','.join(map(str, locations)) +''') + location_id in ('''+','.join(map(str, locations)) + ''') group by prodlot_id having sum(name) ''' + str(args[0][1]) + ''' ''' + str(args[0][2]) ) res = cr.fetchall() - ids = [('id','in',map(lambda x:x[0], res))] + ids = [('id', 'in', map(lambda x: x[0], res))] return ids _columns = { 'name': fields.char('Serial', size=64, required=True), 'ref': fields.char('Internal Ref', size=64), - 'product_id': fields.many2one('product.product','Product',required=True), + 'product_id': fields.many2one('product.product', 'Product', required=True), 'date': fields.datetime('Created Date', required=True), 'stock_available': fields.function(_get_stock, fnct_search=_stock_search, method=True, type="float", string="Available", select="2"), - 'revisions': fields.one2many('stock.production.lot.revision','lot_id','Revisions'), + 'revisions': fields.one2many('stock.production.lot.revision', 'lot_id', 'Revisions'), } _defaults = { 'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'), - 'name': lambda x,y,z,c: x.pool.get('ir.sequence').get(y,z,'stock.lot.serial'), - 'product_id': lambda x,y,z,c: c.get('product_id',False), + 'name': lambda x, y, z, c: x.pool.get('ir.sequence').get(y, z, 'stock.lot.serial'), + 'product_id': lambda x, y, z, c: c.get('product_id', False), } _sql_constraints = [ ('name_ref_uniq', 'unique (name, ref)', 'The serial/ref must be unique !'), @@ -852,6 +860,7 @@ class stock_production_lot(osv.osv): stock_production_lot() + class stock_production_lot_revision(osv.osv): _name = 'stock.production.lot.revision' _description = 'Production lot revisions' @@ -865,9 +874,10 @@ class stock_production_lot_revision(osv.osv): } _defaults = { - 'author_id': lambda x,y,z,c: z, + 'author_id': lambda x, y, z, c: z, 'date': lambda *a: time.strftime('%Y-%m-%d'), } + stock_production_lot_revision() # ---------------------------------------------------- @@ -885,6 +895,7 @@ class stock_move(osv.osv): return (res and res[0]) or False _name = "stock.move" _description = "Stock Move" + def name_get(self, cr, uid, ids, context={}): res = [] for line in self.browse(cr, uid, ids, context): @@ -892,27 +903,27 @@ class stock_move(osv.osv): return res def _check_tracking(self, cr, uid, ids): - for move in self.browse(cr, uid, ids): - if not move.prodlot_id and \ - (move.state == 'done' and \ - ( \ - (move.product_id.track_production and move.location_id.usage=='production') or \ - (move.product_id.track_production and move.location_dest_id.usage=='production') or \ - (move.product_id.track_incoming and move.location_id.usage=='supplier') or \ - (move.product_id.track_outgoing and move.location_dest_id.usage=='customer') \ - )): - return False - return True + for move in self.browse(cr, uid, ids): + if not move.prodlot_id and \ + (move.state == 'done' and \ + ( \ + (move.product_id.track_production and move.location_id.usage=='production') or \ + (move.product_id.track_production and move.location_dest_id.usage=='production') or \ + (move.product_id.track_incoming and move.location_id.usage=='supplier') or \ + (move.product_id.track_outgoing and move.location_dest_id.usage=='customer') \ + )): + return False + return True def _check_product_lot(self, cr, uid, ids): - for move in self.browse(cr, uid, ids): - if move.prodlot_id and (move.prodlot_id.product_id.id != move.product_id.id): + for move in self.browse(cr, uid, ids): + if move.prodlot_id and (move.prodlot_id.product_id.id != move.product_id.id): return False - return True + return True _columns = { 'name': fields.char('Name', size=64, required=True, select=True), - 'priority': fields.selection([('0','Not urgent'),('1','Urgent')], 'Priority'), + 'priority': fields.selection([('0', 'Not urgent'), ('1', 'Urgent')], 'Priority'), 'date': fields.datetime('Date Created'), 'date_planned': fields.datetime('Date', required=True, help="Scheduled date for the movement of the products or real date if the move is done."), @@ -923,13 +934,13 @@ class stock_move(osv.osv): 'product_uom': fields.many2one('product.uom', 'Product UOM', required=True), 'product_uos_qty': fields.float('Quantity (UOS)'), 'product_uos': fields.many2one('product.uom', 'Product UOS'), - 'product_packaging' : fields.many2one('product.packaging', 'Packaging'), + 'product_packaging': fields.many2one('product.packaging', 'Packaging'), 'location_id': fields.many2one('stock.location', 'Source Location', required=True, select=True), 'location_dest_id': fields.many2one('stock.location', 'Dest. Location', required=True, select=True), - 'address_id' : fields.many2one('res.partner.address', 'Dest. Address'), + 'address_id': fields.many2one('res.partner.address', 'Dest. Address'), - 'prodlot_id' : fields.many2one('stock.production.lot', 'Production Lot', help="Production lot is used to put a serial number on the production"), + 'prodlot_id': fields.many2one('stock.production.lot', 'Production Lot', help="Production lot is used to put a serial number on the production"), 'tracking_id': fields.many2one('stock.tracking', 'Tracking Lot', select=True, help="Tracking lot is the code that will be put on the logistical unit/pallet"), # 'lot_id': fields.many2one('stock.lot', 'Consumer lot', select=True, readonly=True), @@ -942,7 +953,7 @@ class stock_move(osv.osv): 'note': fields.text('Notes'), - 'state': fields.selection([('draft','Draft'),('waiting','Waiting'),('confirmed','Confirmed'),('assigned','Available'),('done','Done'),('cancel','Canceled')], 'Status', readonly=True, select=True), + 'state': fields.selection([('draft', 'Draft'), ('waiting', 'Waiting'), ('confirmed', 'Confirmed'), ('assigned', 'Available'), ('done', 'Done'), ('cancel', 'Canceled')], 'Status', readonly=True, select=True), 'price_unit': fields.float('Unit Price', digits=(16, int(config['price_accuracy']))), } @@ -953,13 +964,14 @@ class stock_move(osv.osv): (_check_product_lot, 'You try to assign a lot which is not from the same product', ['prodlot_id'])] + def _default_location_destination(self, cr, uid, context={}): if context.get('move_line', []): if context['move_line'][0]: - if isinstance(context['move_line'][0],(tuple,list)): + if isinstance(context['move_line'][0], (tuple, list)): return context['move_line'][0][2] and context['move_line'][0][2]['location_dest_id'] or False else: - move_list = self.pool.get('stock.move').read(cr, uid, context['move_line'][0],['location_dest_id']) + move_list = self.pool.get('stock.move').read(cr, uid, context['move_line'][0], ['location_dest_id']) return move_list and move_list['location_dest_id'][0] or False if context.get('address_out_id', False): return self.pool.get('res.partner.address').browse(cr, uid, context['address_out_id'], context).partner_id.property_stock_customer.id @@ -1002,14 +1014,14 @@ class stock_move(osv.osv): ctx = context and context.copy() or {} ctx['location_id'] = loc_id prodlot = self.pool.get('stock.production.lot').browse(cr, uid, prodlot_id, ctx) - location=self.pool.get('stock.location').browse(cr,uid,loc_id) - warning={} + location = self.pool.get('stock.location').browse(cr, uid, loc_id) + warning = {} if (location.usage == 'internal') and (product_qty > (prodlot.stock_available or 0.0)): - warning={ - 'title':'Bad Lot Assignation !', - 'message':'You are moving %.2f products but only %.2f available in this lot.' % (product_qty,prodlot.stock_available or 0.0) + warning = { + 'title': 'Bad Lot Assignation !', + 'message': 'You are moving %.2f products but only %.2f available in this lot.' % (product_qty, prodlot.stock_available or 0.0) } - return {'warning':warning} + return {'warning': warning} def onchange_product_id(self, cr, uid, ids, prod_id=False, loc_id=False, loc_dest_id=False): if not prod_id: @@ -1023,7 +1035,7 @@ class stock_move(osv.osv): result['location_id'] = loc_id if loc_dest_id: result['location_dest_id'] = loc_dest_id - return {'value':result} + return {'value': result} def _chain_compute(self, cr, uid, moves, context={}): result = {} @@ -1037,7 +1049,7 @@ class stock_move(osv.osv): context ) if dest: - if dest[1]=='transparent': + if dest[1] == 'transparent': self.write(cr, uid, [m.id], { 'date_planned': (DateTime.strptime(m.date_planned, '%Y-%m-%d %H:%M:%S') + \ DateTime.RelativeDateTime(days=dest[2] or 0)).strftime('%Y-%m-%d'), @@ -1050,10 +1062,11 @@ class stock_move(osv.osv): def action_confirm(self, cr, uid, ids, context={}): # ids = map(lambda m: m.id, moves) moves = self.browse(cr, uid, ids) - self.write(cr, uid, ids, {'state':'confirmed'}) - i=0 - def create_chained_picking(self,cr,uid,moves,context): - new_moves=[] + self.write(cr, uid, ids, {'state': 'confirmed'}) + i = 0 + + def create_chained_picking(self, cr, uid, moves, context): + new_moves = [] for picking, todo in self._chain_compute(cr, uid, moves, context).items(): ptype = self.pool.get('stock.location').picking_type_get(cr, uid, todo[0][0].location_dest_id, todo[0][1][0]) pickid = self.pool.get('stock.picking').create(cr, uid, { @@ -1062,21 +1075,21 @@ class stock_move(osv.osv): 'type': ptype, 'note': picking.note, 'move_type': picking.move_type, - 'auto_picking': todo[0][1][1]=='auto', + 'auto_picking': todo[0][1][1] == 'auto', 'address_id': picking.address_id.id, 'invoice_state': 'none' }) - for move,(loc,auto,delay) in todo: + for move, (loc, auto, delay) in todo: # Is it smart to copy ? May be it's better to recreate ? new_id = self.pool.get('stock.move').copy(cr, uid, move.id, { 'location_id': move.location_dest_id.id, 'location_dest_id': loc.id, 'date_moved': time.strftime('%Y-%m-%d'), 'picking_id': pickid, - 'state':'waiting', - 'move_history_ids':[], + 'state': 'waiting', + 'move_history_ids': [], 'date_planned': (DateTime.strptime(move.date_planned, '%Y-%m-%d %H:%M:%S') + DateTime.RelativeDateTime(days=delay or 0)).strftime('%Y-%m-%d'), - 'move_history_ids2':[]} + 'move_history_ids2': []} ) self.pool.get('stock.move').write(cr, uid, [move.id], { 'move_dest_id': new_id, @@ -1093,13 +1106,13 @@ class stock_move(osv.osv): def action_assign(self, cr, uid, ids, *args): todo = [] for move in self.browse(cr, uid, ids): - if move.state in ('confirmed','waiting'): + if move.state in ('confirmed', 'waiting'): todo.append(move.id) res = self.check_assign(cr, uid, todo) return res def force_assign(self, cr, uid, ids, context={}): - self.write(cr, uid, ids, {'state' : 'assigned'}) + self.write(cr, uid, ids, {'state': 'assigned'}) return True def cancel_assign(self, cr, uid, ids, context={}): @@ -1111,7 +1124,7 @@ class stock_move(osv.osv): # def check_assign(self, cr, uid, ids, context={}): done = [] - count=0 + count = 0 pickings = {} for move in self.browse(cr, uid, ids): if move.product_id.type == 'consu': @@ -1119,22 +1132,22 @@ class stock_move(osv.osv): done.append(move.id) pickings[move.picking_id.id] = 1 continue - if move.state in ('confirmed','waiting'): + if move.state in ('confirmed', 'waiting'): res = self.pool.get('stock.location')._product_reserve(cr, uid, [move.location_id.id], move.product_id.id, move.product_qty, {'uom': move.product_uom.id}) if res: done.append(move.id) pickings[move.picking_id.id] = 1 r = res.pop(0) - cr.execute('update stock_move set location_id=%s, product_qty=%s where id=%s', (r[1],r[0], move.id)) + cr.execute('update stock_move set location_id=%s, product_qty=%s where id=%s', (r[1], r[0], move.id)) while res: r = res.pop(0) - move_id = self.copy(cr, uid, move.id, {'product_qty':r[0], 'location_id':r[1]}) + move_id = self.copy(cr, uid, move.id, {'product_qty': r[0], 'location_id': r[1]}) done.append(move_id) #cr.execute('insert into stock_move_history_ids values (%s,%s)', (move.id,move_id)) if done: count += len(done) - self.write(cr, uid, done, {'state':'assigned'}) + self.write(cr, uid, done, {'state': 'assigned'}) if count: for pick_id in pickings: @@ -1150,19 +1163,19 @@ class stock_move(osv.osv): return True pickings = {} for move in self.browse(cr, uid, ids): - if move.state in ('confirmed','waiting','assigned','draft'): + if move.state in ('confirmed', 'waiting', 'assigned', 'draft'): if move.picking_id: pickings[move.picking_id.id] = True - if move.move_dest_id and move.move_dest_id.state=='waiting': - self.write(cr, uid, [move.move_dest_id.id], {'state':'assigned'}) + if move.move_dest_id and move.move_dest_id.state == 'waiting': + self.write(cr, uid, [move.move_dest_id.id], {'state': 'assigned'}) if move.move_dest_id.picking_id: wf_service = netsvc.LocalService("workflow") wf_service.trg_write(uid, 'stock.picking', move.move_dest_id.picking_id.id, cr) - self.write(cr, uid, ids, {'state':'cancel', 'move_dest_id': False}) + self.write(cr, uid, ids, {'state': 'cancel', 'move_dest_id': False}) - for pick in self.pool.get('stock.picking').browse(cr,uid,pickings.keys()): + for pick in self.pool.get('stock.picking').browse(cr, uid, pickings.keys()): if all(move.state == 'cancel' for move in pick.move_lines): - self.pool.get('stock.picking').write(cr,uid,[pick.id],{'state':'cancel'}) + self.pool.get('stock.picking').write(cr, uid, [pick.id], {'state': 'cancel'}) wf_service = netsvc.LocalService("workflow") for id in ids: @@ -1171,12 +1184,12 @@ class stock_move(osv.osv): return True def action_done(self, cr, uid, ids, context=None): - track_flag=False + track_flag = False for move in self.browse(cr, uid, ids): if move.move_dest_id.id and (move.state != 'done'): cr.execute('insert into stock_move_history_ids (parent_id,child_id) values (%s,%s)', (move.id, move.move_dest_id.id)) - if move.move_dest_id.state in ('waiting','confirmed'): - self.write(cr, uid, [move.move_dest_id.id], {'state':'assigned'}) + if move.move_dest_id.state in ('waiting', 'confirmed'): + self.write(cr, uid, [move.move_dest_id.id], {'state': 'assigned'}) if move.move_dest_id.picking_id: wf_service = netsvc.LocalService("workflow") wf_service.trg_write(uid, 'stock.picking', move.move_dest_id.picking_id.id, cr) @@ -1192,9 +1205,9 @@ class stock_move(osv.osv): acc_src = None acc_dest = None if move.location_id.account_id: - acc_src = move.location_id.account_id.id + acc_src = move.location_id.account_id.id if move.location_dest_id.account_id: - acc_dest = move.location_dest_id.account_id.id + acc_dest = move.location_dest_id.account_id.id if acc_src or acc_dest: test = [('product.product', move.product_id.id)] if move.product_id.categ_id: @@ -1231,7 +1244,7 @@ class stock_move(osv.osv): move.product_id.categ_id.id,)) journal_id = move.product_id.categ_id.property_stock_journal.id if acc_src != acc_dest: - ref = move.picking_id and move.picking_id.name or False + ref = move.picking_id and move.picking_id.name or False product_uom_obj = self.pool.get('product.uom') default_uom = move.product_id.uom_id.id q = product_uom_obj._compute_qty(cr, uid, move.product_uom.id, move.product_qty, default_uom) @@ -1268,7 +1281,7 @@ class stock_move(osv.osv): 'line_id': lines, 'ref': ref, }) - self.write(cr, uid, ids, {'state':'done','date_planned':time.strftime('%Y-%m-%d %H:%M:%S')}) + self.write(cr, uid, ids, {'state': 'done', 'date_planned': time.strftime('%Y-%m-%d %H:%M:%S')}) wf_service = netsvc.LocalService("workflow") for id in ids: wf_service.trg_trigger(uid, 'stock.move', id, cr) @@ -1284,44 +1297,46 @@ class stock_move(osv.osv): stock_move() + class stock_inventory(osv.osv): _name = "stock.inventory" _description = "Inventory" _columns = { - 'name': fields.char('Inventory', size=64, required=True, readonly=True, states={'draft':[('readonly',False)]}), - 'date': fields.datetime('Date create', required=True, readonly=True, states={'draft':[('readonly',False)]}), + 'name': fields.char('Inventory', size=64, required=True, readonly=True, states={'draft': [('readonly', False)]}), + 'date': fields.datetime('Date create', required=True, readonly=True, states={'draft': [('readonly', False)]}), 'date_done': fields.datetime('Date done'), - 'inventory_line_id': fields.one2many('stock.inventory.line', 'inventory_id', 'Inventories', readonly=True, states={'draft':[('readonly',False)]}), + 'inventory_line_id': fields.one2many('stock.inventory.line', 'inventory_id', 'Inventories', readonly=True, states={'draft': [('readonly', False)]}), 'move_ids': fields.many2many('stock.move', 'stock_inventory_move_rel', 'inventory_id', 'move_id', 'Created Moves'), - 'state': fields.selection( (('draft','Draft'),('done','Done')), 'Status', readonly=True), + 'state': fields.selection( (('draft', 'Draft'), ('done', 'Done')), 'Status', readonly=True), } _defaults = { 'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'), 'state': lambda *a: 'draft', } + # # Update to support tracking # def action_done(self, cr, uid, ids, context=None): - for inv in self.browse(cr,uid,ids): + for inv in self.browse(cr, uid, ids): move_ids = [] - move_line=[] + move_line = [] for line in inv.inventory_line_id: - pid=line.product_id.id - price=line.product_id.standard_price or 0.0 - amount=self.pool.get('stock.location')._product_get(cr, uid, line.location_id.id, [pid], {'uom': line.product_uom.id})[pid] - change=line.product_qty-amount + pid = line.product_id.id + price = line.product_id.standard_price or 0.0 + amount = self.pool.get('stock.location')._product_get(cr, uid, line.location_id.id, [pid], {'uom': line.product_uom.id})[pid] + change = line.product_qty - amount if change: location_id = line.product_id.product_tmpl_id.property_stock_inventory.id value = { - 'name': 'INV:'+str(line.inventory_id.id)+':'+line.inventory_id.name, + 'name': 'INV:' + str(line.inventory_id.id) + ':' + line.inventory_id.name, 'product_id': line.product_id.id, 'product_uom': line.product_uom.id, 'date': inv.date, 'date_planned': inv.date, 'state': 'assigned' } - if change>0: + if change > 0: value.update( { 'product_qty': change, 'location_id': location_id, @@ -1337,14 +1352,15 @@ class stock_inventory(osv.osv): if len(move_ids): self.pool.get('stock.move').action_done(cr, uid, move_ids, context=context) - self.write(cr, uid, [inv.id], {'state':'done', 'date_done': time.strftime('%Y-%m-%d %H:%M:%S'), 'move_ids': [(6,0,move_ids)]}) + self.write(cr, uid, [inv.id], {'state': 'done', 'date_done': time.strftime('%Y-%m-%d %H:%M:%S'), 'move_ids': [(6, 0, move_ids)]}) return True def action_cancel(self, cr, uid, ids, context={}): - for inv in self.browse(cr,uid,ids): + for inv in self.browse(cr, uid, ids): self.pool.get('stock.move').action_cancel(cr, uid, [x.id for x in inv.move_ids], context) - self.write(cr, uid, [inv.id], {'state':'draft'}) + self.write(cr, uid, [inv.id], {'state': 'draft'}) return True + stock_inventory() @@ -1352,21 +1368,23 @@ class stock_inventory_line(osv.osv): _name = "stock.inventory.line" _description = "Inventory line" _columns = { - 'inventory_id': fields.many2one('stock.inventory','Inventory', ondelete='cascade', select=True), - 'location_id': fields.many2one('stock.location','Location', required=True), - 'product_id': fields.many2one('product.product', 'Product', required=True ), - 'product_uom': fields.many2one('product.uom', 'Product UOM', required=True ), + 'inventory_id': fields.many2one('stock.inventory', 'Inventory', ondelete='cascade', select=True), + 'location_id': fields.many2one('stock.location', 'Location', required=True), + 'product_id': fields.many2one('product.product', 'Product', required=True), + 'product_uom': fields.many2one('product.uom', 'Product UOM', required=True), 'product_qty': fields.float('Quantity') } + def on_change_product_id(self, cr, uid, ids, location_id, product, uom=False): if not product: return {} if not uom: prod = self.pool.get('product.product').browse(cr, uid, [product], {'uom': uom})[0] uom = prod.uom_id.id - amount=self.pool.get('stock.location')._product_get(cr, uid, location_id, [product], {'uom': uom})[product] - result = {'product_qty':amount, 'product_uom':uom} - return {'value':result} + amount = self.pool.get('stock.location')._product_get(cr, uid, location_id, [product], {'uom': uom})[product] + result = {'product_qty': amount, 'product_uom': uom} + return {'value': result} + stock_inventory_line() @@ -1380,57 +1398,60 @@ class stock_warehouse(osv.osv): 'name': fields.char('Name', size=60, required=True), # 'partner_id': fields.many2one('res.partner', 'Owner'), 'partner_address_id': fields.many2one('res.partner.address', 'Owner Address'), - 'lot_input_id': fields.many2one('stock.location', 'Location Input', required=True ), - 'lot_stock_id': fields.many2one('stock.location', 'Location Stock', required=True ), - 'lot_output_id': fields.many2one('stock.location', 'Location Output', required=True ), + 'lot_input_id': fields.many2one('stock.location', 'Location Input', required=True), + 'lot_stock_id': fields.many2one('stock.location', 'Location Stock', required=True), + 'lot_output_id': fields.many2one('stock.location', 'Location Output', required=True), } + stock_warehouse() # Move wizard : # get confirm or assign stock move lines of partner and put in current picking. class stock_picking_move_wizard(osv.osv_memory): - _name='stock.picking.move.wizard' - def _get_picking(self,cr, uid, ctx): - if ctx.get('action_id',False): + _name = 'stock.picking.move.wizard' + + def _get_picking(self, cr, uid, ctx): + if ctx.get('action_id', False): return ctx['action_id'] return False - def _get_picking_address(self,cr,uid,ctx): - picking_obj=self.pool.get('stock.picking') - if ctx.get('action_id',False): - picking=picking_obj.browse(cr,uid,[ctx['action_id']])[0] + + def _get_picking_address(self, cr, uid, ctx): + picking_obj = self.pool.get('stock.picking') + if ctx.get('action_id', False): + picking = picking_obj.browse(cr, uid, [ctx['action_id']])[0] return picking.address_id and picking.address_id.id or False return False - - _columns={ - 'name':fields.char('Name',size=64,invisible=True), + _columns = { + 'name': fields.char('Name', size=64, invisible=True), #'move_lines': fields.one2many('stock.move', 'picking_id', 'Move lines',readonly=True), - 'move_ids': fields.many2many('stock.move', 'picking_move_wizard_rel', 'picking_move_wizard_id', 'move_id', 'Move lines',required=True), - 'address_id' : fields.many2one('res.partner.address', 'Dest. Address',invisible=True), - 'picking_id': fields.many2one('stock.picking', 'Packing list', select=True,invisible=True), + 'move_ids': fields.many2many('stock.move', 'picking_move_wizard_rel', 'picking_move_wizard_id', 'move_id', 'Move lines', required=True), + 'address_id': fields.many2one('res.partner.address', 'Dest. Address', invisible=True), + 'picking_id': fields.many2one('stock.picking', 'Packing list', select=True, invisible=True), } - _defaults={ - 'picking_id':_get_picking, - 'address_id':_get_picking_address, + _defaults = { + 'picking_id': _get_picking, + 'address_id': _get_picking_address, } - def action_move(self,cr,uid,ids,context=None): - move_obj=self.pool.get('stock.move') - picking_obj=self.pool.get('stock.picking') - for act in self.read(cr,uid,ids): - move_lines=move_obj.browse(cr,uid,act['move_ids']) + + def action_move(self, cr, uid, ids, context=None): + move_obj = self.pool.get('stock.move') + picking_obj = self.pool.get('stock.picking') + for act in self.read(cr, uid, ids): + move_lines = move_obj.browse(cr, uid, act['move_ids']) for line in move_lines: if line.picking_id: - picking_obj.write(cr,uid,[line.picking_id.id],{'move_lines':[(1,line.id,{'picking_id':act['picking_id']})]}) - picking_obj.write(cr,uid,[act['picking_id']],{'move_lines':[(1,line.id,{'picking_id':act['picking_id']})]}) + picking_obj.write(cr, uid, [line.picking_id.id], {'move_lines': [(1, line.id, {'picking_id': act['picking_id']})]}) + picking_obj.write(cr, uid, [act['picking_id']], {'move_lines': [(1, line.id, {'picking_id': act['picking_id']})]}) cr.commit() - old_picking=picking_obj.read(cr,uid,[line.picking_id.id])[0] + old_picking = picking_obj.read(cr, uid, [line.picking_id.id])[0] if not len(old_picking['move_lines']): - picking_obj.write(cr,uid,[old_picking['id']],{'state':'done'}) + picking_obj.write(cr, uid, [old_picking['id']], {'state': 'done'}) else: raise osv.except_osv(_('UserError'), _('You can not create new moves.')) - return {'type':'ir.actions.act_window_close' } + return {'type': 'ir.actions.act_window_close'} stock_picking_move_wizard() @@ -1441,9 +1462,10 @@ class report_stock_lines_date(osv.osv): _auto = False _columns = { 'id': fields.integer('Inventory Line Id', readonly=True), - 'product_id':fields.integer('Product Id', readonly=True), + 'product_id': fields.integer('Product Id', readonly=True), 'create_date': fields.datetime('Latest Date of Inventory'), } + def init(self, cr): cr.execute(""" create or replace view report_stock_lines_date as ( @@ -1458,5 +1480,6 @@ class report_stock_lines_date(osv.osv): where l.create_date is not null group by p.id,l.id )""") + report_stock_lines_date() -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + From 72cfa7cf230d05420fda85c8ee3249571689d9ba Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Fri, 28 Aug 2009 16:41:59 +0530 Subject: [PATCH 21/31] [FIX] Document : error on create if attachment not specified bzr revid: jvo@tinyerp.com-20090828111159-yoe862iefxw2h3uo --- addons/document/document.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/addons/document/document.py b/addons/document/document.py index 3450d3a51a4..21aa59661a7 100644 --- a/addons/document/document.py +++ b/addons/document/document.py @@ -695,8 +695,9 @@ class document_file(osv.osv): import urllib datas=base64.encodestring(urllib.urlopen(vals['link']).read()) else: - datas=vals.get('datas',False) - vals['file_size']= len(datas) + datas = vals.get('datas',False) + + vals['file_size']= datas and len(datas) or 0 if not self._check_duplication(cr,uid,vals): raise except_orm(_('ValidateError'), _('File name must be unique!')) result = super(document_file,self).create(cr, uid, vals, context) From 60f4bcf9e3193f86a0ca41f12ec90cba797593de Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Fri, 28 Aug 2009 16:46:22 +0530 Subject: [PATCH 22/31] [FIX] report_document : Dashboard should not display partner with no files lp bug: https://launchpad.net/bugs/416807 fixed bzr revid: jvo@tinyerp.com-20090828111622-eivmpeb3aac9rx90 --- addons/report_document/report_document.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/report_document/report_document.py b/addons/report_document/report_document.py index b2cb912ff77..9f8fea2e972 100644 --- a/addons/report_document/report_document.py +++ b/addons/report_document/report_document.py @@ -101,7 +101,8 @@ class report_files_partner(osv.osv): p.name as partner from ir_attachment f inner join res_partner p - on (f.partner_id=p.id) + on (f.partner_id=p.id) + where f.datas_fname is not null group by p.name ) """) From 2f47eb26507c6dd488373b95fe78137bafcf5217 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Fri, 28 Aug 2009 16:52:51 +0530 Subject: [PATCH 23/31] [IMP] report_dcoument : changed the misleading name of action bzr revid: jvo@tinyerp.com-20090828112251-13twdpixu8p50ox4 --- addons/report_document/report_document_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/report_document/report_document_view.xml b/addons/report_document/report_document_view.xml index 8f68875ea40..746bf6d89c4 100644 --- a/addons/report_document/report_document_view.xml +++ b/addons/report_document/report_document_view.xml @@ -275,7 +275,7 @@
- Files Per Month + Files Per Partner report.files.partner form From d9ed0c296c695d07da143d05fa2db351da4a583a Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 28 Aug 2009 18:16:04 +0200 Subject: [PATCH 24/31] [IMP] update translations files [FIX] remove bad translation files (bad name) [ADD] new translations bzr revid: christophe@tinyerp.com-20090828161604-zaf83m7tb7islki7 --- bin/addons/base/i18n/ar_AR.po | 669 +++++++-- bin/addons/base/i18n/base.pot | 669 +++++++-- bin/addons/base/i18n/bg_BG.po | 703 ++++++++-- bin/addons/base/i18n/bs_BS.po | 677 +++++++-- bin/addons/base/i18n/ca_ES.po | 713 ++++++++-- bin/addons/base/i18n/cs_CZ.po | 689 +++++++-- bin/addons/base/i18n/de_DE.po | 711 ++++++++-- bin/addons/base/i18n/es_AR.po | 685 +++++++-- bin/addons/base/i18n/es_ES.po | 711 ++++++++-- bin/addons/base/i18n/et_EE.po | 715 ++++++++-- bin/addons/base/i18n/fi_FI.po | 713 ++++++++-- bin/addons/base/i18n/fr_FR.po | 779 ++++++++--- bin/addons/base/i18n/hr_HR.po | 669 +++++++-- bin/addons/base/i18n/hu_HU.po | 669 +++++++-- bin/addons/base/i18n/id_ID.po | 669 +++++++-- bin/addons/base/i18n/it_IT.po | 707 ++++++++-- bin/addons/base/i18n/lt_LT.po | 669 +++++++-- bin/addons/base/i18n/nl_BE.po | 669 +++++++-- bin/addons/base/i18n/nl_NL.po | 711 ++++++++-- bin/addons/base/i18n/pl_PL.po | 669 +++++++-- bin/addons/base/i18n/pt_BR.po | 703 ++++++++-- bin/addons/base/i18n/pt_PT.po | 697 ++++++++-- bin/addons/base/i18n/ro_RO.po | 677 +++++++-- bin/addons/base/i18n/ru_RU.po | 703 ++++++++-- bin/addons/base/i18n/sl_SL.po | 705 ++++++++-- bin/addons/base/i18n/{sv_SV.po => sq_AL.po} | 885 +++++++++--- bin/addons/base/i18n/sv_SE.po | 671 +++++++-- bin/addons/base/i18n/tr_TR.po | 671 +++++++-- bin/addons/base/i18n/{uk_UK.po => uk_UA.po} | 705 ++++++++-- bin/addons/base/i18n/{cs_CS.po => vi_VN.po} | 1389 ++++++++++++------- bin/addons/base/i18n/zh_CN.po | 687 +++++++-- bin/addons/base/i18n/zh_TW.po | 677 +++++++-- 32 files changed, 18574 insertions(+), 4462 deletions(-) rename bin/addons/base/i18n/{sv_SV.po => sq_AL.po} (94%) rename bin/addons/base/i18n/{uk_UK.po => uk_UA.po} (95%) rename bin/addons/base/i18n/{cs_CS.po => vi_VN.po} (93%) diff --git a/bin/addons/base/i18n/ar_AR.po b/bin/addons/base/i18n/ar_AR.po index 8b14eb54bed..388e147bde6 100644 --- a/bin/addons/base/i18n/ar_AR.po +++ b/bin/addons/base/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,8 +1333,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,9 +3732,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,10 +9394,10 @@ msgid "Category Name" msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9077,6 +9406,12 @@ msgstr "" msgid "From" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,9 +9566,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,8 +10608,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,8 +10979,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/base.pot b/bin/addons/base/i18n/base.pot index 6095742ae74..a42c62bb88a 100644 --- a/bin/addons/base/i18n/base.pot +++ b/bin/addons/base/i18n/base.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,8 +1333,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,9 +3732,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,10 +9394,10 @@ msgid "Category Name" msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9077,6 +9406,12 @@ msgstr "" msgid "From" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,9 +9566,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,8 +10608,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,8 +10979,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/bg_BG.po b/bin/addons/base/i18n/bg_BG.po index caba31e7b86..c5c85f8fee3 100644 --- a/bin/addons/base/i18n/bg_BG.po +++ b/bin/addons/base/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -602,9 +628,10 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -677,6 +704,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -815,6 +849,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -873,6 +913,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -910,6 +956,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Действие" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -939,6 +995,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1054,9 +1116,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1103,6 +1166,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1190,6 +1259,11 @@ msgstr "" msgid "Role Name" msgstr "Име на раля" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Отговорен търговец" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1248,6 +1322,11 @@ msgstr "" msgid "On Create" msgstr "При създаване" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Моля предайте модула си за вмъкване като .zip файл" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1255,9 +1334,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Стойност по подразбиране" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1339,6 +1419,12 @@ msgstr "" msgid "Simple domain setup" msgstr "Проста настройка на домейн" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1409,6 +1495,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1435,6 +1527,14 @@ msgstr "ir.rule" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1463,8 +1563,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1490,11 +1590,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1699,6 +1794,11 @@ msgstr "" msgid "Ireland" 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" @@ -2093,6 +2193,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2523,6 +2629,12 @@ msgstr "" msgid "Sir" msgstr "Сър" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2773,6 +2885,11 @@ msgstr "" msgid "Categories of Modules" msgstr "Категории модули" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2870,6 +2987,12 @@ msgstr "Да се добави или не RML колонтитул на фир msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3060,6 +3183,12 @@ msgstr "" msgid "Languages" msgstr "Езици" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3117,9 +3246,10 @@ msgid "Base Field" msgstr "Основно поле" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Нови модули" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3220,6 +3350,11 @@ msgstr "Име на език" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Модул в .zip формат" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3277,6 +3412,18 @@ msgstr "Вид събитие" msgid "Bank account" msgstr "Банкова сметка" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3350,9 +3497,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3382,6 +3528,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3476,7 +3627,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3584,10 +3734,10 @@ msgid "Set NULL" msgstr "Сложи нищо (NULL)" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Удовлетвореност" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3611,6 +3761,12 @@ msgstr "Правилото е удовлетворено ако всички т msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3769,6 +3925,11 @@ msgstr "Следващ номер" msgid "Rates" msgstr "Курсове" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3903,6 +4064,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4027,6 +4194,19 @@ msgstr "Xml справка" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4089,7 +4269,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4126,6 +4305,12 @@ msgstr "Екземпляри" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4586,14 +4771,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Действие" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4634,9 +4820,10 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Размер" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4651,9 +4838,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4948,6 +5135,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4969,6 +5162,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5097,6 +5296,13 @@ msgstr "Код на провинцията" msgid "On delete" msgstr "При изтриване" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5190,10 +5396,10 @@ msgid "Please provide a partner for the sale." 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 "Непреведен термин" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5268,6 +5474,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5288,6 +5495,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5319,6 +5532,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5522,6 +5741,12 @@ msgstr "Прескочен" msgid "Custom Field" msgstr "Допълнително поле" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5802,10 +6027,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Размер" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5850,6 +6074,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5871,9 +6101,9 @@ msgid "Always Searchable" msgstr "Винаги търсим" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "" #. module: base #: model:res.country,name:base.hk @@ -6150,7 +6380,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6250,14 +6479,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6289,7 +6518,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6325,11 +6553,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6520,11 +6743,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6583,6 +6801,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6653,6 +6877,7 @@ msgstr "Партньори на клиента" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6688,9 +6913,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6820,12 +7045,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7112,11 +7331,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Линейна графика" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Стойност по подразбиране" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7234,9 +7464,9 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7268,6 +7498,12 @@ msgstr "" msgid "Months" msgstr "Месеца" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7378,11 +7614,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7452,12 +7683,6 @@ msgstr "" msgid "Activity" msgstr "Дейност" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7500,6 +7725,12 @@ msgstr "Провинция" msgid "All Properties" msgstr "Всички свойства" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7540,6 +7771,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7565,10 +7805,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Име на обект" @@ -7600,9 +7847,11 @@ msgid "Icon" msgstr "Икона" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "Добре" @@ -7683,7 +7932,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Вмъкни модул" @@ -7772,6 +8029,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7999,6 +8263,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Нови модули" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8020,6 +8289,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8053,6 +8328,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8060,6 +8341,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8095,10 +8382,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8156,6 +8443,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8211,6 +8504,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Правила за достъп" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8458,6 +8757,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Доставка" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8501,6 +8805,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8541,6 +8851,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Списък с хранилища" @@ -8590,7 +8901,6 @@ msgstr "Видове полета" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8663,6 +8973,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8705,6 +9021,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8820,11 +9142,6 @@ msgstr "Модули за обновяване" msgid "Company Architecture" msgstr "Структура на фирмата" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8931,6 +9248,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Действие на меню" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9030,6 +9353,12 @@ msgstr "Пътя към .rml файла или нищо ако съдържан msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9067,11 +9396,11 @@ msgid "Category Name" msgstr "Име на категория" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Относно" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9079,6 +9408,12 @@ msgstr "Относно" msgid "From" msgstr "От" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9233,10 +9568,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Режим на разделяне" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9262,7 +9596,6 @@ msgstr "child_of" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9281,6 +9614,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9315,11 +9654,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9487,6 +9838,12 @@ msgstr "Формула" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9551,6 +9908,12 @@ msgstr "Действия" msgid "High" msgstr "Висок" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9568,8 +9931,10 @@ msgid "Bank Identifier Code" msgstr "Идентификационен код на банката" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9605,10 +9970,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9632,6 +9997,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9689,8 +10055,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9798,6 +10165,12 @@ msgstr "" msgid "Start configuration" msgstr "Започни настройката" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9892,6 +10265,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10100,6 +10479,12 @@ msgstr "Подчинено поле" msgid "Action Usage" msgstr "Предназначение на действието" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10225,9 +10610,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Доставка" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10258,12 +10644,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10302,6 +10699,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10391,6 +10789,14 @@ msgstr "Изчисли сума" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10437,6 +10843,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "Държава" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Модулът е успешно вмъкнат!" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10464,6 +10875,12 @@ msgstr "Е обект" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10497,15 +10914,14 @@ msgid "Portrait" msgstr "Вертикално" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Относно" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10552,6 +10968,12 @@ msgstr "Прогрес на конфигурирането" msgid "Configuration Wizards" msgstr "Помощници на настройките" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10559,9 +10981,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Режим на разделяне" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10696,6 +11119,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10720,6 +11149,12 @@ msgstr "Ресурсни обекти" msgid "Function" msgstr "Функция" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Удовлетвореност" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10800,6 +11235,12 @@ msgstr "" msgid "Create Object" msgstr "Създай обект" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/bs_BS.po b/bin/addons/base/i18n/bs_BS.po index 8e184cdb3a7..93a32db691e 100644 --- a/bin/addons/base/i18n/bs_BS.po +++ b/bin/addons/base/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -602,9 +628,10 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.prikaz" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -677,6 +704,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -815,6 +849,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -873,6 +913,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -910,6 +956,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -939,6 +995,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1054,9 +1116,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1103,6 +1166,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1190,6 +1259,11 @@ msgstr "" msgid "Role Name" msgstr "" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1248,6 +1322,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1255,8 +1334,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1339,6 +1419,12 @@ msgstr "" msgid "Simple domain setup" msgstr "Jednostavno podešavanje domena" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1409,6 +1495,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1435,6 +1527,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1463,8 +1563,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1490,11 +1590,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1699,6 +1794,11 @@ msgstr "" msgid "Ireland" 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" @@ -2093,6 +2193,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2523,6 +2629,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2773,6 +2885,11 @@ msgstr "" msgid "Categories of Modules" msgstr "Kategorije Modula" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2870,6 +2987,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "Poveži akcije na događaje klijenta" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3060,6 +3183,12 @@ msgstr "" msgid "Languages" msgstr "Jezici" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3117,9 +3246,10 @@ msgid "Base Field" msgstr "Osnovno polje" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Novi moduli" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3220,6 +3350,11 @@ msgstr "Naziv jezika" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr ".ZIP datoteka modula" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3277,6 +3412,18 @@ msgstr "Tip događaja" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3350,9 +3497,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3382,6 +3528,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3476,7 +3627,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3583,9 +3733,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3610,6 +3760,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3768,6 +3924,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3902,6 +4063,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4026,6 +4193,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4088,7 +4268,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4125,6 +4304,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4585,15 +4770,16 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.prikaz" + #. module: base #: view:ir.actions.server:0 msgid "Email Configuration" @@ -4633,9 +4819,10 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Veličina" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4650,8 +4837,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4947,6 +5134,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4968,6 +5161,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5096,6 +5295,13 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5189,9 +5395,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5267,6 +5473,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5287,6 +5494,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5318,6 +5531,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5521,6 +5740,12 @@ msgstr "Preskočeno" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5801,10 +6026,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.objekt.linije" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Veličina" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5849,6 +6073,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5870,8 +6100,8 @@ msgid "Always Searchable" msgstr "Uvijek pretraživo" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6149,7 +6379,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6249,14 +6478,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6288,7 +6517,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6324,11 +6552,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6519,11 +6742,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6582,6 +6800,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6652,6 +6876,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6687,8 +6912,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6819,12 +7044,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7111,11 +7330,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7233,8 +7463,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7267,6 +7497,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7377,11 +7613,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7451,12 +7682,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7499,6 +7724,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7539,6 +7770,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7564,10 +7804,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7599,9 +7846,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7682,7 +7931,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7771,6 +8028,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7998,6 +8262,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Novi moduli" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8019,6 +8288,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8052,6 +8327,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8059,6 +8340,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8094,10 +8381,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8155,6 +8442,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8210,6 +8503,12 @@ msgstr "SKLADIŠTE_SORTIRAJ_UZLAZNO" msgid "Access Rules" msgstr "Pravila pristupa" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8457,6 +8756,11 @@ msgstr "4. %b, %B ==> Dec, Decembar" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8500,6 +8804,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8540,6 +8850,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8589,7 +8900,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8662,6 +8972,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8704,6 +9020,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8819,11 +9141,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8930,6 +9247,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9029,6 +9352,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9066,10 +9395,10 @@ msgid "Category Name" msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9078,6 +9407,12 @@ msgstr "" msgid "From" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9232,9 +9567,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9261,7 +9595,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9280,6 +9613,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9314,11 +9653,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9486,6 +9837,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9550,6 +9907,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9567,8 +9930,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9604,10 +9969,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9631,6 +9996,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9688,8 +10054,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9797,6 +10164,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9891,6 +10264,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10099,6 +10478,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10224,8 +10609,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10257,12 +10643,23 @@ msgstr "" msgid "Version" msgstr "Verzija" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10301,6 +10698,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10390,6 +10788,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10436,6 +10842,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10463,6 +10874,12 @@ msgstr "" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10496,15 +10913,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10551,6 +10967,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10558,8 +10980,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10695,6 +11118,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10719,6 +11148,12 @@ msgstr "" msgid "Function" msgstr "" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10799,6 +11234,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/ca_ES.po b/bin/addons/base/i18n/ca_ES.po index caded62c9d1..97030eeb51b 100644 --- a/bin/addons/base/i18n/ca_ES.po +++ b/bin/addons/base/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "Flux sobre" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -455,6 +469,12 @@ msgstr "Guaiana francesa" msgid "Bosnian / bosanski jezik" msgstr "Bosnià / bosanski jezik" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -510,6 +530,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -607,9 +633,10 @@ msgid "Jordan" msgstr "Jordània" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.vista" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -682,6 +709,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -820,6 +854,12 @@ msgstr "Índia" msgid "maintenance contract modules" msgstr "mòduls del contracte de manteniment" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -878,6 +918,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -915,6 +961,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Acció" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -944,6 +1000,12 @@ msgstr "Illes Caiman" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1059,9 +1121,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1108,6 +1171,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1195,6 +1264,11 @@ msgstr "Indiqueu els camps que s'utilitzaran per extreure l'adreça de correu el msgid "Role Name" msgstr "Nom de rol" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Comercial dedicat" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1253,6 +1327,11 @@ msgstr "Informes" msgid "On Create" msgstr "En creació" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Introduïu el fitxer .ZIP del mòdul a importar." + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1260,9 +1339,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Valor per defecte" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1344,6 +1424,12 @@ msgstr "Timor Oriental" msgid "Simple domain setup" msgstr "Definició domini simple" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1414,6 +1500,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1440,6 +1532,14 @@ msgstr "ir.regla" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1468,9 +1568,9 @@ msgid "Report Custom" msgstr "Informe personalitzat" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Any sense la centuria: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "Turkmenistan" #. module: base #: view:res.lang:0 @@ -1495,11 +1595,6 @@ msgstr "Indiqueu el missatge. Podeu utilitzar els camps de l'objecte. per ex. `E msgid "Attached Model" msgstr "Model fitxer adjunt" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1704,6 +1799,11 @@ msgstr "Adjunt" msgid "Ireland" msgstr "Irlanda" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Any sense la centuria: %(y)s" + #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -2098,6 +2198,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "%p - Equivalent a AM o PM." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2528,6 +2634,12 @@ msgstr "" msgid "Sir" msgstr "Sr." +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2778,6 +2890,11 @@ msgstr "Número CIF/NIF. Marqueu aquesta casella si l'empresa està subjecta a l msgid "Categories of Modules" msgstr "Categories de mòduls" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2878,6 +2995,12 @@ msgstr "Afegeix o no la capçalera corporativa en l'informe RML" msgid "Connect Actions To Client Events" msgstr "Connecta accions a esdeveniments del client" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3068,6 +3191,12 @@ msgstr "" msgid "Languages" msgstr "Idiomes" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3125,9 +3254,10 @@ msgid "Base Field" msgstr "Camp base" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Nous mòduls" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3228,6 +3358,11 @@ msgstr "Nom idioma" msgid "Holy See (Vatican City State)" msgstr "Santa Seu (Estat del Vaticà)" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Fitxer .ZIP del mòdul" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3285,6 +3420,18 @@ msgstr "Tipus d'esdeveniment" msgid "Bank account" msgstr "compte bancari" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3358,10 +3505,9 @@ msgid "Equatorial Guinea" msgstr "Guinea Equatorial" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" -msgstr "" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" +msgstr "Importació de mòdul" #. module: base #: code:addons/osv/orm.py:0 @@ -3390,6 +3536,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "%c - Representació apropiada de data i hora." +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3484,7 +3635,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3592,10 +3742,10 @@ msgid "Set NULL" msgstr "Establir a NULL" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Grau de satisfacció" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3619,6 +3769,12 @@ msgstr "La regla es satisfà si tots els tests són Verdader (AND)" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3777,6 +3933,11 @@ msgstr "Número següent" msgid "Rates" msgstr "Taxes" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3911,6 +4072,12 @@ msgstr "Adjuntat a" msgid "Decimal Separator" msgstr "Separador de decimals" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4035,6 +4202,19 @@ msgstr "Informe XML" msgid "No grid matching for this carrier !" 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 "L'usuari intern que s'encarrega de comunicar-se amb aquesta empresa, si n'hi ha." + +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4097,7 +4277,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4134,6 +4313,12 @@ msgstr "Casos" msgid "Antarctica" msgstr "Antàrtida" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4594,14 +4779,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Acció" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.vista" #. module: base #: view:ir.actions.server:0 @@ -4642,9 +4828,10 @@ msgid "Fiji" msgstr "Fiji" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Mida" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4659,9 +4846,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4956,6 +5143,12 @@ msgstr "Lituà / Lietuvių kalba" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "Indiqueu el nom de camp on s'emmagatzema el id del registre després de les operacions de creació. Si està buit, no podrà realitzar un seguiment del registre nou." +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4977,6 +5170,12 @@ msgstr "ir.traduccio" msgid "Luxembourg" msgstr "Luxemburg" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5105,6 +5304,13 @@ msgstr "Codi de província" msgid "On delete" msgstr "En eliminar" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5198,10 +5404,10 @@ msgid "Please provide a partner for the sale." 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 "Termes no traduïts" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5276,6 +5482,7 @@ msgstr "Burundi" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5296,6 +5503,12 @@ msgstr "" msgid "Bhutan" msgstr "Bhutan" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5327,6 +5540,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5530,6 +5749,12 @@ msgstr "Omès" msgid "Custom Field" msgstr "Camp personalitzat" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5810,10 +6035,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.objecte.línias" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Mida" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5858,6 +6082,12 @@ msgstr "res.empresa.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5879,9 +6109,9 @@ msgid "Always Searchable" msgstr "Sempre es pot cercar" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Sudan" #. module: base #: model:res.country,name:base.hk @@ -6158,7 +6388,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6257,17 +6486,17 @@ msgstr "El nom complert del país." msgid "Iteration" msgstr "Iteració" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6297,7 +6526,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6333,11 +6561,6 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunió (Francesa)" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "sv_SV" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6528,11 +6751,6 @@ msgstr "Data creació" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6591,6 +6809,12 @@ msgstr "" msgid "Algeria" msgstr "Algèria" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6661,6 +6885,7 @@ msgstr "Clients" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6696,9 +6921,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Zona Neutral" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6828,12 +7053,6 @@ msgstr "Egipte" msgid "Select the object on which the action will work (read, write, create)." msgstr "Seleccioneu l'objecte sobre el qual l'acció actuarà (llegir, escriure, crear)." -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7120,11 +7339,22 @@ msgstr "Separador de milers" msgid "Created Date" msgstr "Data creació" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Diagrama de línies" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Valor per defecte" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7242,9 +7472,9 @@ msgid "Day of the year: %(doy)s" msgstr "Dia de l'any: %(doy)s" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "Zona Neutral" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7276,6 +7506,12 @@ msgstr "%A - Nombre complet del dia de la setmana." msgid "Months" msgstr "Mesos" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7386,11 +7622,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "uk_UK" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7460,12 +7691,6 @@ msgstr "" msgid "Activity" msgstr "Activitat" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7509,6 +7734,12 @@ msgstr "Província" msgid "All Properties" msgstr "Totes les propietats" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7549,6 +7780,15 @@ msgstr "Saint Kitts i Nevis Anguilla" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7574,10 +7814,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Nom de l'objecte" @@ -7609,9 +7856,11 @@ msgid "Icon" msgstr "Icona" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "D'acord" @@ -7692,7 +7941,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Importa mòdul" @@ -7781,6 +8038,13 @@ msgstr "Romania" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8008,6 +8272,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Nous mòduls" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8029,6 +8298,12 @@ msgstr "Somàlia" msgid "Configure Simple View" msgstr "Configura mode de vista" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8062,6 +8337,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8069,6 +8350,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8104,10 +8391,10 @@ msgid "Short Description" msgstr "Descripció breu" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8166,6 +8453,12 @@ msgid "Number of time the function is called,\n" msgstr "Número de vegades que la funció s'executarà,\n" "un número negatiu indica que s'executarà sempre." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8221,6 +8514,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Regles d'accés" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8468,6 +8767,11 @@ msgstr "4. %b, %B ==> Dic, Desembre" msgid "Load an Official Translation" msgstr "Carrega una traducció oficial" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Lliurament" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8511,6 +8815,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8551,6 +8861,7 @@ msgstr "Holandès (Bèlgica) / Nederlands (Belgïe)" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Biblioteques de mòduls" @@ -8600,7 +8911,6 @@ msgstr "Camps de tipus" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8673,6 +8983,12 @@ msgstr "Hora 00->12: %(h12)s" msgid "Uncheck the active field to hide the contact." msgstr "Desmarqueu el camp actiu per ocultar el contacte." +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8715,6 +9031,12 @@ msgstr "Estònia" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8830,11 +9152,6 @@ msgstr "Mòduls a actualitzar" msgid "Company Architecture" msgstr "Estructura de la companyia" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8941,6 +9258,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Acció de menú" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9040,6 +9363,12 @@ msgstr "La ruta del fitxer .rml o NULL si el contingut està a report_rml_conten msgid "Account Number" msgstr "Número de compte" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9077,11 +9406,11 @@ msgid "Category Name" msgstr "Nom de categoria" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Assumpte" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9089,6 +9418,12 @@ msgstr "Assumpte" msgid "From" msgstr "Des de" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9243,10 +9578,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Mode divisió" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9272,7 +9606,6 @@ msgstr "fill_de" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9291,6 +9624,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9325,11 +9664,23 @@ msgstr "Kiribati" msgid "Iraq" msgstr "Iraq" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "Acció a executar" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Importació de mòdul" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9497,6 +9848,12 @@ msgstr "Fórmula" msgid "Turkish / Türkçe" msgstr "Turc / Türkçe" +#. 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 "Termes no traduïts" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9561,6 +9918,12 @@ msgstr "Accions" msgid "High" msgstr "Alta" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9578,9 +9941,11 @@ msgid "Bank Identifier Code" msgstr "Codi d'identificador bancari" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" -msgstr "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" +msgstr "" #. module: base #: code:addons/addons/account/account.py:0 @@ -9615,10 +9980,10 @@ msgstr "Turkmenistan" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9642,6 +10007,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9699,9 +10065,10 @@ msgid "Technical guide" msgstr "Guía técnica" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" -msgstr "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -9808,6 +10175,12 @@ msgstr "" msgid "Start configuration" msgstr "Inicia configuració" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9902,6 +10275,12 @@ msgstr "" msgid "Titles" msgstr "Títols" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10112,6 +10491,12 @@ msgstr "Camp fill" msgid "Action Usage" msgstr "Ús de l'acció" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10237,9 +10622,10 @@ msgid "Bahrain" msgstr "Bahrain" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Lliurament" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10270,12 +10656,23 @@ msgstr "Afegir contracte de manteniment" msgid "Version" msgstr "Versió" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10314,6 +10711,7 @@ msgstr "Azerbaidjan" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10403,6 +10801,14 @@ msgstr "Calcular suma" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Dia de la setmana (0:Dilluns): %(weekday)s" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10449,6 +10855,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "País" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "El mòdul s'ha importat correctament!" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10476,6 +10887,12 @@ msgstr "És un objecte" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10509,15 +10926,14 @@ msgid "Portrait" msgstr "Vertical" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Assumpte" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10564,6 +10980,12 @@ msgstr "Progrés de la configuració" msgid "Configuration Wizards" msgstr "Assistents de configuració" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10571,9 +10993,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Mode divisió" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10708,6 +11131,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "Illes Turques i Caicos" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10732,6 +11161,12 @@ msgstr "Objecte del recurs" msgid "Function" msgstr "Funció" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Grau de satisfacció" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10812,6 +11247,12 @@ msgstr "" msgid "Create Object" msgstr "Crea objecte" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/cs_CZ.po b/bin/addons/base/i18n/cs_CZ.po index 5d1f1dbdcc1..15a3571fa79 100644 --- a/bin/addons/base/i18n/cs_CZ.po +++ b/bin/addons/base/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,9 +627,10 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Akce" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "Název" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" msgid "On Create" msgstr "On Create(On Create)" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,9 +1333,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Přednastavená hodnota(Default Value)" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "Kategorie modulů" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "Jazyky" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,9 +3245,10 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Nové moduly" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3219,6 +3349,11 @@ msgstr "Jméno jazyka" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "Typ případu(Type of event)" msgid "Bank account" msgstr "Bankovní účet" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,10 +3732,10 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Názor(State of mind)" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "Další číslo" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,14 +4769,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Akce" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "Kód státu" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Čárový graf(Line plot)" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Přednastavená hodnota(Default Value)" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "Měsíců" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "Aktivita(Activity)" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "Stav země(Country state)" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "Ikona" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Import modulu" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Nové moduly" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Dodací" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "Akce nabídky" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,11 +9394,11 @@ msgid "Category Name" msgstr "Název kategorie" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Předmět" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9077,6 +9406,12 @@ msgstr "Předmět" msgid "From" msgstr "Od(From)" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,10 +9566,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Rozdělený mód(Split mode)" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9260,7 +9594,6 @@ msgstr "potomek" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Import modulu" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "Akce" msgid "High" msgstr "Vysoká" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "Technický průvodce(Technical guide)" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "Následující pole(CHild field)" msgid "Action Usage" msgstr "Použití akce(Action Usage)" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,9 +10608,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Dodací" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "Vypočítat celek(Calculate sum)" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "Země" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Modul importován!" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "je objekt(Is object)" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "Orientace stránky nastojato(Portrait)" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Předmět" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,9 +10979,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Rozdělený mód(Split mode)" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "Funkce" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Názor(State of mind)" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/de_DE.po b/bin/addons/base/i18n/de_DE.po index 18fcde8c717..398a2fd6e2b 100644 --- a/bin/addons/base/i18n/de_DE.po +++ b/bin/addons/base/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "Arbeitsfluss für" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -454,6 +468,12 @@ msgstr "Französich Guyana" msgid "Bosnian / bosanski jezik" msgstr "Bosnisch" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -509,6 +529,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -606,9 +632,10 @@ msgid "Jordan" msgstr "Jordanien" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -681,6 +708,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -819,6 +853,12 @@ msgstr "Indien" msgid "maintenance contract modules" msgstr "Wartungsvertragsmodul" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -877,6 +917,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -914,6 +960,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Aktion" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -943,6 +999,12 @@ msgstr "Cayman Inseln" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1058,9 +1120,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1107,6 +1170,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1194,6 +1263,11 @@ msgstr "Stellt das Feld zur Verfügung, aus dem die EMail Adresse geholt wird, z msgid "Role Name" msgstr "Rolle Bezeichnung" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "zugeordneter Verkäufer" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1252,6 +1326,11 @@ msgstr "Berichte" msgid "On Create" msgstr "Bei Erzeugung" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Bitte wählen Sie die .ZIP Datei für den Import" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1259,9 +1338,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Standard Wert" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1343,6 +1423,12 @@ msgstr "Ost-Timor" msgid "Simple domain setup" msgstr "Simple domain setup" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1413,6 +1499,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1439,6 +1531,14 @@ msgstr "ir.rule" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1467,9 +1567,9 @@ msgid "Report Custom" msgstr "Report Anpassung" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Jahr ohne Jahrtausend: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "Turkmenistan" #. module: base #: view:res.lang:0 @@ -1494,11 +1594,6 @@ msgstr "Definition der Nachricht. Es können Felder dies Objetes verwendet werde msgid "Attached Model" msgstr "Angehängte Vorlage" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1703,6 +1798,11 @@ msgstr "Dateianhang" msgid "Ireland" msgstr "Irland" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Jahr ohne Jahrtausend: %(y)s" + #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -2099,6 +2199,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "%p - Equivalent zu AM oder PM." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2529,6 +2635,12 @@ msgstr "" msgid "Sir" msgstr "Herr" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2779,6 +2891,11 @@ msgstr "Umsatzsteuer Identifikationsnummer. Häckchen setzen, wenn der Partner U msgid "Categories of Modules" msgstr "Kategorien Module" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2876,6 +2993,12 @@ msgstr "Firmen RML Header hinzufügen?" msgid "Connect Actions To Client Events" msgstr "Verbinde Aktion mit Client Vorgang" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3066,6 +3189,12 @@ msgstr "" msgid "Languages" msgstr "Sprachen" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3123,9 +3252,10 @@ msgid "Base Field" msgstr "Basis Feld" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Neue Module" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3226,6 +3356,11 @@ msgstr "Landessprache" msgid "Holy See (Vatican City State)" msgstr "Vatikan (Heiliger Stuhl)" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Module .ZIP Datei" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3283,6 +3418,18 @@ msgstr "Ereignisart" msgid "Bank account" msgstr "Bankkonto" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3356,10 +3503,9 @@ msgid "Equatorial Guinea" msgstr "Äquatorialguinea" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" -msgstr "" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" +msgstr "Modul Import" #. module: base #: code:addons/osv/orm.py:0 @@ -3388,6 +3534,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "%c - Datums und Zeitangabe." +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3482,7 +3633,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3590,10 +3740,10 @@ msgid "Set NULL" msgstr "Set NULL" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Kundenzufriedenheit" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3617,6 +3767,12 @@ msgstr "Die Regel ist für mich o.K. falls alle Tests erfolgreich verlaufen." msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3775,6 +3931,11 @@ msgstr "Nächste Nummer zuweisen" msgid "Rates" msgstr "Raten" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3909,6 +4070,12 @@ msgstr "Zuweisung an:" msgid "Decimal Separator" msgstr "Dezimalzeichen" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4033,6 +4200,19 @@ msgstr "XML Bericht" msgid "No grid matching for this carrier !" 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 "Interner Nutzer der Rechnung bekommt." + +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4095,7 +4275,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4132,6 +4311,12 @@ msgstr "Objekte" msgid "Antarctica" msgstr "Antarktis" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4592,14 +4777,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Aktion" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4640,9 +4826,10 @@ msgid "Fiji" msgstr "Fidschi-Inseln" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Grösse" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4657,9 +4844,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4954,6 +5141,12 @@ msgstr "Lithuanian / Lietuvių kalba" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "Angabe des Feldnamens in dem die Datensatz ID nach Erstellung gespeichert wird. Wenn dieses leer bleibt, kann der neue Datensatz nicht verfolgt werden." +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4975,6 +5168,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "Luxemburg" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5103,6 +5302,13 @@ msgstr "Staatscode" msgid "On delete" msgstr "wird gelöscht" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5196,10 +5402,10 @@ msgid "Please provide a partner for the sale." 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 "Nicht übersetzte Begriffe" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5274,6 +5480,7 @@ msgstr "Burundi" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5294,6 +5501,12 @@ msgstr "" msgid "Bhutan" msgstr "Bhutan" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5325,6 +5538,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5528,6 +5747,12 @@ msgstr "Übersprungen" msgid "Custom Field" msgstr "benutzerdefiniertes Feld" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5808,10 +6033,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Grösse" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5858,6 +6082,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5879,9 +6109,9 @@ msgid "Always Searchable" msgstr "immer eine Suche anzeigen" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Sudan" #. module: base #: model:res.country,name:base.hk @@ -6158,7 +6388,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6257,17 +6486,17 @@ msgstr "Komplette Bezeichnung des Landes." msgid "Iteration" msgstr "Iteration" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6297,7 +6526,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6333,11 +6561,6 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunion (franz.)" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6528,11 +6751,6 @@ msgstr "Erstellt am" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6591,6 +6809,12 @@ msgstr "" msgid "Algeria" msgstr "Algerien" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6661,6 +6885,7 @@ msgstr "Kunden Partner" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6696,9 +6921,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Neutrale Zone" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6828,12 +7053,6 @@ msgstr "Ägypten" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7120,11 +7339,22 @@ msgstr "Tausender Trennzeichen" msgid "Created Date" msgstr "Datum erstellt" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Grundzeile" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Standard Wert" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7242,9 +7472,9 @@ msgid "Day of the year: %(doy)s" msgstr "Tag im Jahr: %(doy)s" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "Neutrale Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7276,6 +7506,12 @@ msgstr "%A - Ausgeschriebener Wochentag" msgid "Months" msgstr "Monate" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7386,11 +7622,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7460,12 +7691,6 @@ msgstr "" msgid "Activity" msgstr "Aktion" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7509,6 +7734,12 @@ msgstr "Bundesland" msgid "All Properties" msgstr "Alle Standardeinträge" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7549,6 +7780,15 @@ msgstr "St. Kitts und Nevis" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7574,10 +7814,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Objekt Bezeichnung" @@ -7609,9 +7856,11 @@ msgid "Icon" msgstr "Icon" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "OK" @@ -7692,7 +7941,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Import Module" @@ -7781,6 +8038,13 @@ msgstr "Rumänien" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8008,6 +8272,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Neue Module" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8029,6 +8298,12 @@ msgstr "Somalia" msgid "Configure Simple View" msgstr "Konfiguriere Ansicht" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8062,6 +8337,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8069,6 +8350,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8104,10 +8391,10 @@ msgid "Short Description" msgstr "Kurzbeschreibung" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8166,6 +8453,12 @@ msgid "Number of time the function is called,\n" msgstr "Anzahl der aufgerufenen Funktionen \n" "Eine negative Zahl zeigt an dass diese Funktion immer ausgeführt wird" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8221,6 +8514,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Berechtigungen Regeln" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8468,6 +8767,11 @@ msgstr "4. %b, %B ==> Dez, Dezember" msgid "Load an Official Translation" msgstr "Lade offizielle Übersetzung" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Lieferung" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8511,6 +8815,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8551,6 +8861,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Webordner Module" @@ -8600,7 +8911,6 @@ msgstr "Felder Typen" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8673,6 +8983,12 @@ msgstr "Stunde 00->12: %(h12)s" msgid "Uncheck the active field to hide the contact." msgstr "Entferne Haken, um den Kontakt zu verstecken (View)" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8715,6 +9031,12 @@ msgstr "Estland" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8830,11 +9152,6 @@ msgstr "Module Updates" msgid "Company Architecture" msgstr "Organisation" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8941,6 +9258,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Menü Aktion" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9040,6 +9363,12 @@ msgstr "Der .rml Pfad für die Datei oder für die NULL ist in dem Report report msgid "Account Number" msgstr "Kontonummer" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9077,11 +9406,11 @@ msgid "Category Name" msgstr "Kategorie Bezeichnung" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Thema" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9089,6 +9418,12 @@ msgstr "Thema" msgid "From" msgstr "Von" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9243,10 +9578,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Modus Aufteilung" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9272,7 +9606,6 @@ msgstr "child_of" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9291,6 +9624,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9325,11 +9664,23 @@ msgstr "Kiribati" msgid "Iraq" msgstr "Irak" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "Startaktion" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Importiere Module" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9497,6 +9848,12 @@ msgstr "Formel" msgid "Turkish / Türkçe" msgstr "Turkish / Türkçe" +#. 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 "Nicht übersetzte Begriffe" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9561,6 +9918,12 @@ msgstr "Aktionen" msgid "High" msgstr "Gut" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9578,9 +9941,11 @@ msgid "Bank Identifier Code" msgstr "Bank Identifikation" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" -msgstr "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" +msgstr "" #. module: base #: code:addons/addons/account/account.py:0 @@ -9615,10 +9980,10 @@ msgstr "Turkmenistan" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9642,6 +10007,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9699,8 +10065,9 @@ msgid "Technical guide" msgstr "Technisches Wissen" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9808,6 +10175,12 @@ msgstr "" msgid "Start configuration" msgstr "Start Konfiguration" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9902,6 +10275,12 @@ msgstr "" msgid "Titles" msgstr "Partner Titel" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10113,6 +10492,12 @@ msgstr "(Unter-) Konto" msgid "Action Usage" msgstr "Verwendung" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10238,9 +10623,10 @@ msgid "Bahrain" msgstr "Bahrain" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Lieferung" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10271,12 +10657,23 @@ msgstr "Hinzufüge Wartung" msgid "Version" msgstr "Version" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10315,6 +10712,7 @@ msgstr "Aserbaidschan" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10404,6 +10802,14 @@ msgstr "Berechne Summe" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Tag der Woche (0:Monday): %(weekday)s" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10450,6 +10856,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "Land" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Modul erfolgreich importiert!" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10477,6 +10888,12 @@ msgstr "Ist Objekt?" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10510,15 +10927,14 @@ msgid "Portrait" msgstr "Porträt" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Thema" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10565,6 +10981,12 @@ msgstr "Konfigurationen" msgid "Configuration Wizards" msgstr "Installationsassistent" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10572,9 +10994,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Modus Aufteilung" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10709,6 +11132,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "Turks- und Caicosinseln" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10733,6 +11162,12 @@ msgstr "Ressource Object" msgid "Function" msgstr "Funktion" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Kundenzufriedenheit" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10813,6 +11248,12 @@ msgstr "" msgid "Create Object" msgstr "Erzeuge Objekt" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/es_AR.po b/bin/addons/base/i18n/es_AR.po index 2c4a16d568e..887595f74c8 100644 --- a/bin/addons/base/i18n/es_AR.po +++ b/bin/addons/base/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,9 +627,10 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "Nombre del Rol" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" msgid "On Create" msgstr "Al crearse" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,9 +1333,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Valor predeterminado" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "Tipo de Evento" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,10 +3732,10 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Estado de Ánimo" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "Número siguiente" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,15 +4769,16 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + #. module: base #: view:ir.actions.server:0 msgid "Email Configuration" @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "Código de Provincia" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Gráfico de líneas" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Valor predeterminado" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "Meses" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "Actividad" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "Provincia" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "Icono" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "de Entrega" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,11 +9394,11 @@ msgid "Category Name" msgstr "Nombre de Categoría" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Asunto" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9077,6 +9406,12 @@ msgstr "Asunto" msgid "From" msgstr "De" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,10 +9566,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Método de división" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "Alta" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "Campo \"hijo\"" msgid "Action Usage" msgstr "Uso de la Acción" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,9 +10608,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "de Entrega" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "Calcular Suma" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "Es Objeto" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "Retrato" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Asunto" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,9 +10979,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Método de división" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "Función" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Estado de Ánimo" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/es_ES.po b/bin/addons/base/i18n/es_ES.po index c5a42f19fbd..7c22db16012 100644 --- a/bin/addons/base/i18n/es_ES.po +++ b/bin/addons/base/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "Flujo sobre" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -455,6 +469,12 @@ msgstr "Guayana francesa" msgid "Bosnian / bosanski jezik" msgstr "Bosnio / bosanski jezik" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -510,6 +530,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -607,9 +633,10 @@ msgid "Jordan" msgstr "Jordania" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -682,6 +709,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -820,6 +854,12 @@ msgstr "India" msgid "maintenance contract modules" msgstr "módulos del contrato de mantenimiento" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -878,6 +918,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -915,6 +961,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Acción" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -944,6 +1000,12 @@ msgstr "Islas Caimán" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1059,9 +1121,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1108,6 +1171,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1195,6 +1264,11 @@ msgstr "Indique los campos que se utilizarán para extraer la dirección de corr msgid "Role Name" msgstr "Nombre de rol" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Comercial dedicado" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1253,6 +1327,11 @@ msgstr "Informes" msgid "On Create" msgstr "Al crear" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Introduzca el archivo .ZIP del módulo a importar." + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1260,9 +1339,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Valor por defecto" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1344,6 +1424,12 @@ msgstr "Timor oriental" msgid "Simple domain setup" msgstr "Definición dominio simple" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1414,6 +1500,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1440,6 +1532,14 @@ msgstr "ir.regla" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1468,9 +1568,9 @@ msgid "Report Custom" msgstr "Informe personalizado" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Año sin la centuria: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "Turkmenistán" #. module: base #: view:res.lang:0 @@ -1495,11 +1595,6 @@ msgstr "Indique el mensaje. Puede utilizar los campos del objeto. por ej. `Estim msgid "Attached Model" msgstr "Modelo archivo adjunto" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1704,6 +1799,11 @@ msgstr "Adjunto" msgid "Ireland" msgstr "Irlanda" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Año sin la centuria: %(y)s" + #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -2098,6 +2198,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "%p - Equivalente a AM o PM." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2528,6 +2634,12 @@ msgstr "" msgid "Sir" msgstr "Sr." +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2778,6 +2890,11 @@ msgstr "Número CIF/NIF. Marque esta caja si la empresa está sujeta al IVA. Se msgid "Categories of Modules" msgstr "Categorías de módulos" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2878,6 +2995,12 @@ msgstr "Añadir o no la cabecera corporativa en el informe RML" msgid "Connect Actions To Client Events" msgstr "Conectar acciones a eventos del cliente" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3068,6 +3191,12 @@ msgstr "" msgid "Languages" msgstr "Idiomas" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3125,9 +3254,10 @@ msgid "Base Field" msgstr "Campo base" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Nuevos módulos" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3228,6 +3358,11 @@ msgstr "Nombre idioma" msgid "Holy See (Vatican City State)" msgstr "Santa Sede (Ciudad Estado del Vaticano)" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Archivo .ZIP del módulo" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3285,6 +3420,18 @@ msgstr "Tipo de evento" msgid "Bank account" msgstr "Cuenta bancaria" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3358,10 +3505,9 @@ msgid "Equatorial Guinea" msgstr "Guinea ecuatorial" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" -msgstr "" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" +msgstr "Importación de módulo" #. module: base #: code:addons/osv/orm.py:0 @@ -3390,6 +3536,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "%c - Representación apropiada de fecha y hora." +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3484,7 +3635,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3592,10 +3742,10 @@ msgid "Set NULL" msgstr "Establecer a NULL" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Grado de satisfacción" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3619,6 +3769,12 @@ msgstr "La regla se satisface si todos los tests son Verdadero (AND)" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3777,6 +3933,11 @@ msgstr "Número siguiente" msgid "Rates" msgstr "Tasas" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3911,6 +4072,12 @@ msgstr "Adjuntado a" msgid "Decimal Separator" msgstr "Separador de decimales" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4035,6 +4202,19 @@ msgstr "Informe XML" msgid "No grid matching for this carrier !" 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 "El usuario interno que se encarga de comunicarse con esta empresa si hay." + +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4097,7 +4277,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4134,6 +4313,12 @@ msgstr "Instancias" msgid "Antarctica" msgstr "Antártida" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4594,14 +4779,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Acción" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4642,9 +4828,10 @@ msgid "Fiji" msgstr "Fiji" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Tamaño" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4659,9 +4846,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "Sudán" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4956,6 +5143,12 @@ msgstr "Lituano / Lietuvių kalba" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "Indique el nombre de campo donde se almacena el id del registro después de las operaciones de creación. Si está vacío, no podrá realizar un seguimiento del registro nuevo." +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4977,6 +5170,12 @@ msgstr "ir.traduccion" msgid "Luxembourg" msgstr "Luxemburgo" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5105,6 +5304,13 @@ msgstr "Código de provincia" msgid "On delete" msgstr "Al eliminar" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5198,10 +5404,10 @@ msgid "Please provide a partner for the sale." 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 "Términos no traducibles" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5276,6 +5482,7 @@ msgstr "Burundi" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5296,6 +5503,12 @@ msgstr "" msgid "Bhutan" msgstr "Bhután" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5327,6 +5540,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5530,6 +5749,12 @@ msgstr "Omitido" msgid "Custom Field" msgstr "Campo personalizado" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5810,10 +6035,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.objeto.lineas" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Tamaño" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5858,6 +6082,12 @@ msgstr "res.empresa.evento" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5879,9 +6109,9 @@ msgid "Always Searchable" msgstr "Siempre puede ser buscado" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Sudán" #. module: base #: model:res.country,name:base.hk @@ -6158,7 +6388,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6257,17 +6486,17 @@ msgstr "El nombre completo del país." msgid "Iteration" msgstr "Iteración" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6297,7 +6526,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6333,11 +6561,6 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunión (Francesa)" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6528,11 +6751,6 @@ msgstr "Fecha de creación" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6591,6 +6809,12 @@ msgstr "" msgid "Algeria" msgstr "Argelia" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6661,6 +6885,7 @@ msgstr "Clientes" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6696,9 +6921,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Zona neutral" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6828,12 +7053,6 @@ msgstr "Egipto" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7120,11 +7339,22 @@ msgstr "Separador de miles" msgid "Created Date" msgstr "Fecha creación" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Gráfico de líneas" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Valor por defecto" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7242,9 +7472,9 @@ msgid "Day of the year: %(doy)s" msgstr "Día del año: %(doy)s" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "Zona neutral" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7276,6 +7506,12 @@ msgstr "%A - Nombre completo del día de la semana." msgid "Months" msgstr "Meses" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7386,11 +7622,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7460,12 +7691,6 @@ msgstr "" msgid "Activity" msgstr "Actividad" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7509,6 +7734,12 @@ msgstr "Provincia" msgid "All Properties" msgstr "Todas las propiedades" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7549,6 +7780,15 @@ msgstr "Antillas San Kitts y Nevis" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7574,10 +7814,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Nombre del objeto" @@ -7609,9 +7856,11 @@ msgid "Icon" msgstr "Icono" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "Aceptar" @@ -7692,7 +7941,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Importar módulo" @@ -7781,6 +8038,13 @@ msgstr "Rumanía" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8008,6 +8272,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Nuevos módulos" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8029,6 +8298,12 @@ msgstr "Somalia" msgid "Configure Simple View" msgstr "Configurar modo de vista" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8062,6 +8337,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8069,6 +8350,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8104,10 +8391,10 @@ msgid "Short Description" msgstr "Descripción breve" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8166,6 +8453,12 @@ msgid "Number of time the function is called,\n" msgstr "Número de veces que la función se ejecutará,\n" "un número negativo indica que se ejecutará siempre." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8221,6 +8514,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Reglas de acceso" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8468,6 +8767,11 @@ msgstr "4. %b, %B ==> Dic, Diciembre" msgid "Load an Official Translation" msgstr "Cargar una traducción oficial" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Envío" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8511,6 +8815,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8551,6 +8861,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Bibliotecas de módulos" @@ -8600,7 +8911,6 @@ msgstr "Campos de tipo" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8673,6 +8983,12 @@ msgstr "Hora 00->12: %(h12)s" msgid "Uncheck the active field to hide the contact." msgstr "Desmarque el campo activo para ocultar el contacto." +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8715,6 +9031,12 @@ msgstr "Estonia" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8830,11 +9152,6 @@ msgstr "Módulos a actualizar" msgid "Company Architecture" msgstr "Estructura de la compañía" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8941,6 +9258,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Acción de menú" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9040,6 +9363,12 @@ msgstr "La ruta del archivo .rml o NULL si el contenido está en report_rml_cont msgid "Account Number" msgstr "Número de cuenta" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9077,11 +9406,11 @@ msgid "Category Name" msgstr "Nombre de categoría" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Asunto" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9089,6 +9418,12 @@ msgstr "Asunto" msgid "From" msgstr "Desde" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9243,10 +9578,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Modo división" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9272,7 +9606,6 @@ msgstr "hijo_de" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9291,6 +9624,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9325,11 +9664,23 @@ msgstr "Kiribati" msgid "Iraq" msgstr "Irak" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "Acción a ejecutar" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Importación de módulo" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9497,6 +9848,12 @@ msgstr "Fórmula" msgid "Turkish / Türkçe" msgstr "Turco / Türkçe" +#. 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 "Términos no traducibles" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9561,6 +9918,12 @@ msgstr "Acciones" msgid "High" msgstr "Alta" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9578,9 +9941,11 @@ msgid "Bank Identifier Code" msgstr "Código de identificador bancario" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" -msgstr "Turkmenistán" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" +msgstr "" #. module: base #: code:addons/addons/account/account.py:0 @@ -9615,10 +9980,10 @@ msgstr "Turkmenistán" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9642,6 +10007,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9699,8 +10065,9 @@ msgid "Technical guide" msgstr "Guía técnica" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9808,6 +10175,12 @@ msgstr "" msgid "Start configuration" msgstr "Iniciar configuración" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9902,6 +10275,12 @@ msgstr "" msgid "Titles" msgstr "Títulos" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10112,6 +10491,12 @@ msgstr "Campo hijo" msgid "Action Usage" msgstr "Uso de la acción" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10237,9 +10622,10 @@ msgid "Bahrain" msgstr "Bahréin" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Envío" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10270,12 +10656,23 @@ msgstr "Añadir contrato de mantenimiento" msgid "Version" msgstr "Versión" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10314,6 +10711,7 @@ msgstr "Azerbaiyán" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10403,6 +10801,14 @@ msgstr "Calcular suma" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Día de la semana (0:Lunes): %(weekday)s" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10449,6 +10855,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "País" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "¡El módulo se ha importado correctamente!" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10476,6 +10887,12 @@ msgstr "Es un objeto" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10509,15 +10926,14 @@ msgid "Portrait" msgstr "Vertical" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Asunto" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10564,6 +10980,12 @@ msgstr "Progreso de la configuración" msgid "Configuration Wizards" msgstr "Asistentes de configuración" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10571,9 +10993,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Modo división" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10708,6 +11131,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "Islas Turcas y Caicos" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10732,6 +11161,12 @@ msgstr "Objeto del recurso" msgid "Function" msgstr "Función" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Grado de satisfacción" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10812,6 +11247,12 @@ msgstr "" msgid "Create Object" msgstr "Crear objeto" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/et_EE.po b/bin/addons/base/i18n/et_EE.po index 577bc75862e..93562f1377e 100644 --- a/bin/addons/base/i18n/et_EE.po +++ b/bin/addons/base/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "Töövoog millel" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -454,6 +468,12 @@ msgstr "Prantsuse Guyana" msgid "Bosnian / bosanski jezik" msgstr "Bosnia / bosanski jezik" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -509,6 +529,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -606,9 +632,10 @@ msgid "Jordan" msgstr "Jordaania" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -681,6 +708,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -819,6 +853,12 @@ msgstr "India" msgid "maintenance contract modules" msgstr "hoolduslepingu moodulid" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -877,6 +917,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -914,6 +960,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Tegevus" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -943,6 +999,12 @@ msgstr "Kaimani saared" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1058,9 +1120,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1107,6 +1170,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1194,6 +1263,11 @@ msgstr "Varustab väljadega, mida kasutatakse e-posti aadressi tõmbamiseks. Nt msgid "Role Name" msgstr "Rolli nimi" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Määratud müügimees" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1252,6 +1326,11 @@ msgstr "Aruanded" msgid "On Create" msgstr "Loomisel" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Palun anna oma mooduli .ZIP fail importimiseks." + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1259,9 +1338,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Vaikeväärtus" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1343,6 +1423,12 @@ msgstr "Ida-Timor" msgid "Simple domain setup" msgstr "Lihtne domeeni häälestus" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1413,6 +1499,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1439,6 +1531,14 @@ msgstr "ir.rule" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1467,9 +1567,9 @@ msgid "Report Custom" msgstr "Kohandatud aruanne" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Aasta ilma sajandita: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "Türkmenistan" #. module: base #: view:res.lang:0 @@ -1494,11 +1594,6 @@ msgstr "Määra sõnum. Sa saad kasutada välju objektidest. Nt 'Kallis [[ objec msgid "Attached Model" msgstr "Lisatud mudel" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1703,6 +1798,11 @@ msgstr "Manus" msgid "Ireland" msgstr "Iirimaa" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Aasta ilma sajandita: %(y)s" + #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -2097,6 +2197,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "%p - AM või PM vaste." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2527,6 +2633,12 @@ msgstr "" msgid "Sir" msgstr "Härra" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2777,6 +2889,11 @@ msgstr "Käibemaksukohuslase number. Märgi see kast, kui partner on käibemaksu msgid "Categories of Modules" msgstr "Moodulite Kategooriad" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2877,6 +2994,12 @@ msgstr "Kas lisada ühine RML päis või mitte" msgid "Connect Actions To Client Events" msgstr "Ühenda toimingud kliendi sündmustega" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3067,6 +3190,12 @@ msgstr "" msgid "Languages" msgstr "Keeled" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3124,9 +3253,10 @@ msgid "Base Field" msgstr "Baasväli" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Uued moodulid" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3227,6 +3357,11 @@ msgstr "Keele nimi" msgid "Holy See (Vatican City State)" msgstr "Püha Tool (Vatikani Linnriik)" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Mooduli .ZIP fail" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3284,6 +3419,18 @@ msgstr "Sündmuse tüüp" msgid "Bank account" msgstr "Pangakonto" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3357,10 +3504,9 @@ msgid "Equatorial Guinea" msgstr "Ekvatoriaal-Guinea" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" -msgstr "" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" +msgstr "Mooduli import" #. module: base #: code:addons/osv/orm.py:0 @@ -3389,6 +3535,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "%c - Sobiv kuupäeva ja aja esitlus." +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3483,7 +3634,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3591,10 +3741,10 @@ msgid "Set NULL" msgstr "Määra NULL" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Meeleolu" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3618,6 +3768,12 @@ msgstr "Reegel on rahuldatud, kui kõik testid on Tõesed (AND)" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3776,6 +3932,11 @@ msgstr "Järgmine number" msgid "Rates" msgstr "Kursid" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3910,6 +4071,12 @@ msgstr "Lisatud millele" msgid "Decimal Separator" msgstr "Kümnendkohtade eraldaja" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4034,6 +4201,19 @@ msgstr "XML aruanne" msgid "No grid matching for this carrier !" 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 "Sisemine kasutaja, kes vastutab selle partneriga suhtlemise eest." + +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4096,7 +4276,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4133,6 +4312,12 @@ msgstr "Isendid" msgid "Antarctica" msgstr "Antarktika" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4347,7 +4532,7 @@ msgstr "Soovitame teha menüü uuestilaadimise (Ctrl+t Ctrl+r)." #: view:ir.ui.view_sc:0 #: field:res.partner.title,shortcut:0 msgid "Shortcut" -msgstr "Otsetee" +msgstr "Lühend" #. module: base #: field:ir.model.data,date_init:0 @@ -4593,14 +4778,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Tegevus" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4641,9 +4827,10 @@ msgid "Fiji" msgstr "Fidži" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Suurus" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4658,9 +4845,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "Sudaan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4955,6 +5142,12 @@ msgstr "Leedu keel / Lietuvių kalba" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "Sisesta välja nimi, kus kirje id hoitakse pärast loomist. Kui see on tühi siis sa ei saa jälgita uut kirjet." +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4976,6 +5169,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "Luksemburg" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5104,6 +5303,13 @@ msgstr "Maakonna kood" msgid "On delete" msgstr "Kustutamisel" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5197,10 +5403,10 @@ msgid "Please provide a partner for the sale." 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 "Tõlkimata terminid" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5275,6 +5481,7 @@ msgstr "Burundi" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5295,6 +5502,12 @@ msgstr "" msgid "Bhutan" msgstr "Bhutan" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5326,6 +5539,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5529,6 +5748,12 @@ msgstr "Vahele jäetud" msgid "Custom Field" msgstr "Kohandatud väli" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5809,10 +6034,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Suurus" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5857,6 +6081,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5878,9 +6108,9 @@ msgid "Always Searchable" msgstr "Alati otsitav" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Sudaan" #. module: base #: model:res.country,name:base.hk @@ -6157,7 +6387,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6256,17 +6485,17 @@ msgstr "Riigi täisnimi." msgid "Iteration" msgstr "Iteratsioon" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6296,7 +6525,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6332,11 +6560,6 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunion (Prantsuse)" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "sv_SV" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6527,11 +6750,6 @@ msgstr "Loomise kuupäev" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6590,6 +6808,12 @@ msgstr "" msgid "Algeria" msgstr "Alžeeria" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6660,6 +6884,7 @@ msgstr "Kliendid" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6695,9 +6920,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Neutraalne tsoon" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6827,12 +7052,6 @@ msgstr "Egiptus" msgid "Select the object on which the action will work (read, write, create)." msgstr "Vali objekt millel toiming rakendub (loe, kirjuta, loo)." -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7119,11 +7338,22 @@ msgstr "Tuhandeliste eraldaja" msgid "Created Date" msgstr "Loomise kuupäev" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Joondiagramm" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Vaikeväärtus" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7241,9 +7471,9 @@ msgid "Day of the year: %(doy)s" msgstr "Päev aastas: %(doy)s" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "Neutraalne tsoon" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7275,6 +7505,12 @@ msgstr "%A - Täielik nädalapäeva nimetus." msgid "Months" msgstr "Kuud" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7385,11 +7621,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "uk_UK" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7459,12 +7690,6 @@ msgstr "" msgid "Activity" msgstr "Tegevus" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7508,6 +7733,12 @@ msgstr "Maakond" msgid "All Properties" msgstr "Kõik omadused" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7548,6 +7779,15 @@ msgstr "Saint Kitts ja Nevis Anguilla" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7573,10 +7813,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Objekti nimi" @@ -7608,9 +7855,11 @@ msgid "Icon" msgstr "Ikoon" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "Ok" @@ -7691,7 +7940,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Impordi moodul" @@ -7780,6 +8037,13 @@ msgstr "Rumeenia" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8007,6 +8271,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Uued moodulid" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8028,6 +8297,12 @@ msgstr "Somaalia" msgid "Configure Simple View" msgstr "Seadista lihtvaade" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8061,6 +8336,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8068,6 +8349,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8103,10 +8390,10 @@ msgid "Short Description" msgstr "Lühikirjeldus" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8165,6 +8452,12 @@ msgid "Number of time the function is called,\n" msgstr "Funktsiooni kutsumise arv,\n" "negatiivne arv näitab, et funktsiooni kutsutakse alati." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8220,6 +8513,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Ligipääsureeglid" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8467,6 +8766,11 @@ msgstr "4. %b, %B ==> Dets, Detsember" msgid "Load an Official Translation" msgstr "Lae ametlik tõlge" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Kättetoimetamine" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8510,6 +8814,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8550,6 +8860,7 @@ msgstr "Hollandi (Belgia) / Nederlands (Belgïe)" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Varamute nimekiri" @@ -8599,7 +8910,6 @@ msgstr "Tüübi väljad" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8672,6 +8982,12 @@ msgstr "Tund 00->12: %(h12)s" msgid "Uncheck the active field to hide the contact." msgstr "Kontakti peitmiseks eemalda märge \"Aktiivne\" kastist" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8714,6 +9030,12 @@ msgstr "Eesti" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8829,11 +9151,6 @@ msgstr "Uuendatavad moodulid" msgid "Company Architecture" msgstr "Firma arhitektuur" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8940,6 +9257,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Menüü tegevus" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9039,6 +9362,12 @@ msgstr "Faili .rml rada või NULL, kui sisu asub report_rml_content-is" msgid "Account Number" msgstr "Konto number" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9076,11 +9405,11 @@ msgid "Category Name" msgstr "Kategooria nimi" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Teema" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9088,6 +9417,12 @@ msgstr "Teema" msgid "From" msgstr "Saatja" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9242,10 +9577,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Jaotamisviis" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9271,7 +9605,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9290,6 +9623,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9324,11 +9663,23 @@ msgstr "Kiribati" msgid "Iraq" msgstr "Iraak" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "Toiming mida alustada" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Mooduli import" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9496,6 +9847,12 @@ msgstr "Valem" msgid "Turkish / Türkçe" msgstr "Türgi / Türkçe" +#. 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 "Tõlkimata terminid" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9560,6 +9917,12 @@ msgstr "Tegevused" msgid "High" msgstr "Kõrge" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9577,9 +9940,11 @@ msgid "Bank Identifier Code" msgstr "Panga identifitseerimiskood (BIC)" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" -msgstr "Türkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" +msgstr "" #. module: base #: code:addons/addons/account/account.py:0 @@ -9614,10 +9979,10 @@ msgstr "Türkmenistan" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9641,6 +10006,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9698,9 +10064,10 @@ msgid "Technical guide" msgstr "Tehniline juhis" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" -msgstr "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -9807,6 +10174,12 @@ msgstr "" msgid "Start configuration" msgstr "Alusta seadistamist" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9901,6 +10274,12 @@ msgstr "" msgid "Titles" msgstr "Tiitlid" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10111,6 +10490,12 @@ msgstr "Tütarväli" msgid "Action Usage" msgstr "Toimingu kasutus" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10236,9 +10621,10 @@ msgid "Bahrain" msgstr "Bahrein" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Kättetoimetamine" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10269,12 +10655,23 @@ msgstr "Lisa hooldusleping" msgid "Version" msgstr "Versioon" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10313,6 +10710,7 @@ msgstr "Aserbaidžaan" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10402,6 +10800,14 @@ msgstr "Arvuta summa" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Nädalapäev (0: Esmaspäev): %(weekday)s" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10448,6 +10854,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "Riik" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Moodul edukalt imporditud" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10475,6 +10886,12 @@ msgstr "On objekt" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10508,15 +10925,14 @@ msgid "Portrait" msgstr "Püstpaigutus" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Teema" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10563,6 +10979,12 @@ msgstr "Seadistamise edenemine" msgid "Configuration Wizards" msgstr "Seadistamisnõustajad" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10570,9 +10992,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Jaotamisviis" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10707,6 +11130,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "Turksi and Caicose saared" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10731,6 +11160,12 @@ msgstr "Vahendi objekt" msgid "Function" msgstr "Funktsioon" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Meeleolu" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10811,6 +11246,12 @@ msgstr "" msgid "Create Object" msgstr "Loo objekt" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/fi_FI.po b/bin/addons/base/i18n/fi_FI.po index 872f2e22cd5..0a101c2d29d 100644 --- a/bin/addons/base/i18n/fi_FI.po +++ b/bin/addons/base/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "Työnkulku päällä" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -454,6 +468,12 @@ msgstr "Ranskan Guayana" msgid "Bosnian / bosanski jezik" msgstr "Bosnia / bosanski jezik" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -509,6 +529,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -606,9 +632,10 @@ msgid "Jordan" msgstr "Jordania" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -681,6 +708,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -819,6 +853,12 @@ msgstr "Intia" msgid "maintenance contract modules" msgstr "ylläpitosopimus-moduulit" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -877,6 +917,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -914,6 +960,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Toiminto" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -943,6 +999,12 @@ msgstr "Caymansaaret" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1058,9 +1120,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1107,6 +1170,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1194,6 +1263,11 @@ msgstr "Antaa kentät joita käytetään sähköpostiosoitteen noutamiseen. Esim msgid "Role Name" msgstr "Työtehtävän nimi" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Vastaava myyjä" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1252,6 +1326,11 @@ msgstr "Raportit" msgid "On Create" msgstr "Kun luotu" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Anna moduulisi ZIP-tiedosto tuontia varten." + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1259,9 +1338,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Oletusarvo" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1343,6 +1423,12 @@ msgstr "Itä-Timor" msgid "Simple domain setup" msgstr "Yksinkertaisen toimialueen asetus" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1413,6 +1499,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1439,6 +1531,14 @@ msgstr "ir.rule" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1467,9 +1567,9 @@ msgid "Report Custom" msgstr "Kustomoitu raportti" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Vuosi ilman vuosisatoja: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "Turkmenistan" #. module: base #: view:res.lang:0 @@ -1494,11 +1594,6 @@ msgstr "Kirjoita viesti. Voit käyttää kenttiä objektista, esim. \"Hei [[ obj msgid "Attached Model" msgstr "Liitetty malli" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1703,6 +1798,11 @@ msgstr "Liite" msgid "Ireland" msgstr "Irlanti" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Vuosi ilman vuosisatoja: %(y)s" + #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -2097,6 +2197,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "%p - Vastaa joko merkintää AM tai PM." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2527,6 +2633,12 @@ msgstr "" msgid "Sir" msgstr "Herra" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2777,6 +2889,11 @@ msgstr "Arvonlisäverotunnus. Valitse tämä jos kumppaniin sovelletaan ALV:a. K msgid "Categories of Modules" msgstr "Moduulien kategoriat" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2877,6 +2994,12 @@ msgstr "Lisää halutessasi RML-ylätunniste" msgid "Connect Actions To Client Events" msgstr "Yhdistä toiminnot asiakasohjelman tapahtumiin" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3067,6 +3190,12 @@ msgstr "" msgid "Languages" msgstr "Kielet" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3124,9 +3253,10 @@ msgid "Base Field" msgstr "Peruskenttä" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Uudet moduulit" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3227,6 +3357,11 @@ msgstr "Kielen nimi" msgid "Holy See (Vatican City State)" msgstr "Vatikaanivaltio" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Moduuli ZIP-tiedosto" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3284,6 +3419,18 @@ msgstr "Tapahtuman tyyppi" msgid "Bank account" msgstr "Pankkitili" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3357,10 +3504,9 @@ msgid "Equatorial Guinea" msgstr "Päiväntasaajan Guinea" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" -msgstr "" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" +msgstr "Moduulin tuonti" #. module: base #: code:addons/osv/orm.py:0 @@ -3389,6 +3535,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "%c - Sopiva päivämäärän ja kellonajan esitysmuoto." +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3483,7 +3634,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3591,10 +3741,10 @@ msgid "Set NULL" msgstr "Aseta NULL" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Mielentila" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3618,6 +3768,12 @@ msgstr "Sääntö täyttyy jos kaikki testit ovat tosia" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3776,6 +3932,11 @@ msgstr "Seuraava numero" msgid "Rates" msgstr "Kurssit" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3910,6 +4071,12 @@ msgstr "Liitetty kohteeseen" msgid "Decimal Separator" msgstr "Desimaalin erotin" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4034,6 +4201,19 @@ msgstr "Raportin XML" msgid "No grid matching for this carrier !" 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 "Käyttäjä joka vastaa kumppanin kanssa viestimisestä, jos sellainen on." + +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4096,7 +4276,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4133,6 +4312,12 @@ msgstr "Instanssit" msgid "Antarctica" msgstr "Antarktis" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4593,14 +4778,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Toiminto" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4641,9 +4827,10 @@ msgid "Fiji" msgstr "Fidži" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Koko" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4658,9 +4845,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4955,6 +5142,12 @@ msgstr "Liettua / Lietuvių kalba" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "Anna kentäin nimi johon tietueen tunnus tallennetaan luontitoimintojen jälkeen. Jos tämä jätetään tyhjäksi, et voi jäljittää uutta tietuetta." +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4976,6 +5169,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "Luxemburg" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5104,6 +5303,13 @@ msgstr "Osavaltiokoodi" msgid "On delete" msgstr "Poistettaessa" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5197,10 +5403,10 @@ msgid "Please provide a partner for the sale." 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 "Kääntämättömät termit" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5275,6 +5481,7 @@ msgstr "Burundi" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5295,6 +5502,12 @@ msgstr "" msgid "Bhutan" msgstr "Bhutan" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5326,6 +5539,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5529,6 +5748,12 @@ msgstr "Ohitettu" msgid "Custom Field" msgstr "Kustomoitu kenttä" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5809,10 +6034,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Koko" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5857,6 +6081,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5878,9 +6108,9 @@ msgid "Always Searchable" msgstr "Aina haettavissa" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Sudan" #. module: base #: model:res.country,name:base.hk @@ -6157,7 +6387,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6256,17 +6485,17 @@ msgstr "Täydellinen maan nimi." msgid "Iteration" msgstr "Iteraatio" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6296,7 +6525,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6332,11 +6560,6 @@ msgstr "" msgid "Reunion (French)" msgstr "Réunion (Ranska)" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "sv_SV" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6527,11 +6750,6 @@ msgstr "Luontipäivä" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6590,6 +6808,12 @@ msgstr "" msgid "Algeria" msgstr "Algeria" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6660,6 +6884,7 @@ msgstr "Asiakaskumppanit" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6695,9 +6920,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Neutraali alue" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6827,12 +7052,6 @@ msgstr "Egypti" msgid "Select the object on which the action will work (read, write, create)." msgstr "Valitse objekti jossa toiminto suoritetaan (luku, kirjoitus, luonti)." -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7119,11 +7338,22 @@ msgstr "Tuhaterotin" msgid "Created Date" msgstr "Luontipäivä" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Viivadiagrammi" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Oletusarvo" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7241,9 +7471,9 @@ msgid "Day of the year: %(doy)s" msgstr "Vuodenpäivä: %(doy)s" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "Neutraali alue" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7275,6 +7505,12 @@ msgstr "%A - Viikonpäivän koko nimi." msgid "Months" msgstr "Kuukautta" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7385,11 +7621,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "uk_UK" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7459,12 +7690,6 @@ msgstr "" msgid "Activity" msgstr "Toiminto" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7508,6 +7733,12 @@ msgstr "Valtio" msgid "All Properties" msgstr "Kaikki ominaisuudet" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7548,6 +7779,15 @@ msgstr "Saint Kitts ja Nevis" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7573,10 +7813,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Objektin nimi" @@ -7608,9 +7855,11 @@ msgid "Icon" msgstr "Kuvake" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "OK" @@ -7691,7 +7940,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Tuo moduuli" @@ -7780,6 +8037,13 @@ msgstr "Romania" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8007,6 +8271,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Uudet moduulit" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8028,6 +8297,12 @@ msgstr "Somalia" msgid "Configure Simple View" msgstr "Konfiguroi yksinkertainen näkymä" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8061,6 +8336,12 @@ msgstr "SXW" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8068,6 +8349,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8103,10 +8390,10 @@ msgid "Short Description" msgstr "Lyhyt kuvaus" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8165,6 +8452,12 @@ msgid "Number of time the function is called,\n" msgstr "Kertoo kuinka monta kertaa funktio kutsutaan,\n" "negatiivinen numero tarkoittaa että funktio kutsutaan aina." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8220,6 +8513,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Käyttöoikeuksien säännöt" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8467,6 +8766,11 @@ msgstr "4. %b, %B = joulu, joulukuu" msgid "Load an Official Translation" msgstr "Lataa virallinen käännös" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Toimitus" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8510,6 +8814,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8550,6 +8860,7 @@ msgstr "Hollanti (belgia) / Nederlands (Belgïe)" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Ohjelmalähteiden lista" @@ -8599,7 +8910,6 @@ msgstr "Tyyppikentät" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8672,6 +8982,12 @@ msgstr "Tunti 00->12: %(h12)s" msgid "Uncheck the active field to hide the contact." msgstr "Poista valinta piilottaaksesi yhteyshenkilön." +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8714,6 +9030,12 @@ msgstr "Viro" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8829,11 +9151,6 @@ msgstr "Päivitettävät moduulit" msgid "Company Architecture" msgstr "Yrityksen rakenne" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8940,6 +9257,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Valikkotoiminto" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9039,6 +9362,12 @@ msgstr "Polku RML-tiedostoon tai NULL jos sisältö on \"report_rml_content\":ss msgid "Account Number" msgstr "Tilinumero" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9076,11 +9405,11 @@ msgid "Category Name" msgstr "Kategorian nimi" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Aihe" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9088,6 +9417,12 @@ msgstr "Aihe" msgid "From" msgstr "Lähettäjä" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9242,10 +9577,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Jakautumistyyppi" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9271,7 +9605,6 @@ msgstr "child_of" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9290,6 +9623,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9324,11 +9663,23 @@ msgstr "Kiribati" msgid "Iraq" msgstr "Irak" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "Suoritettava toiminto" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Moduulin tuonti" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9496,6 +9847,12 @@ msgstr "Kaava" msgid "Turkish / Türkçe" msgstr "Turkki / Türkçe" +#. 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 "Kääntämättömät termit" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9560,6 +9917,12 @@ msgstr "Toiminnot" msgid "High" msgstr "Korkea" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9577,9 +9940,11 @@ msgid "Bank Identifier Code" msgstr "BIC / SWIFT-koodi" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" -msgstr "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" +msgstr "" #. module: base #: code:addons/addons/account/account.py:0 @@ -9614,10 +9979,10 @@ msgstr "Turkmenistan" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9641,6 +10006,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9698,9 +10064,10 @@ msgid "Technical guide" msgstr "Tekninen opas" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" -msgstr "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -9807,6 +10174,12 @@ msgstr "" msgid "Start configuration" msgstr "Aloita konfiguraatio" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9901,6 +10274,12 @@ msgstr "" msgid "Titles" msgstr "Nimikkeet" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10111,6 +10490,12 @@ msgstr "Alakenttä" msgid "Action Usage" msgstr "Toiminnon käyttö" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10236,9 +10621,10 @@ msgid "Bahrain" msgstr "Bahrain" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Toimitus" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10269,12 +10655,23 @@ msgstr "Lisää ylläpitosopimus" msgid "Version" msgstr "Versio" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10313,6 +10710,7 @@ msgstr "Azerbaidžan" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10402,6 +10800,14 @@ msgstr "Laske summa" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Viikonpäivä (0 = maanantai): %(weekday)s" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10448,6 +10854,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "Maa" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Moduulin tuonti onnistui!" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10475,6 +10886,12 @@ msgstr "On objekti" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10512,15 +10929,14 @@ msgid "Portrait" msgstr "Pystysuunta" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Aihe" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10567,6 +10983,12 @@ msgstr "Konfiguraation eteneminen" msgid "Configuration Wizards" msgstr "Konfiguraatioiden ohjatut toiminnot" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10574,9 +10996,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Jakautumistyyppi" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10711,6 +11134,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "Turks- ja Caicossaaret" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10735,6 +11164,12 @@ msgstr "Resurssiobjekti" msgid "Function" msgstr "Tehtävä" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Mielentila" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10815,6 +11250,12 @@ msgstr "" msgid "Create Object" msgstr "Luo objekti" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/fr_FR.po b/bin/addons/base/i18n/fr_FR.po index 7d32e0b6fb2..5686b4888d1 100644 --- a/bin/addons/base/i18n/fr_FR.po +++ b/bin/addons/base/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "Diagramme de flux actif" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -107,7 +121,7 @@ msgstr "" #. module: base #: view:workflow.activity:0 msgid "Outgoing transitions" -msgstr "Transitions sortantes" +msgstr "Transitions sortante" #. module: base #: selection:ir.report.custom,frequency:0 @@ -191,7 +205,7 @@ msgstr "Trier par" #. module: base #: field:ir.sequence,number_increment:0 msgid "Increment Number" -msgstr "Incrémenter le numéro" +msgstr "Incrémenter le Numéro" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_tree @@ -454,6 +468,12 @@ msgstr "Guyane Française" msgid "Bosnian / bosanski jezik" msgstr "Bosnian / bosanski jezik" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -494,7 +514,7 @@ msgstr "Colombie" #. module: base #: view:ir.module.module:0 msgid "Schedule Upgrade" -msgstr "Planifier la mise à jour" +msgstr "Planifier la Mise à Jour" #. module: base #: code:addons/service/web_services.py:0 @@ -509,6 +529,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -587,7 +613,7 @@ msgstr "Export effectué" #. module: base #: view:ir.model:0 msgid "Model Description" -msgstr "Description du modèle" +msgstr "Description du Modèle" #. module: base #: code:addons/addons/odms/odms.py:0 @@ -606,9 +632,10 @@ msgid "Jordan" msgstr "Jordanie" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -681,6 +708,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -764,7 +798,7 @@ msgstr "Espagne" #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 msgid "You may have to reinstall some language pack." -msgstr "Vous devrez réinstaller quelques paquets de langue." +msgstr "Vous devrez réinstaller quelques packs de langue." #. module: base #: code:addons/addons/stock/product.py:0 @@ -819,6 +853,12 @@ msgstr "Inde" msgid "maintenance contract modules" msgstr "Modules du contrat de maintenance" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -877,10 +917,16 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" -msgstr "Champ enfant 2" +msgstr "Champ fils2" #. module: base #: model:res.country,name:base.gu @@ -890,7 +936,7 @@ msgstr "Guam (É-U)" #. module: base #: model:ir.model,name:base.model_ir_model_grid msgid "Objects Security Grid" -msgstr "Grille de sécurité des objets" +msgstr "Grille de Sécurité des Objets" #. module: base #: selection:ir.ui.menu,icon:0 @@ -914,6 +960,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Action" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -943,6 +999,12 @@ msgstr "Îles Caïmans" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1048,7 +1110,7 @@ msgstr "St. Georges & les Îles Sandwich." #. module: base #: field:ir.actions.url,url:0 msgid "Action URL" -msgstr "URL de l'action" +msgstr "URL de l'Action" #. module: base #: code:addons/addons/account/wizard/wizard_pay_invoice.py:0 @@ -1058,9 +1120,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1107,6 +1170,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1194,6 +1263,11 @@ msgstr "Fournissez les champs qui seront utilisés pour récupéreer l'adresse e msgid "Role Name" msgstr "Nom du rôle" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Vendeur dédié" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1252,6 +1326,11 @@ msgstr "Rapports" msgid "On Create" msgstr "Lors de la création" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Veuillez donner votre fichier .ZIP à importer" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1259,9 +1338,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Valeur par défaut" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1343,6 +1423,12 @@ msgstr "Timor oriental" msgid "Simple domain setup" msgstr "Paramétrer un domaine simple" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1383,7 +1469,7 @@ msgstr "wizard.ir.model.menu.create.line" #. module: base #: field:ir.attachment,res_id:0 msgid "Attached ID" -msgstr "ID de la Ressource" +msgstr "ID Attaché" #. module: base #: code:addons/addons/account/account.py:0 @@ -1413,6 +1499,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1439,6 +1531,14 @@ msgstr "ir.rule" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1467,9 +1567,9 @@ msgid "Report Custom" msgstr "Rapport personnalisé" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Année sans le siècle : %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "Turkménistan" #. module: base #: view:res.lang:0 @@ -1494,11 +1594,6 @@ msgstr "Spécifier le mesage. Vous pouvez utiliser les champs de l'objet. ex: `C msgid "Attached Model" msgstr "Modèle Attaché" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1703,6 +1798,11 @@ msgstr "Pièce jointe" msgid "Ireland" msgstr "Irlande" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Année sans le siècle : %(y)s" + #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -1844,7 +1944,7 @@ msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactè #. module: base #: help:ir.rule.group,global:0 msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "Faire une règle globale, sinon il sera nécessaire de mettre un groupe ou utilisateur" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin @@ -2097,6 +2197,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "%p - Équivalent à soit AM ou PM." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2527,6 +2633,12 @@ msgstr "" msgid "Sir" msgstr "Monsieur" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2677,7 +2789,7 @@ msgstr "Fonction du contact" #: 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 "Modules à installer, à mettre à jour ou à supprimer" +msgstr "Modules a installer, mettre à jour ou supprimer" #. module: base #: code:addons/addons/document/document.py:0 @@ -2777,6 +2889,11 @@ msgstr "Numéro de la Taxe sur la Valeur Ajoutée. Cochez cette case si le parte msgid "Categories of Modules" msgstr "Catégories de modules" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2875,7 +2992,13 @@ msgstr "Ajouter ou non l'entête RML de société" #: 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 "Connecter des actions sur des évènements client" +msgstr "Actions exécuter sur des évènements client" + +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" #. module: base #: selection:ir.module.module,license:0 @@ -3041,7 +3164,7 @@ msgstr "Invalide" #. module: base #: field:ir.module.module,certificate:0 msgid "Quality Certificate" -msgstr "Certificat de qualité" +msgstr "Certificat Qualité" #. module: base #: view:res.lang:0 @@ -3067,6 +3190,12 @@ msgstr "" msgid "Languages" msgstr "Langues" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3124,9 +3253,10 @@ msgid "Base Field" msgstr "Champ de Base" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Nouveaux modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3227,6 +3357,11 @@ msgstr "Nom de la langue" msgid "Holy See (Vatican City State)" msgstr "Saint-Siège (état de la cité du Vatican)" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Fichier .ZIP du Module" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3284,6 +3419,18 @@ msgstr "Type d'évènement" msgid "Bank account" msgstr "Compte banquaire" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3357,10 +3504,9 @@ msgid "Equatorial Guinea" msgstr "Guinée Équatoriale" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" -msgstr "" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" +msgstr "Importation de module" #. module: base #: code:addons/osv/orm.py:0 @@ -3389,6 +3535,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "%c - Représente une date et heure appropriées" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3483,7 +3634,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3516,7 +3666,7 @@ msgstr "" #. module: base #: view:res.users:0 msgid "Skip" -msgstr "Passer" +msgstr "Ignorer" #. module: base #: model:ir.actions.act_window,name:base.res_request_link-act @@ -3591,10 +3741,10 @@ msgid "Set NULL" msgstr "Mettre NULL" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "État d'esprit" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3618,6 +3768,12 @@ msgstr "La règle est satisfaite si tous les tests sont Vrai (ET)" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3655,7 +3811,7 @@ msgstr "Clé" #. module: base #: field:ir.cron,nextcall:0 msgid "Next Call Date" -msgstr "Prochaine date d'appel" +msgstr "Prochaine Date d'exécution" #. module: base #: field:res.company,rml_header:0 @@ -3776,6 +3932,11 @@ msgstr "Numéro Suivant" msgid "Rates" msgstr "Taux" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3795,17 +3956,17 @@ msgstr "" #. module: base #: field:ir.report.custom.fields,field_child3:0 msgid "Field child3" -msgstr "Champ enfant 3" +msgstr "Champ fils3" #. module: base #: field:ir.report.custom.fields,field_child0:0 msgid "Field child0" -msgstr "Champ enfant 0" +msgstr "Champ fils0" #. module: base #: field:ir.report.custom.fields,field_child1:0 msgid "Field child1" -msgstr "Champ enfant 1" +msgstr "Champ fils1" #. module: base #: field:ir.model.fields,selection:0 @@ -3892,7 +4053,7 @@ msgstr "" #: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 msgid "If set to true, the action will not be displayed on the right toolbar of a form view." -msgstr "Si Vrai, l'action ne sera pas affiché dans la barre d'outil à droite de la vue formulaire." +msgstr "Si cette case est cochée, l'action ne sera pas affichée dans la barre d'outil à droite de la vue formulaire." #. module: base #: code:addons/addons/stock/wizard/inventory_merge.py:0 @@ -3910,6 +4071,12 @@ msgstr "Attaché à" msgid "Decimal Separator" msgstr "Séparateur décimal" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4034,6 +4201,19 @@ msgstr "Rapport XML" msgid "No grid matching for this carrier !" 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 "L'utilisateur interne en charge de communiqué avec le partenaire éventuel." + +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4096,7 +4276,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4133,6 +4312,12 @@ msgstr "Instances" msgid "Antarctica" msgstr "Antarctique" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4414,7 +4599,7 @@ msgstr "" #. module: base #: field:ir.report.custom.fields,cumulate:0 msgid "Accumulate" -msgstr "Accumuler" +msgstr "Accumulé" #. module: base #: code:addons/addons/base/ir/ir_report_custom.py:0 @@ -4593,14 +4778,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4641,9 +4827,10 @@ msgid "Fiji" msgstr "Îles Fidji" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Taille" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4658,9 +4845,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "Soudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4680,7 +4867,7 @@ msgstr "Micronésie" #. module: base #: view:res.request.history:0 msgid "Request History" -msgstr "historique des requêtes" +msgstr "historique des Requêtes" #. module: base #: field:ir.module.module,menus_by_module:0 @@ -4871,7 +5058,7 @@ msgstr "Créer / Écrire" #. module: base #: help:res.partner.category,active:0 msgid "The active field allows you to hide the category without removing it." -msgstr "Ce champ actif vous autorise le masquage de la catégorie au lieu de la supprimée. " +msgstr "Le champ 'actif' vous permet de cacher la catégorie sans la supprimer" #. module: base #: rml:ir.module.reference:0 @@ -4953,7 +5140,13 @@ msgstr "Lithuanien / Lietuvių kalba" #. module: base #: help:ir.actions.server,record_id:0 msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." -msgstr "Fournir le nom du champ ou l'enregistrement sera stocké après les opérations de création, si vide, vous ne pourrez pas suivre le nouvel enregistrement." +msgstr "Fournissez le nom du champ où l'identifiant de l'enregistrement est stoqué après les opérations d'écriture. S'il est vide, vous ne pourrez pas surveiller le nouvel enregistrement." + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" #. module: base #: code:addons/osv/orm.py:0 @@ -4976,6 +5169,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "Luxembourg" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5104,6 +5303,13 @@ msgstr "Code de l'État" msgid "On delete" msgstr "On delete" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5197,10 +5403,10 @@ msgid "Please provide a partner for the sale." 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 "Termes non traduits" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5275,6 +5481,7 @@ msgstr "Burundi" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5295,6 +5502,12 @@ msgstr "" msgid "Bhutan" msgstr "Bhoutan" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5326,6 +5539,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5486,7 +5705,7 @@ msgstr "Changer mes préférences" #. module: base #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,text:0 @@ -5529,6 +5748,12 @@ msgstr "Ignoré" msgid "Custom Field" msgstr "Champ Personalisé" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5676,7 +5901,7 @@ msgstr "Champs Rapport" #. module: base #: view:res.partner:0 msgid "General" -msgstr "Général" +msgstr "Générale" #. module: base #: code:addons/osv/orm.py:0 @@ -5687,7 +5912,7 @@ msgstr "" #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" -msgstr "Activité de destination" +msgstr "Activité de Destination" #. module: base #: code:addons/osv/orm.py:0 @@ -5809,10 +6034,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Taille" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5857,6 +6081,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5878,9 +6108,9 @@ msgid "Always Searchable" msgstr "Recherche toujours possible" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Soudan" #. module: base #: model:res.country,name:base.hk @@ -5961,7 +6191,7 @@ msgstr "ir.sequence" #: model:ir.ui.menu,name:base.next_id_14 #: view:res.partner.event:0 msgid "Partner Events" -msgstr "Évènements partenaire" +msgstr "Évènements Partenaire" #. module: base #: model:ir.model,name:base.model_workflow_transition @@ -6157,7 +6387,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6256,17 +6485,17 @@ msgstr "Le nom complet du pays." msgid "Iteration" msgstr "Itération" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6296,7 +6525,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6332,11 +6560,6 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunion (Française)" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "sv_SV" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6527,11 +6750,6 @@ msgstr "Date de Création" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "L'utilisateur interne en charge de communiqué avec le partenaire éventuel." - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6590,6 +6808,12 @@ msgstr "" msgid "Algeria" msgstr "Algérie" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6660,6 +6884,7 @@ msgstr "Partenaires Clients" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6695,9 +6920,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Zone neutre" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6827,12 +7052,6 @@ msgstr "Égypte" msgid "Select the object on which the action will work (read, write, create)." msgstr "Sélectionnez l'objet sur lequel l'action d'appliquera (lecture, écriture, création)" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7119,11 +7338,22 @@ msgstr "Séparateur des milliers" msgid "Created Date" msgstr "Date de création" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Tracer une ligne" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Valeur par défaut" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7241,9 +7471,9 @@ msgid "Day of the year: %(doy)s" msgstr "Jour de l'année: %(doy)s" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "Zone neutre" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7275,6 +7505,12 @@ msgstr "%A - Nom complet du jour de la semaine." msgid "Months" msgstr "Mois" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7385,11 +7621,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "uk_UK" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7459,12 +7690,6 @@ msgstr "" msgid "Activity" msgstr "Activité" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7508,6 +7733,12 @@ msgstr "État" msgid "All Properties" msgstr "Toutes les propriétés" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7548,6 +7779,15 @@ msgstr "Saint Christophe et Niévès" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7573,10 +7813,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Nom de l'objet" @@ -7608,9 +7855,11 @@ msgid "Icon" msgstr "Icône" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "Ok" @@ -7691,7 +7940,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Importer le module" @@ -7780,6 +8037,13 @@ msgstr "Roumanie" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8007,6 +8271,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Nouveaux modules" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8028,6 +8297,12 @@ msgstr "Somalie" msgid "Configure Simple View" msgstr "Configurer les vues simples" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8061,6 +8336,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8068,6 +8349,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8103,10 +8390,10 @@ msgid "Short Description" msgstr "Description courte" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8165,6 +8452,12 @@ msgid "Number of time the function is called,\n" msgstr "Nombre de fois que la fonction est appellé\n" "un nombre négatif indique que la fonction est toujours appellé." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8220,6 +8513,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Règles d'accès" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8465,7 +8764,12 @@ msgstr "4. %b, %B ==> Déc, Décembre" #: 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 "Charger une traduction officielle" +msgstr "Charger une Traduction Officielle" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Livraison" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 @@ -8510,6 +8814,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8550,6 +8860,7 @@ msgstr "Néerlandais (Belgique) / Nederlands (Belgïe)" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Liste des Dépôts" @@ -8599,7 +8910,6 @@ msgstr "Champs type" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8672,6 +8982,12 @@ msgstr "Heure 00->12: %(h12)s" msgid "Uncheck the active field to hide the contact." msgstr "Désélectionnez le champ 'actif' pour cacher ce contact." +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8714,6 +9030,12 @@ msgstr "Estonie" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8829,11 +9151,6 @@ msgstr "Modules à mettre à jour" msgid "Company Architecture" msgstr "Architecture de la Société" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "Utilisateur interne" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8940,6 +9257,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Action du Menu" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -8962,7 +9285,7 @@ msgstr "Graphe" #: field:res.partner,child_ids:0 #: field:res.request,ref_partner_id:0 msgid "Partner Ref." -msgstr "Réf. partenaire" +msgstr "Réf. Partenaire" #. module: base #: code:addons/addons/mrp/mrp.py:0 @@ -8979,7 +9302,7 @@ msgstr "" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "Html from html" -msgstr "Html vers Html" +msgstr "De Html à html" #. module: base #: code:addons/addons/sale/sale.py:0 @@ -9039,6 +9362,12 @@ msgstr "Le chemin vers le .rml ou NULL si le contenu est dans le report_rml_cont msgid "Account Number" msgstr "Numéro de compte" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9047,7 +9376,7 @@ msgstr "1. %c ==> Ven Déc 5 18:25:20 2008" #. module: base #: help:ir.ui.menu,groups_id:0 msgid "If you have 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 "Si vous avez des groupes, la visibilité de ce lenu sera basé sur ces groups. si ce champ est vide,OpenERP calculera la visibilité en se basant sur les accès en lecture seule des objets liés." +msgstr "Si vous avez des Groupes, la visibilité de ce menu sera basée sur ces groupes. Si ce champ est vide, Open ERP calculera la visibilité en se basant sur l'accès en lecture de l'objet apparenté." #. module: base #: model:res.country,name:base.nc @@ -9076,11 +9405,11 @@ msgid "Category Name" msgstr "Nom de la catégorie" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Objet" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9088,6 +9417,12 @@ msgstr "Objet" msgid "From" msgstr "De" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9242,10 +9577,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Mode partagé" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9271,7 +9605,6 @@ msgstr "child_of" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9290,6 +9623,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9324,11 +9663,23 @@ msgstr "Kiribati" msgid "Iraq" msgstr "Irak" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "Action à lancer" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Importer Module" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9496,6 +9847,12 @@ msgstr "Formule" msgid "Turkish / Türkçe" msgstr "Turque / Türkçe" +#. 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 "Termes non traduits" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9560,6 +9917,12 @@ msgstr "Actions" msgid "High" msgstr "Élevé" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9577,9 +9940,11 @@ msgid "Bank Identifier Code" msgstr "Code d'Indentification Bancaire" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" -msgstr "Turkménistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" +msgstr "" #. module: base #: code:addons/addons/account/account.py:0 @@ -9614,10 +9979,10 @@ msgstr "Turkménistan" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9641,6 +10006,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9698,9 +10064,10 @@ msgid "Technical guide" msgstr "Guide Technique" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" -msgstr "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -9807,6 +10174,12 @@ msgstr "" msgid "Start configuration" msgstr "Démarrer la Configuration" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9881,7 +10254,7 @@ msgstr "Exemple de destination" #. module: base #: field:ir.actions.wizard,multi:0 msgid "Action on Multiple Doc." -msgstr "Action sur plusieurs documents" +msgstr "Action due plusieurs documents" #. module: base #: view:wizard.module.lang.export:0 @@ -9901,6 +10274,12 @@ msgstr "" msgid "Titles" msgstr "Titres" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10111,6 +10490,12 @@ msgstr "Champ enfant" msgid "Action Usage" msgstr "Utilisation de l'action" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10236,9 +10621,10 @@ msgid "Bahrain" msgstr "Bahreïn" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Livraison" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10269,12 +10655,23 @@ msgstr "Ajouter un contrat de maintenance" msgid "Version" msgstr "Version" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10313,6 +10710,7 @@ msgstr "Azerbaïdjan" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10402,6 +10800,14 @@ msgstr "Calculer la somme" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Jour de la semaine (0:Lundi): %(weekday)s" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10410,7 +10816,7 @@ msgstr "Îles Cook" #. module: base #: help:ir.actions.server,mobile:0 msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" -msgstr "Fournir les champs qui retourneront le numéro de GSM, ex. vous sélectionnez les factures, alors `object.invoice_address_id.mobile` est le champ qui retournera le numéro de GSM" +msgstr "Fournissez les champs qui seront utilisés pour récupérer le numéro du mobile. Exemple: vous sélectionnez une facture, alors, `object.invoice_address_id.mobile` est le champ qui représente le numéro du mobile correct." #. module: base #: field:ir.model.data,noupdate:0 @@ -10448,6 +10854,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "Pays" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Module importer avec succès" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10475,6 +10886,12 @@ msgstr "Est Objet" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10508,15 +10925,14 @@ msgid "Portrait" msgstr "Portrait" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Objet" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10563,6 +10979,12 @@ msgstr "Progression de la Configuration" msgid "Configuration Wizards" msgstr "Assistants de Configuration" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10570,9 +10992,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Mode partagé" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10707,6 +11130,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "Îles Turques et Caïques" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10731,6 +11160,12 @@ msgstr "Objet ressource" msgid "Function" msgstr "Fonction" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "État d'esprit" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10811,6 +11246,12 @@ msgstr "" msgid "Create Object" msgstr "Créer un objet" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/hr_HR.po b/bin/addons/base/i18n/hr_HR.po index 0949ff173ef..612b783b32b 100644 --- a/bin/addons/base/i18n/hr_HR.po +++ b/bin/addons/base/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,8 +1333,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,9 +3732,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,10 +9394,10 @@ msgid "Category Name" msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9077,6 +9406,12 @@ msgstr "" msgid "From" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,9 +9566,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,8 +10608,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,8 +10979,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/hu_HU.po b/bin/addons/base/i18n/hu_HU.po index 52b40f1a3dc..7f4a5b34a7b 100644 --- a/bin/addons/base/i18n/hu_HU.po +++ b/bin/addons/base/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,8 +1333,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,9 +3732,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "Megyekód" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,10 +9394,10 @@ msgid "Category Name" msgstr "Kategória neve" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9077,6 +9406,12 @@ msgstr "" msgid "From" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,9 +9566,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,8 +10608,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "Objektum-e" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,8 +10979,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/id_ID.po b/bin/addons/base/i18n/id_ID.po index 1f0edd4133e..352d8115c21 100644 --- a/bin/addons/base/i18n/id_ID.po +++ b/bin/addons/base/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,8 +1333,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,9 +3732,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,10 +9394,10 @@ msgid "Category Name" msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9077,6 +9406,12 @@ msgstr "" msgid "From" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,9 +9566,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,8 +10608,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,8 +10979,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/it_IT.po b/bin/addons/base/i18n/it_IT.po index fce990f1af5..77527c76ef1 100644 --- a/bin/addons/base/i18n/it_IT.po +++ b/bin/addons/base/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "Workflow per" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -454,6 +468,12 @@ msgstr "Guyana Francese" msgid "Bosnian / bosanski jezik" msgstr "Bosnian / bosanski jezik" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -509,6 +529,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -606,9 +632,10 @@ msgid "Jordan" msgstr "Giordania" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -681,6 +708,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -819,6 +853,12 @@ msgstr "India" msgid "maintenance contract modules" msgstr "Moduli di contratto di manutenzione" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -877,6 +917,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -914,6 +960,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Azione" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -943,6 +999,12 @@ msgstr "Isole Cayman" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1058,9 +1120,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1107,6 +1170,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1194,6 +1263,11 @@ msgstr "" msgid "Role Name" msgstr "Nome Ruolo" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Venditore Dedicato" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1252,6 +1326,11 @@ msgstr "Resoconti" msgid "On Create" msgstr "Alla Creazione" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Definisci il file .ZIP del modulo da importare." + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1259,9 +1338,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Valore Predefinito" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1343,6 +1423,12 @@ msgstr "" msgid "Simple domain setup" msgstr "Configurazione Dominio Semplice" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1413,6 +1499,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1439,6 +1531,14 @@ msgstr "ir.rule" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1467,9 +1567,9 @@ msgid "Report Custom" msgstr "Report Personalizzato" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Anno senza secolo: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "" #. module: base #: view:res.lang:0 @@ -1494,11 +1594,6 @@ msgstr "" msgid "Attached Model" msgstr "Modello di Allegato" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1703,6 +1798,11 @@ msgstr "Allegato" msgid "Ireland" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Anno senza secolo: %(y)s" + #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -2097,6 +2197,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "%p - Equivalenti di AM o PM." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2527,6 +2633,12 @@ msgstr "" msgid "Sir" msgstr "Sig." +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2777,6 +2889,11 @@ msgstr "" msgid "Categories of Modules" msgstr "Categorie di Moduli" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2874,6 +2991,12 @@ msgstr "Aggiungi o meno l'intestazione aziendale RML" msgid "Connect Actions To Client Events" msgstr "Collega Azioni a Eventi per clienti" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3064,6 +3187,12 @@ msgstr "" msgid "Languages" msgstr "Lingue" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3121,9 +3250,10 @@ msgid "Base Field" msgstr "Campo Base" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Nuovi Moduli" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3224,6 +3354,11 @@ msgstr "Nome lingua" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "File .ZIP del modulo" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3281,6 +3416,18 @@ msgstr "Tipo Evento" msgid "Bank account" msgstr "Conto bancario" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3354,9 +3501,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3386,6 +3532,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "%c - Rappresentazione appropriata della data e dell'ora." +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3480,7 +3631,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3588,10 +3738,10 @@ msgid "Set NULL" msgstr "Imposta a NULL" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Impressione" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3615,6 +3765,12 @@ msgstr "La regola viene soddisfatta se tutti i test testituiscono il valore True msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3773,6 +3929,11 @@ msgstr "Numero Successivo" msgid "Rates" msgstr "Tassi" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3907,6 +4068,12 @@ msgstr "Allegato a" msgid "Decimal Separator" msgstr "Separatore Decimale" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4031,6 +4198,19 @@ msgstr "Report XML" msgid "No grid matching for this carrier !" 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 "L'utente, se esiste, che ha incarico di comunicare con questo partner" + +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4093,7 +4273,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4130,6 +4309,12 @@ msgstr "Istanze" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4590,14 +4775,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Azione" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4638,9 +4824,10 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Dimensione" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4655,9 +4842,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4952,6 +5139,12 @@ msgstr "Lithuanian / Lietuvių kalba" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4973,6 +5166,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5101,6 +5300,13 @@ msgstr "Codice Stato" msgid "On delete" msgstr "Su Cancellazione" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5194,10 +5400,10 @@ msgid "Please provide a partner for the sale." 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 "Termini non tradotti" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5272,6 +5478,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5292,6 +5499,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5323,6 +5536,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5526,6 +5745,12 @@ msgstr "Saltato" msgid "Custom Field" msgstr "Campo Personalizzato" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5806,10 +6031,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Dimensione" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5854,6 +6078,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5875,9 +6105,9 @@ msgid "Always Searchable" msgstr "Sempre Ricercabile" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "" #. module: base #: model:res.country,name:base.hk @@ -6154,7 +6384,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6253,17 +6482,17 @@ msgstr "Il nome completo della nazione" msgid "Iteration" msgstr "Iterazione" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6293,7 +6522,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6329,11 +6557,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6524,11 +6747,6 @@ msgstr "Data di creazione" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6587,6 +6805,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6657,6 +6881,7 @@ msgstr "Partner Clienti" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6692,9 +6917,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6824,12 +7049,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7116,11 +7335,22 @@ msgstr "Separatore delle migliaia" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Trama" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Valore Predefinito" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7238,9 +7468,9 @@ msgid "Day of the year: %(doy)s" msgstr "Giorno dell'anno: %(doy)s" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7272,6 +7502,12 @@ msgstr "%A - Nome intero della settimana" msgid "Months" msgstr "Mesi" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7382,11 +7618,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7456,12 +7687,6 @@ msgstr "" msgid "Activity" msgstr "Attività" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7504,6 +7729,12 @@ msgstr "Stato Nazione" msgid "All Properties" msgstr "Tutte le Proprietà" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7544,6 +7775,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7569,10 +7809,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Nome Oggetto" @@ -7604,9 +7851,11 @@ msgid "Icon" msgstr "Icona" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "Ok" @@ -7687,7 +7936,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Importa Modulo" @@ -7776,6 +8033,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8003,6 +8267,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Nuovi Moduli" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8024,6 +8293,12 @@ msgstr "" msgid "Configure Simple View" msgstr "Configura Vista Semplice" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8057,6 +8332,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8064,6 +8345,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8099,10 +8386,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8161,6 +8448,12 @@ msgid "Number of time the function is called,\n" msgstr "Numero di volte che la funzione viene richiamata,\n" "un numero negativo indica che la funzione verrà richiamata sempre" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8216,6 +8509,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Regole Accesso" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8463,6 +8762,11 @@ msgstr "4. %b, %B ==>Dic, Dicembre" msgid "Load an Official Translation" msgstr "Carica una Traduzione Ufficiale" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Consegna" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8506,6 +8810,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8546,6 +8856,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Lista Repository" @@ -8595,7 +8906,6 @@ msgstr "Campi di Inserimento" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8668,6 +8978,12 @@ msgstr "Formato Orario 00->12: %(h12)s" msgid "Uncheck the active field to hide the contact." msgstr "Deseleziona il campo attivo per nascondere il contatto." +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8710,6 +9026,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8825,11 +9147,6 @@ msgstr "Moduli da Aggiornare" msgid "Company Architecture" msgstr "Struttura Azienda" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8936,6 +9253,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Azione Menu" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9035,6 +9358,12 @@ msgstr "Il percorso .rml del file oppure NULL se il contenuto si trova in report msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9072,11 +9401,11 @@ msgid "Category Name" msgstr "Nome Categoria" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Oggetto" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9084,6 +9413,12 @@ msgstr "Oggetto" msgid "From" msgstr "Da" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9238,10 +9573,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Modalità Dividi" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9267,7 +9601,6 @@ msgstr "child_of" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9286,6 +9619,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9320,11 +9659,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "Azione da lanciare" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Importa Modulo" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9492,6 +9843,12 @@ msgstr "Formula" msgid "Turkish / Türkçe" msgstr "Turkish / Türkçe" +#. 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 "Termini non tradotti" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9556,6 +9913,12 @@ msgstr "Azioni" msgid "High" msgstr "Alta" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9573,8 +9936,10 @@ msgid "Bank Identifier Code" msgstr "Codice Identificazione Banca" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9610,10 +9975,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9637,6 +10002,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9694,8 +10060,9 @@ msgid "Technical guide" msgstr "Guida Tecnica" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9803,6 +10170,12 @@ msgstr "" msgid "Start configuration" msgstr "Avvia Configurazione" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9897,6 +10270,12 @@ msgstr "" msgid "Titles" msgstr "Qualifiche" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10107,6 +10486,12 @@ msgstr "CampoCollegato" msgid "Action Usage" msgstr "Utilizzo Azione" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10232,9 +10617,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Consegna" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10265,12 +10651,23 @@ msgstr "Aggiungere il contratto di manutenzione" msgid "Version" msgstr "Versione" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10309,6 +10706,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10398,6 +10796,14 @@ msgstr "Calcola Somma" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Giorno della settimana (0:Lunedì): %(weekday)" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10444,6 +10850,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "Nazione" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Modulo importato con successo" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10471,6 +10882,12 @@ msgstr "è Oggetto" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10504,15 +10921,14 @@ msgid "Portrait" msgstr "Verticale" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Oggetto" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10559,6 +10975,12 @@ msgstr "Avanzamento Configurazione" msgid "Configuration Wizards" msgstr "Procedure di Configurazione" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10566,9 +10988,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Modalità Dividi" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10703,6 +11126,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10727,6 +11156,12 @@ msgstr "Oggetto Risorsa" msgid "Function" msgstr "Funzione" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Impressione" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10807,6 +11242,12 @@ msgstr "" msgid "Create Object" msgstr "Crea Oggetto" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/lt_LT.po b/bin/addons/base/i18n/lt_LT.po index de93e212a7e..8b7b9faeefb 100644 --- a/bin/addons/base/i18n/lt_LT.po +++ b/bin/addons/base/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,8 +1333,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,9 +3732,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,10 +9394,10 @@ msgid "Category Name" msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9077,6 +9406,12 @@ msgstr "" msgid "From" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,9 +9566,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,8 +10608,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,8 +10979,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/nl_BE.po b/bin/addons/base/i18n/nl_BE.po index 1a06138cc37..25a435134b0 100644 --- a/bin/addons/base/i18n/nl_BE.po +++ b/bin/addons/base/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -455,6 +469,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -510,6 +530,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -606,8 +632,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -681,6 +708,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -819,6 +853,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -877,6 +917,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -914,6 +960,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -943,6 +999,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1058,9 +1120,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1107,6 +1170,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1194,6 +1263,11 @@ msgstr "" msgid "Role Name" msgstr "" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1252,6 +1326,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1259,8 +1338,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1343,6 +1423,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1413,6 +1499,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1439,6 +1531,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1467,8 +1567,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1494,11 +1594,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1703,6 +1798,11 @@ msgstr "" msgid "Ireland" 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" @@ -2097,6 +2197,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2527,6 +2633,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2777,6 +2889,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2874,6 +2991,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3064,6 +3187,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3121,8 +3250,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3224,6 +3354,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3281,6 +3416,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3354,9 +3501,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3386,6 +3532,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3480,7 +3631,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3587,9 +3737,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3614,6 +3764,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3772,6 +3928,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3906,6 +4067,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4030,6 +4197,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4092,7 +4272,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4129,6 +4308,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4589,13 +4774,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4637,8 +4823,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4654,8 +4841,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4951,6 +5138,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4972,6 +5165,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5100,6 +5299,13 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5193,9 +5399,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5271,6 +5477,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5291,6 +5498,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5322,6 +5535,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5525,6 +5744,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5805,9 +6030,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5853,6 +6077,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5874,8 +6104,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6153,7 +6383,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6253,14 +6482,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6292,7 +6521,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6328,11 +6556,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6523,11 +6746,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6586,6 +6804,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6656,6 +6880,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6691,8 +6916,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6823,12 +7048,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7115,11 +7334,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7237,8 +7467,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7271,6 +7501,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7381,11 +7617,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7455,12 +7686,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7503,6 +7728,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7543,6 +7774,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7568,10 +7808,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7603,9 +7850,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7686,7 +7935,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7775,6 +8032,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8002,6 +8266,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8023,6 +8292,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8056,6 +8331,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8063,6 +8344,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8098,10 +8385,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8159,6 +8446,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8214,6 +8507,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8461,6 +8760,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8504,6 +8808,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8544,6 +8854,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8593,7 +8904,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8666,6 +8976,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8708,6 +9024,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8823,11 +9145,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8934,6 +9251,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9033,6 +9356,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9070,10 +9399,10 @@ msgid "Category Name" msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9082,6 +9411,12 @@ msgstr "" msgid "From" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9236,9 +9571,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9265,7 +9599,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9284,6 +9617,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9318,11 +9657,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9490,6 +9841,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9554,6 +9911,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9571,8 +9934,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9608,10 +9973,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9635,6 +10000,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9692,8 +10058,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9801,6 +10168,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9895,6 +10268,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10103,6 +10482,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10228,8 +10613,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10261,12 +10647,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10305,6 +10702,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10394,6 +10792,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10440,6 +10846,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10467,6 +10878,12 @@ msgstr "" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10500,15 +10917,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10555,6 +10971,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10562,8 +10984,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10699,6 +11122,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10723,6 +11152,12 @@ msgstr "" msgid "Function" msgstr "" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10803,6 +11238,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/nl_NL.po b/bin/addons/base/i18n/nl_NL.po index 41140ec23bf..54ab21aabb6 100644 --- a/bin/addons/base/i18n/nl_NL.po +++ b/bin/addons/base/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "Werkschema op" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -455,6 +469,12 @@ msgstr "Frans Guinea" msgid "Bosnian / bosanski jezik" msgstr "Bosnië" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -510,6 +530,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -607,9 +633,10 @@ msgid "Jordan" msgstr "Jordanië" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -682,6 +709,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -820,6 +854,12 @@ msgstr "India" msgid "maintenance contract modules" msgstr "onderhoudscontract modules" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -878,6 +918,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -915,6 +961,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Actie" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -944,6 +1000,12 @@ msgstr "Kaaimaneilanden" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1059,9 +1121,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1108,6 +1171,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1195,6 +1264,11 @@ msgstr "Verzorgt de velden die worden gebruikt om een email adres op te halen. W msgid "Role Name" msgstr "Rolnaam" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Verantwoordelijke Verkoper" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1253,6 +1327,11 @@ msgstr "Rapporten" msgid "On Create" msgstr "Bij Aanmaken" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Selecteer het ZIP bestand van de module" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1260,9 +1339,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Standaardwaarde" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1344,6 +1424,12 @@ msgstr "Oost-Timor" msgid "Simple domain setup" msgstr "Eenvoudige opzet domein" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1414,6 +1500,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1440,6 +1532,14 @@ msgstr "ir.rule" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1468,9 +1568,9 @@ msgid "Report Custom" msgstr "Bijgewerkt Rapport" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Jaar zonder eeuw: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "Turkmenistan" #. module: base #: view:res.lang:0 @@ -1495,11 +1595,6 @@ msgstr "Geef het bericht. U kunt velden van het object gebruiken, bijv. `Beste [ msgid "Attached Model" msgstr "Bijgevoegd model" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1704,6 +1799,11 @@ msgstr "Bijlage" msgid "Ireland" msgstr "Ierland" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Jaar zonder eeuw: %(y)s" + #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -2098,6 +2198,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "%p - Equivalent van AM of PM" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2528,6 +2634,12 @@ msgstr "" msgid "Sir" msgstr "De heer" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2778,6 +2890,11 @@ msgstr "BTW nummer. Kies dit vakje als de relatie BTW plichtig is. Wordt gebruik msgid "Categories of Modules" msgstr "Module Categorieën" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2878,6 +2995,12 @@ msgstr "Wel of niet RML-bedrijfskoptekst toevoegen" msgid "Connect Actions To Client Events" msgstr "Koppel acties aan client gebeurtenissen" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3068,6 +3191,12 @@ msgstr "" msgid "Languages" msgstr "Vertalingen" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3125,9 +3254,10 @@ msgid "Base Field" msgstr "Standaard Veld" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Nieuwe modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3228,6 +3358,11 @@ msgstr "Taalnaam" msgid "Holy See (Vatican City State)" msgstr "Vaticaanstad" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Module .ZIP bestand" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3285,6 +3420,18 @@ msgstr "Soort Gebeurtenis" msgid "Bank account" msgstr "Bankrekening" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3358,10 +3505,9 @@ msgid "Equatorial Guinea" msgstr "Equatoriaal Guinea" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" -msgstr "" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" +msgstr "Module import" #. module: base #: code:addons/osv/orm.py:0 @@ -3390,6 +3536,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "%c - Passende datum en tijd weergave" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3484,7 +3635,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3592,10 +3742,10 @@ msgid "Set NULL" msgstr "Set NULL" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Loyaliteit" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3619,6 +3769,12 @@ msgstr "De regel is OK als alle testen True (AND) zijn." msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3777,6 +3933,11 @@ msgstr "Volgende nummer" msgid "Rates" msgstr "Wisselkoersen" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3911,6 +4072,12 @@ msgstr "Gekoppeld aan" msgid "Decimal Separator" msgstr "Decimaal scheidingsteken" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4035,6 +4202,19 @@ msgstr "Rapport Xml" msgid "No grid matching for this carrier !" 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 "De interne gebruiker is gemachtigd voor de communicatie met deze relatie als die er is." + +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4097,7 +4277,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4134,6 +4313,12 @@ msgstr "Exemplaren" msgid "Antarctica" msgstr "Antarctica" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4594,14 +4779,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Actie" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4642,9 +4828,10 @@ msgid "Fiji" msgstr "Fiji" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Grootte" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4659,9 +4846,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "Soedan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4956,6 +5143,12 @@ msgstr "Litouws / Lietuvių kalba" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "Geef de veldnaam waar het record id is opgeslagen na de aanmaak operatie. Als het leeg is kunt u het nieuwe record niet volgen." +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4977,6 +5170,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "Luxemburg" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5105,6 +5304,13 @@ msgstr "Staat/Provinciecode" msgid "On delete" msgstr "Bij Verwijderen" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5198,10 +5404,10 @@ msgid "Please provide a partner for the sale." 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 "Niet-vertaalde termen" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5276,6 +5482,7 @@ msgstr "Burundi" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5296,6 +5503,12 @@ msgstr "" msgid "Bhutan" msgstr "Bhutan" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5327,6 +5540,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5530,6 +5749,12 @@ msgstr "Overgeslagen" msgid "Custom Field" msgstr "Aangepast Veld" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5810,10 +6035,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Grootte" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5858,6 +6082,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5879,9 +6109,9 @@ msgid "Always Searchable" msgstr "Altijd doorzoekbaar" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Soedan" #. module: base #: model:res.country,name:base.hk @@ -6158,7 +6388,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6257,17 +6486,17 @@ msgstr "Volledige naam van het land" msgid "Iteration" msgstr "Herhaling" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6297,7 +6526,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6333,11 +6561,6 @@ msgstr "" msgid "Reunion (French)" msgstr "Reunion (Frans)" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6528,11 +6751,6 @@ msgstr "Aanmaakdatum" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6591,6 +6809,12 @@ msgstr "" msgid "Algeria" msgstr "Algerije" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6661,6 +6885,7 @@ msgstr "Klanten" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6696,9 +6921,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Neutrale Zone" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6828,12 +7053,6 @@ msgstr "Egypte" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7120,11 +7339,22 @@ msgstr "Scheidingsteken voor duizendtallen" msgid "Created Date" msgstr "Aanmaakdatum" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Lijn Soort" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Standaardwaarde" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7242,9 +7472,9 @@ msgid "Day of the year: %(doy)s" msgstr "Dag van het jaar: %(doy)s" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "Neutrale Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7276,6 +7506,12 @@ msgstr "%A - Volledige naam van de dag." msgid "Months" msgstr "Maanden" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7386,11 +7622,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7460,12 +7691,6 @@ msgstr "" msgid "Activity" msgstr "Activiteit" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7509,6 +7734,12 @@ msgstr "Staat/Provincie" msgid "All Properties" msgstr "Alle Eigenschappen" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7549,6 +7780,15 @@ msgstr "Saint Kitts & Nevis Anguilla" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7574,10 +7814,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Naam van het object" @@ -7609,9 +7856,11 @@ msgid "Icon" msgstr "Icoon" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "Ok" @@ -7692,7 +7941,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Import module" @@ -7781,6 +8038,13 @@ msgstr "Roemenië" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8008,6 +8272,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Nieuwe modules" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8029,6 +8298,12 @@ msgstr "Somalië" msgid "Configure Simple View" msgstr "Eenvoudige Weergave Aanpassen" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8062,6 +8337,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8069,6 +8350,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8104,10 +8391,10 @@ msgid "Short Description" msgstr "Korte omschrijving" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8166,6 +8453,12 @@ msgid "Number of time the function is called,\n" msgstr "Aantal keer dat de functie wordt aangeroepen.\n" "Een negatief getal geeft aan dat de functie altijd wordt aangeroepen" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8221,6 +8514,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Toegangsrechten" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8468,6 +8767,11 @@ msgstr "4. %b, %B ==> Dec, December" msgid "Load an Official Translation" msgstr "Laad een officiele vertaling" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Levering" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8511,6 +8815,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8551,6 +8861,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Pakketenbron lijst" @@ -8600,7 +8911,6 @@ msgstr "Soort velden" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8673,6 +8983,12 @@ msgstr "Uur 00->12: %(h12)s" msgid "Uncheck the active field to hide the contact." msgstr "Deselecteer het actieve veld op de contactpersoon te verbergen." +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8715,6 +9031,12 @@ msgstr "Estland" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8830,11 +9152,6 @@ msgstr "Up-te-daten Modules" msgid "Company Architecture" msgstr "Bedrijfsstructuur" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8941,6 +9258,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Menu Activiteit" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9040,6 +9363,12 @@ msgstr "Het .rml pad van het bestand of NULL als de inhoud zich bevind in report msgid "Account Number" msgstr "Rekeningnummer" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9077,11 +9406,11 @@ msgid "Category Name" msgstr "Categorie" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Onderwerp" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9089,6 +9418,12 @@ msgstr "Onderwerp" msgid "From" msgstr "Van" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9243,10 +9578,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Splitsmodus" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9272,7 +9606,6 @@ msgstr "child_of" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9291,6 +9624,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9325,11 +9664,23 @@ msgstr "Kiribati" msgid "Iraq" msgstr "Irak" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "Uit te voeren actie" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Module import" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9497,6 +9848,12 @@ msgstr "Formule" msgid "Turkish / Türkçe" msgstr "Turks / Türkçe" +#. 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 "Niet-vertaalde termen" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9561,6 +9918,12 @@ msgstr "Acties" msgid "High" msgstr "Hoog" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9578,9 +9941,11 @@ msgid "Bank Identifier Code" msgstr "Bank ID code" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" -msgstr "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" +msgstr "" #. module: base #: code:addons/addons/account/account.py:0 @@ -9615,10 +9980,10 @@ msgstr "Turkmenistan" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9642,6 +10007,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9699,8 +10065,9 @@ msgid "Technical guide" msgstr "Technische gids" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9808,6 +10175,12 @@ msgstr "" msgid "Start configuration" msgstr "Start configuratie" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9902,6 +10275,12 @@ msgstr "" msgid "Titles" msgstr "Titels" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10112,6 +10491,12 @@ msgstr "Onderliggend Veld" msgid "Action Usage" msgstr "Actie Gebruik" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10237,9 +10622,10 @@ msgid "Bahrain" msgstr "Bahrein" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Levering" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10270,12 +10656,23 @@ msgstr "Voeg onderhoudscontract toe" msgid "Version" msgstr "Versie" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10314,6 +10711,7 @@ msgstr "Azerbeidzjan" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10403,6 +10801,14 @@ msgstr "Som Berekenen" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Dag van de week (0:Maandag): %(weekday)s" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10449,6 +10855,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "Land" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Module succesvol geïmporteerd !" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10476,6 +10887,12 @@ msgstr "Is Object" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10509,15 +10926,14 @@ msgid "Portrait" msgstr "Staand" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Onderwerp" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10564,6 +10980,12 @@ msgstr "Configuratie Voortgang" msgid "Configuration Wizards" msgstr "Configuratie Assistenten" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10571,9 +10993,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Splitsmodus" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10708,6 +11131,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "Turks en Caicoseilanden" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10732,6 +11161,12 @@ msgstr "Bron Object" msgid "Function" msgstr "Functie" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Loyaliteit" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10812,6 +11247,12 @@ msgstr "" msgid "Create Object" msgstr "Object Aanmaken" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/pl_PL.po b/bin/addons/base/i18n/pl_PL.po index ef8c1ad9081..d4723c0c34d 100644 --- a/bin/addons/base/i18n/pl_PL.po +++ b/bin/addons/base/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,8 +1333,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "Załącznik" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,9 +3732,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "Pominięty" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,10 +9394,10 @@ msgid "Category Name" msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9077,6 +9406,12 @@ msgstr "" msgid "From" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,9 +9566,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,8 +10608,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,8 +10979,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/pt_BR.po b/bin/addons/base/i18n/pt_BR.po index 8d29d5e796b..bde721794e7 100644 --- a/bin/addons/base/i18n/pt_BR.po +++ b/bin/addons/base/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -454,6 +468,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -509,6 +529,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -606,9 +632,10 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -681,6 +708,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -819,6 +853,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "Módulo de contratos de manutenção" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -877,6 +917,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -914,6 +960,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Ação" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -943,6 +999,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1058,9 +1120,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1107,6 +1170,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1194,6 +1263,11 @@ msgstr "" msgid "Role Name" msgstr "Nome da Regra" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Vendedor" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1252,6 +1326,11 @@ msgstr "Relatórios" msgid "On Create" msgstr "Na Criação" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Por favor, peque seu arquivo de módulo .ZIP para importar" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1259,9 +1338,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Valor Padrão" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1343,6 +1423,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1413,6 +1499,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1439,6 +1531,14 @@ msgstr "ir.rule" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1467,9 +1567,9 @@ msgid "Report Custom" msgstr "Customizar relatório" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Ano com 2 dígitos: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "" #. module: base #: view:res.lang:0 @@ -1494,11 +1594,6 @@ msgstr "" msgid "Attached Model" msgstr "Modelo anexado" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1703,6 +1798,11 @@ msgstr "Anexo" msgid "Ireland" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Ano com 2 dígitos: %(y)s" + #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -2097,6 +2197,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "%p - Equivalente de cada uma das AM ou PM." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2527,6 +2633,12 @@ msgstr "" msgid "Sir" msgstr "Sr." +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2777,6 +2889,11 @@ msgstr "" msgid "Categories of Modules" msgstr "Categorias de Módulos" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2874,6 +2991,12 @@ msgstr "Adicionar ou não um cabeçalho RML corporativo" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3064,6 +3187,12 @@ msgstr "" msgid "Languages" msgstr "Idiomas" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3121,9 +3250,10 @@ msgid "Base Field" msgstr "Campo Base" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Novos módulos" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3224,6 +3354,11 @@ msgstr "Idioma" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Arquivo de módulo .ZIP" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3281,6 +3416,18 @@ msgstr "Tipo de evento" msgid "Bank account" msgstr "Conta Bancaria" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3354,9 +3501,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3386,6 +3532,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "%c - representação adequada para Data e hora." +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3480,7 +3631,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3588,10 +3738,10 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Estado emocional" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3615,6 +3765,12 @@ msgstr "A regra será satisfeita se todos os testes forem verdadeiros (AND)" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3773,6 +3929,11 @@ msgstr "Próximo numero" msgid "Rates" msgstr "Preços" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3907,6 +4068,12 @@ msgstr "Anexado a" msgid "Decimal Separator" msgstr "Separador decimal" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4031,6 +4198,19 @@ msgstr "Relatório XML" msgid "No grid matching for this carrier !" 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 "O usuário interno que está encarregado de comunicar com este parceiro se houver." + +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4093,7 +4273,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4130,6 +4309,12 @@ msgstr "Instâncias" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4590,14 +4775,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Ação" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4638,9 +4824,10 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Tamanho" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4655,9 +4842,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4952,6 +5139,12 @@ msgstr "Lithuanian / Lietuvių kalba" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4973,6 +5166,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5101,6 +5300,13 @@ msgstr "Código do estado" msgid "On delete" msgstr "Ao excluir" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5194,10 +5400,10 @@ msgid "Please provide a partner for the sale." 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 "Termos não traduzidos" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5272,6 +5478,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5292,6 +5499,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5323,6 +5536,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5526,6 +5745,12 @@ msgstr "Ignorado" msgid "Custom Field" msgstr "Customizar campo" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5806,10 +6031,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Tamanho" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5854,6 +6078,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5875,9 +6105,9 @@ msgid "Always Searchable" msgstr "Sempre Pesquisável" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "" #. module: base #: model:res.country,name:base.hk @@ -6154,7 +6384,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6253,17 +6482,17 @@ msgstr "O nome completo do país" msgid "Iteration" msgstr "Iteração" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6293,7 +6522,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6329,11 +6557,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6524,11 +6747,6 @@ msgstr "Dada da Criação" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6587,6 +6805,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6657,6 +6881,7 @@ msgstr "Parceiros clientes" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6692,9 +6917,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6824,12 +7049,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7116,11 +7335,22 @@ msgstr "Separador de Milhares" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Valor Padrão" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7238,9 +7468,9 @@ msgid "Day of the year: %(doy)s" msgstr "Dias do ano: %(doy)s" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7272,6 +7502,12 @@ msgstr "%A - Nome da semana completo." msgid "Months" msgstr "Meses" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7382,11 +7618,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7456,12 +7687,6 @@ msgstr "" msgid "Activity" msgstr "Atividade" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7504,6 +7729,12 @@ msgstr "Estado do país" msgid "All Properties" msgstr "Todas propriedades" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7544,6 +7775,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7569,10 +7809,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Nome do Objeto" @@ -7604,9 +7851,11 @@ msgid "Icon" msgstr "Ícone" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "Ok" @@ -7687,7 +7936,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Importar módulo" @@ -7776,6 +8033,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8003,6 +8267,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Novos módulos" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8024,6 +8293,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8057,6 +8332,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8064,6 +8345,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8099,10 +8386,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8161,6 +8448,12 @@ msgid "Number of time the function is called,\n" msgstr "Numero de vezes que a função foi chamada.\n" "Um número negativo indica que a função nunca foi chamada." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8216,6 +8509,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Regras de Acesso" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8463,6 +8762,11 @@ msgstr "4. %b, %B ==> Dez, Dezembro" msgid "Load an Official Translation" msgstr "Carregar uma tradução oficial" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Entrega" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8506,6 +8810,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8546,6 +8856,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Lista de repositório" @@ -8595,7 +8906,6 @@ msgstr "Tipos de campos" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8668,6 +8978,12 @@ msgstr "Hora 00->12: %(h12)s" msgid "Uncheck the active field to hide the contact." msgstr "Desmarque o campo Ativo para esconder o contato." +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8710,6 +9026,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8825,11 +9147,6 @@ msgstr "Módulos para atualizar" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8936,6 +9253,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Menu Ação" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9035,6 +9358,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9072,11 +9401,11 @@ msgid "Category Name" msgstr "Nome de Categoria" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Assunto" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9084,6 +9413,12 @@ msgstr "Assunto" msgid "From" msgstr "De" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9238,9 +9573,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9267,7 +9601,6 @@ msgstr "child_of" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9286,6 +9619,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9320,11 +9659,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "Ação de Lançamento" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Importar módulo" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9492,6 +9843,12 @@ msgstr "Fórmula" msgid "Turkish / Türkçe" msgstr "Turkish / Türkçe" +#. 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 "Termos não traduzidos" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9556,6 +9913,12 @@ msgstr "Ações" msgid "High" msgstr "Alto" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9573,8 +9936,10 @@ msgid "Bank Identifier Code" msgstr "Codigo de Identificação do Banco" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9610,10 +9975,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9637,6 +10002,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9694,8 +10060,9 @@ msgid "Technical guide" msgstr "Guia técnico" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9803,6 +10170,12 @@ msgstr "" msgid "Start configuration" msgstr "Iniciar configuração" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9897,6 +10270,12 @@ msgstr "" msgid "Titles" msgstr "Títulos" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10107,6 +10486,12 @@ msgstr "Campo inferior(filho)" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10232,9 +10617,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Entrega" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10265,12 +10651,23 @@ msgstr "Incluir contrato de manutenção" msgid "Version" msgstr "Versão" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10309,6 +10706,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10398,6 +10796,14 @@ msgstr "Calcular a soma" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Dia da Semana(0:Domingo): %(weekday)s" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10444,6 +10850,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "País" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Módulo importado!" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10471,6 +10882,12 @@ msgstr "é objeto" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10504,15 +10921,14 @@ msgid "Portrait" msgstr "Retrato" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Assunto" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10559,6 +10975,12 @@ msgstr "Progresso da configuração" msgid "Configuration Wizards" msgstr "Assistentes de configuração" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10566,8 +10988,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10703,6 +11126,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10727,6 +11156,12 @@ msgstr "Recurso do objeto" msgid "Function" msgstr "Função" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Estado emocional" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10807,6 +11242,12 @@ msgstr "" msgid "Create Object" msgstr "Criar Objeto" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/pt_PT.po b/bin/addons/base/i18n/pt_PT.po index 0192579a812..3c674dc7426 100644 --- a/bin/addons/base/i18n/pt_PT.po +++ b/bin/addons/base/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -454,6 +468,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -509,6 +529,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -606,8 +632,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -681,6 +708,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -819,6 +853,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "Módulos de manutenção do contracto" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -877,6 +917,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -914,6 +960,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Acção" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -943,6 +999,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1058,9 +1120,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1107,6 +1170,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1194,6 +1263,11 @@ msgstr "" msgid "Role Name" msgstr "Nome do Papel" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Vendedor dedicado" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1252,6 +1326,11 @@ msgstr "Relatórios" msgid "On Create" msgstr "Em criação" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Por favor disponibilize o seu módulo .ZIP para importar" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1259,9 +1338,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Valor por defeito" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1343,6 +1423,12 @@ msgstr "" msgid "Simple domain setup" msgstr "Configuração do domínio simples" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1413,6 +1499,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1439,6 +1531,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1467,9 +1567,9 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Ano sem seculo: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "" #. module: base #: view:res.lang:0 @@ -1494,11 +1594,6 @@ msgstr "" msgid "Attached Model" msgstr "Modelo ligado" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1703,6 +1798,11 @@ msgstr "Anexo" msgid "Ireland" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Ano sem seculo: %(y)s" + #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -2097,6 +2197,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "%p - Equivalente do AM or PM." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2527,6 +2633,12 @@ msgstr "" msgid "Sir" msgstr "Senhor" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2777,6 +2889,11 @@ msgstr "" msgid "Categories of Modules" msgstr "Categoria dos módulos" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2874,6 +2991,12 @@ msgstr "Adicionar ou não o cabeçalho RML da corporação" msgid "Connect Actions To Client Events" msgstr "Ligar acções a eventos de clientes" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3064,6 +3187,12 @@ msgstr "" msgid "Languages" msgstr "Idiomas" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3121,9 +3250,10 @@ msgid "Base Field" msgstr "Campo base" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Novos módulos" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3224,6 +3354,11 @@ msgstr "Nome do idioma" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Modulo ficheiro .ZIP" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3281,6 +3416,18 @@ msgstr "Tipo de Evento" msgid "Bank account" msgstr "Conta bancaria" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3354,9 +3501,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3386,6 +3532,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "%c - Aresentação apropriada da data e hora." +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3480,7 +3631,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3588,10 +3738,10 @@ msgid "Set NULL" msgstr "Definir como nulo" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Estado da mente" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3615,6 +3765,12 @@ msgstr "A regra é satisfeita se todos os testes forem verdadeiras (AND)" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3773,6 +3929,11 @@ msgstr "Próximo número" msgid "Rates" msgstr "Taxas" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3907,6 +4068,12 @@ msgstr "Ligado a" msgid "Decimal Separator" msgstr "Separador decimal" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4031,6 +4198,19 @@ msgstr "XML de Relatório" msgid "No grid matching for this carrier !" 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 "O utilizador interno que é responsável de comunicar com este sócio se algum." + +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4093,7 +4273,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4130,6 +4309,12 @@ msgstr "Instâncias" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4590,14 +4775,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Acção" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" #. module: base #: view:ir.actions.server:0 @@ -4638,9 +4824,10 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Tamanho" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4655,8 +4842,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4952,6 +5139,12 @@ msgstr "Lituano / Lietuvių kalba" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4973,6 +5166,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5101,6 +5300,13 @@ msgstr "Código de estado" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5194,10 +5400,10 @@ msgid "Please provide a partner for the sale." 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 "Termos não traduzidos" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5272,6 +5478,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5292,6 +5499,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5323,6 +5536,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5526,6 +5745,12 @@ msgstr "Ignorado" msgid "Custom Field" msgstr "Campo personalizado" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5806,10 +6031,9 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Tamanho" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5854,6 +6078,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5875,8 +6105,8 @@ msgid "Always Searchable" msgstr "É sempre possível procurar" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6154,7 +6384,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6253,17 +6482,17 @@ msgstr "O nome completo do país" msgid "Iteration" msgstr "Iteração" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "Stock-terp" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6293,7 +6522,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6329,11 +6557,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6524,11 +6747,6 @@ msgstr "Data de criação" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6587,6 +6805,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6657,6 +6881,7 @@ msgstr "Terceiros clientes" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6692,8 +6917,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6824,12 +7049,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7116,11 +7335,22 @@ msgstr "Separador dos milhares" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Valor por defeito" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7238,8 +7468,8 @@ msgid "Day of the year: %(doy)s" msgstr "Dia do ano: %(doy)s" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7272,6 +7502,12 @@ msgstr "%A - Name completo do dia da semana." msgid "Months" msgstr "Meses" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7382,11 +7618,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7456,12 +7687,6 @@ msgstr "" msgid "Activity" msgstr "Actividade" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7504,6 +7729,12 @@ msgstr "Estado do país" msgid "All Properties" msgstr "Todas as propriedades" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7544,6 +7775,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7569,10 +7809,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Nome do objecto" @@ -7604,9 +7851,11 @@ msgid "Icon" msgstr "Ícone" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "Ok" @@ -7687,7 +7936,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Importar módulo" @@ -7776,6 +8033,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8003,6 +8267,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Novos módulos" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8024,6 +8293,12 @@ msgstr "" msgid "Configure Simple View" msgstr "Configurar vista simples" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8057,6 +8332,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8064,6 +8345,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8099,10 +8386,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8161,6 +8448,12 @@ msgid "Number of time the function is called,\n" msgstr "Número de vezes que a função é chamada,\n" "um número negativo indica que a função será sempre chamada" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8216,6 +8509,12 @@ msgstr "" msgid "Access Rules" msgstr "Regras de acesso" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8463,6 +8762,11 @@ msgstr "4. %b, %B ==> Dez, Dezembro" msgid "Load an Official Translation" msgstr "carregar uma tradução oficial" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Entrega" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8506,6 +8810,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8546,6 +8856,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Lista de repositório" @@ -8595,7 +8906,6 @@ msgstr "Campos tipo" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8668,6 +8978,12 @@ msgstr "Hora 00->12: %(h12)s" msgid "Uncheck the active field to hide the contact." msgstr "Desactive a campo para esconder o contacto" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8710,6 +9026,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8825,11 +9147,6 @@ msgstr "Módulos para actualizar" msgid "Company Architecture" msgstr "Arquitectura da empresa" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8936,6 +9253,12 @@ msgstr "" msgid "Menu Action" msgstr "Menu acção" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9035,6 +9358,12 @@ msgstr "O caminho do ficheiro .rml ou nulo se o conteúdo esta em report_rml_con msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9072,11 +9401,11 @@ msgid "Category Name" msgstr "Nome da categoria" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Assunto" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9084,6 +9413,12 @@ msgstr "Assunto" msgid "From" msgstr "De" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9238,10 +9573,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Modo separado" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9267,7 +9601,6 @@ msgstr "filoho de" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9286,6 +9619,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9320,11 +9659,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "Acção a inicializar" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Importação de módulos" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9492,6 +9843,12 @@ msgstr "Fórmula" msgid "Turkish / Türkçe" msgstr "Turco / Türkçe" +#. 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 "Termos não traduzidos" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9556,6 +9913,12 @@ msgstr "Acções" msgid "High" msgstr "Alta" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9573,8 +9936,10 @@ msgid "Bank Identifier Code" msgstr "Código de identifição bancária" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9610,10 +9975,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9637,6 +10002,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9694,8 +10060,9 @@ msgid "Technical guide" msgstr "Guia técnico" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9803,6 +10170,12 @@ msgstr "" msgid "Start configuration" msgstr "Iniciar configuração" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9897,6 +10270,12 @@ msgstr "" msgid "Titles" msgstr "Títulos" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10107,6 +10486,12 @@ msgstr "Campos descendentes" msgid "Action Usage" msgstr "Utilização da acção" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10232,9 +10617,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Entrega" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10265,12 +10651,23 @@ msgstr "Adicionar contacto de manutenção" msgid "Version" msgstr "Versão" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10309,6 +10706,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10398,6 +10796,14 @@ msgstr "Soma calculada" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "Dia da semana (0:Segunda): %(dia(s) de semana)s" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10444,6 +10850,11 @@ msgstr "" msgid "Country" msgstr "País" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Módulo importado com sucesso !" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10471,6 +10882,12 @@ msgstr "É objecto" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10504,15 +10921,14 @@ msgid "Portrait" msgstr "Retrato" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Assunto" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10559,6 +10975,12 @@ msgstr "Progresso da configuração" msgid "Configuration Wizards" msgstr "Assistente de configuração" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10566,9 +10988,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Modo separado" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10703,6 +11126,12 @@ msgstr "produto-terp" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10727,6 +11156,12 @@ msgstr "Recurso do objecto" msgid "Function" msgstr "Função" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Estado da mente" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10807,6 +11242,12 @@ msgstr "" msgid "Create Object" msgstr "Criar objecto" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/ro_RO.po b/bin/addons/base/i18n/ro_RO.po index a09b9972dab..8cd79e886e1 100644 --- a/bin/addons/base/i18n/ro_RO.po +++ b/bin/addons/base/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "Nume" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" msgid "On Create" msgstr "In creare" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,9 +1333,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Valoare implicita" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,10 +3732,10 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Stare spirit" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "Urmatorul numar" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "Stare(statut) Code" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Valoare implicita" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,10 +9394,10 @@ msgid "Category Name" msgstr "Nume categorie" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9077,6 +9406,12 @@ msgstr "" msgid "From" msgstr "Cerere de" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,10 +9566,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Mod de separare(tie)" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,8 +10608,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "Obiect" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,9 +10979,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Mod de separare(tie)" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "Functie" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Stare spirit" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/ru_RU.po b/bin/addons/base/i18n/ru_RU.po index b5d5d47eb0e..47339b55625 100644 --- a/bin/addons/base/i18n/ru_RU.po +++ b/bin/addons/base/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -602,8 +628,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -677,6 +704,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -815,6 +849,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -873,6 +913,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -910,6 +956,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Действие" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -939,6 +995,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1054,9 +1116,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1103,6 +1166,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1190,6 +1259,11 @@ msgstr "" msgid "Role Name" msgstr "Название роли" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Выделенный менеджер продаж" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1248,6 +1322,11 @@ msgstr "" msgid "On Create" msgstr "При создании" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Укажите ваш .ZIP файл модуля для импорта." + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1255,9 +1334,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Значение по умолчанию" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1339,6 +1419,12 @@ msgstr "" msgid "Simple domain setup" msgstr "Простая настройка домена" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1409,6 +1495,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1435,6 +1527,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1463,8 +1563,8 @@ msgid "Report Custom" msgstr "Пользовательский отчет" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1490,11 +1590,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1699,6 +1794,11 @@ msgstr "" msgid "Ireland" 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" @@ -2093,6 +2193,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2523,6 +2629,12 @@ msgstr "" msgid "Sir" msgstr "Г-н" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2773,6 +2885,11 @@ msgstr "" msgid "Categories of Modules" msgstr "Категории модулей" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2870,6 +2987,12 @@ msgstr "Добавлять ли корпоративный заголовок RM msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3060,6 +3183,12 @@ msgstr "" msgid "Languages" msgstr "Языки" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3117,9 +3246,10 @@ msgid "Base Field" msgstr "Базовое поле" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Новые модули" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3220,6 +3350,11 @@ msgstr "Название языка" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr ".ZIP-файл модуля" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3277,6 +3412,18 @@ msgstr "Тип события" msgid "Bank account" msgstr "Банковский счёт" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3350,9 +3497,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3382,6 +3528,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3476,7 +3627,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3584,10 +3734,10 @@ msgid "Set NULL" msgstr "Устоновить в BULL" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Мнение" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3611,6 +3761,12 @@ msgstr "Удовлетворяет правилу, если все услови msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3769,6 +3925,11 @@ msgstr "Следующее число" msgid "Rates" msgstr "Курсы" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3903,6 +4064,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4027,6 +4194,19 @@ msgstr "Отчет Xml" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4089,7 +4269,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4126,6 +4305,12 @@ msgstr "Копии" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4586,14 +4771,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Действие" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" #. module: base #: view:ir.actions.server:0 @@ -4634,9 +4820,10 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Размер" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4651,9 +4838,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4948,6 +5135,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4969,6 +5162,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5097,6 +5296,13 @@ msgstr "Код области" msgid "On delete" msgstr "При удалении" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5190,10 +5396,10 @@ msgid "Please provide a partner for the sale." 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 "Непереведенные термины" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5268,6 +5474,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5288,6 +5495,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5319,6 +5532,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5522,6 +5741,12 @@ msgstr "Пропущено" msgid "Custom Field" msgstr "Пользовательское поле" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5802,10 +6027,9 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Размер" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5850,6 +6074,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5871,9 +6101,9 @@ msgid "Always Searchable" msgstr "Всегда доступно для поиска" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "" #. module: base #: model:res.country,name:base.hk @@ -6150,7 +6380,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6249,17 +6478,17 @@ msgstr "Полное название страны" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6289,7 +6518,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6325,11 +6553,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6520,11 +6743,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6583,6 +6801,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6653,6 +6877,7 @@ msgstr "Партнеры-клиенты" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6688,9 +6913,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6820,12 +7045,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7112,11 +7331,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Линейная диаграмма" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Значение по умолчанию" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7234,9 +7464,9 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7268,6 +7498,12 @@ msgstr "" msgid "Months" msgstr "Месяцы" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7378,11 +7614,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7452,12 +7683,6 @@ msgstr "" msgid "Activity" msgstr "Действие" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7500,6 +7725,12 @@ msgstr "Область" msgid "All Properties" msgstr "Все свойства" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7540,6 +7771,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7565,10 +7805,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Название объекта" @@ -7600,9 +7847,11 @@ msgid "Icon" msgstr "Пиктограмма" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "ОК" @@ -7683,7 +7932,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Модуль импорта" @@ -7772,6 +8029,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7999,6 +8263,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Новые модули" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8020,6 +8289,12 @@ msgstr "" msgid "Configure Simple View" msgstr "Настроить простой вид" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8053,6 +8328,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8060,6 +8341,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8095,10 +8382,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8156,6 +8443,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8211,6 +8504,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Правила доступа" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8458,6 +8757,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Доставка" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8501,6 +8805,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8541,6 +8851,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Список хранилищ" @@ -8590,7 +8901,6 @@ msgstr "Тип полей" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8663,6 +8973,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8705,6 +9021,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8820,11 +9142,6 @@ msgstr "Модули, которые надо обновить" msgid "Company Architecture" msgstr "Архитектура компании" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8931,6 +9248,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Меню действий" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9030,6 +9353,12 @@ msgstr "Директоря файла .RML или NULL, если содержи msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9067,11 +9396,11 @@ msgid "Category Name" msgstr "Название категории" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Тема" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9079,6 +9408,12 @@ msgstr "Тема" msgid "From" msgstr "От" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9233,10 +9568,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Режим разделения" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9262,7 +9596,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9281,6 +9614,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9315,11 +9654,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9487,6 +9838,12 @@ msgstr "Формула" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9551,6 +9908,12 @@ msgstr "Действия" msgid "High" msgstr "Высокий" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9568,8 +9931,10 @@ msgid "Bank Identifier Code" msgstr "БИК" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9605,10 +9970,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9632,6 +9997,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9689,8 +10055,9 @@ msgid "Technical guide" msgstr "Техническое руководство" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9798,6 +10165,12 @@ msgstr "" msgid "Start configuration" msgstr "Начать настройку" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9892,6 +10265,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10100,6 +10479,12 @@ msgstr "" msgid "Action Usage" msgstr "Использование действия" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10225,9 +10610,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Доставка" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10258,12 +10644,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10302,6 +10699,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10391,6 +10789,14 @@ msgstr "Вычислить сумму" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10437,6 +10843,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "Страна" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Модуль успешно импортирован !" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10464,6 +10875,12 @@ msgstr "Является объектом" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10497,15 +10914,14 @@ msgid "Portrait" msgstr "Книжная" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Тема" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10552,6 +10968,12 @@ msgstr "Настройка выполняется" msgid "Configuration Wizards" msgstr "Мастера настройки" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10559,9 +10981,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Режим разделения" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10696,6 +11119,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10720,6 +11149,12 @@ msgstr "" msgid "Function" msgstr "Функция" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Мнение" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10800,6 +11235,12 @@ msgstr "" msgid "Create Object" msgstr "Создать объект" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/sl_SL.po b/bin/addons/base/i18n/sl_SL.po index d0d53178740..f7f953267ec 100644 --- a/bin/addons/base/i18n/sl_SL.po +++ b/bin/addons/base/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -602,9 +628,10 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -677,6 +704,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -815,6 +849,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -873,6 +913,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -910,6 +956,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Akcija" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -939,6 +995,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1054,9 +1116,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1103,6 +1166,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1190,6 +1259,11 @@ msgstr "" msgid "Role Name" msgstr "Naziv vloge" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Odgovorni prodajalec" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1248,6 +1322,11 @@ msgstr "" msgid "On Create" msgstr "Pri ustvarjanju" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Prosim, navedite vašo .ZIP datoteko modula za uvoziti." + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1255,9 +1334,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Privzeta vrednost" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1339,6 +1419,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1409,6 +1495,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1435,6 +1527,14 @@ msgstr "ir.rule" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1463,8 +1563,8 @@ msgid "Report Custom" msgstr "Poročilo po meri" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1490,11 +1590,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1699,6 +1794,11 @@ msgstr "" msgid "Ireland" 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" @@ -2093,6 +2193,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2523,6 +2629,12 @@ msgstr "" msgid "Sir" msgstr "Gospod" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2773,6 +2885,11 @@ msgstr "" msgid "Categories of Modules" msgstr "Kategorije modulov" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2870,6 +2987,12 @@ msgstr "Vključi/izključi skupno RML glavo" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3060,6 +3183,12 @@ msgstr "" msgid "Languages" msgstr "Jeziki" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3117,9 +3246,10 @@ msgid "Base Field" msgstr "Osnovno polje" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Novi moduli" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3220,6 +3350,11 @@ msgstr "Naziv jezika" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr ".ZIP datoteka modula" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3277,6 +3412,18 @@ msgstr "Vrsta dogodka" msgid "Bank account" msgstr "Bančni račun" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3350,9 +3497,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3382,6 +3528,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3476,7 +3627,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3584,10 +3734,10 @@ msgid "Set NULL" msgstr "Nastavi na NULL" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Razpoloženje partnerja" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3611,6 +3761,12 @@ msgstr "Pravilo je izpolnjeno, če so vsi testi resnični (IN)" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3769,6 +3925,11 @@ msgstr "Naslednja številka" msgid "Rates" msgstr "Tečaji" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3903,6 +4064,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4027,6 +4194,19 @@ msgstr "XML poročilo" msgid "No grid matching for this carrier !" 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 "Interni uporabanik, ki je odgovoren za komunikacijo s tem partnerjem." + +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4089,7 +4269,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4126,6 +4305,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4586,14 +4771,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Akcija" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4634,9 +4820,10 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Velikost" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4651,9 +4838,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4948,6 +5135,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4969,6 +5162,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5097,6 +5296,13 @@ msgstr "Oznaka države" msgid "On delete" msgstr "Pri brisanju" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5190,10 +5396,10 @@ msgid "Please provide a partner for the sale." 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 "Neprevedeni izrazi" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5268,6 +5474,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5288,6 +5495,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5319,6 +5532,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5522,6 +5741,12 @@ msgstr "" msgid "Custom Field" msgstr "Polje po meri" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5802,10 +6027,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Velikost" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5850,6 +6074,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5871,9 +6101,9 @@ msgid "Always Searchable" msgstr "Vedno se da iskati" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "" #. module: base #: model:res.country,name:base.hk @@ -6150,7 +6380,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6249,17 +6478,17 @@ msgstr "Polni ime države" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6289,7 +6518,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6325,11 +6553,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6520,11 +6743,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6583,6 +6801,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6653,6 +6877,7 @@ msgstr "Kupci" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6688,9 +6913,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6820,12 +7045,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7112,11 +7331,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Privzeta vrednost" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7234,9 +7464,9 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7268,6 +7498,12 @@ msgstr "" msgid "Months" msgstr "Meseci" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7378,11 +7614,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7452,12 +7683,6 @@ msgstr "" msgid "Activity" msgstr "Aktivnost" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7500,6 +7725,12 @@ msgstr "Zvezna država" msgid "All Properties" msgstr "Vse karakteristike" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7540,6 +7771,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7565,10 +7805,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Naziv objekta" @@ -7600,9 +7847,11 @@ msgid "Icon" msgstr "Ikona" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "V redu" @@ -7683,7 +7932,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Uvozi modul" @@ -7772,6 +8029,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7999,6 +8263,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Novi moduli" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8020,6 +8289,12 @@ msgstr "" msgid "Configure Simple View" msgstr "Konfiguriraj preprost pogled" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8053,6 +8328,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8060,6 +8341,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8095,10 +8382,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8157,6 +8444,12 @@ msgid "Number of time the function is called,\n" msgstr "Kolikokrat je funkcija klicana,\n" "negativno število pomeni, da bo funkcija vedo klicana" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8212,6 +8505,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Pravila dostopa" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8459,6 +8758,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Dostava" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8502,6 +8806,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8542,6 +8852,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Seznam odlagališč" @@ -8591,7 +8902,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8664,6 +8974,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "Za zakritje kontakta počisti polje 'Aktivno'." +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8706,6 +9022,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8821,11 +9143,6 @@ msgstr "Moduli za ažurirat" msgid "Company Architecture" msgstr "Organizacija družbe" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8932,6 +9249,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Menuji" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9031,6 +9354,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9068,11 +9397,11 @@ msgid "Category Name" msgstr "Naziv kategorije" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Zadeva" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9080,6 +9409,12 @@ msgstr "Zadeva" msgid "From" msgstr "Od" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9234,10 +9569,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Način ločevanja" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9263,7 +9597,6 @@ msgstr "otrok_od" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9282,6 +9615,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9316,11 +9655,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Uvoz modulov" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9488,6 +9839,12 @@ msgstr "Formula" msgid "Turkish / Türkçe" 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 "Neprevedeni izrazi" + #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9552,6 +9909,12 @@ msgstr "Akcije" msgid "High" msgstr "Visoka" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9569,8 +9932,10 @@ msgid "Bank Identifier Code" msgstr "Identifikacijska oznaka banke (Bank Identifier Code)" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9606,10 +9971,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9633,6 +9998,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9690,8 +10056,9 @@ msgid "Technical guide" msgstr "Tehnična navodila" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9799,6 +10166,12 @@ msgstr "" msgid "Start configuration" msgstr "Začni s konfiguracijo" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9893,6 +10266,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10101,6 +10480,12 @@ msgstr "Podrejeno polje" msgid "Action Usage" msgstr "Raba akcije" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10226,9 +10611,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Dostava" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10259,12 +10645,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10303,6 +10700,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10392,6 +10790,14 @@ msgstr "Izračunaj vsoto" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10438,6 +10844,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "Država" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Modul uspešno uvožen." + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10465,6 +10876,12 @@ msgstr "Je objekt" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10498,15 +10915,14 @@ msgid "Portrait" msgstr "Pokočno" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Zadeva" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10553,6 +10969,12 @@ msgstr "Potek konfiguracije" msgid "Configuration Wizards" msgstr "Čarovniki za konfiguracijo" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10560,9 +10982,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Način ločevanja" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10697,6 +11120,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10721,6 +11150,12 @@ msgstr "Objekt resursa" msgid "Function" msgstr "Funkcija" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Razpoloženje partnerja" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10801,6 +11236,12 @@ msgstr "" msgid "Create Object" msgstr "Ustvari objekt" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/sv_SV.po b/bin/addons/base/i18n/sq_AL.po similarity index 94% rename from bin/addons/base/i18n/sv_SV.po rename to bin/addons/base/i18n/sq_AL.po index 090d54eb86e..27d212ca8ca 100644 --- a/bin/addons/base/i18n/sv_SV.po +++ b/bin/addons/base/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -112,7 +126,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" -msgstr "Årligen" +msgstr "" #. module: base #: code:addons/osv/orm.py:0 @@ -182,7 +196,7 @@ msgstr "" #. module: base #: field:ir.report.custom,sortby:0 msgid "Sorted By" -msgstr "Sorterad efter" +msgstr "" #. module: base #: field:ir.sequence,number_increment:0 @@ -236,7 +250,7 @@ msgstr "" #. module: base #: field:res.partner.address,name:0 msgid "Contact Name" -msgstr "Kontaktnamn" +msgstr "" #. module: base #: code:addons/addons/base/module/wizard/wizard_export_lang.py:0 @@ -264,7 +278,7 @@ msgstr "" #. module: base #: selection:res.request,state:0 msgid "active" -msgstr "aktiv" +msgstr "" #. module: base #: field:ir.actions.wizard,wiz_name:0 @@ -346,7 +360,7 @@ msgstr "" #: field:ir.translation,name:0 #: field:res.partner.bank.type.field,name:0 msgid "Field Name" -msgstr "Fältnamn" +msgstr "" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -480,7 +500,7 @@ msgstr "" #. module: base #: field:res.country,name:0 msgid "Country Name" -msgstr "Land" +msgstr "" #. module: base #: model:res.country,name:base.co @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -770,7 +804,7 @@ msgstr "" #. module: base #: field:res.partner.address,mobile:0 msgid "Mobile" -msgstr "Mobil" +msgstr "" #. module: base #: model:res.country,name:base.om @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -844,7 +884,7 @@ msgstr "" #. module: base #: field:res.partner.som,factor:0 msgid "Factor" -msgstr "Faktor" +msgstr "" #. module: base #: view:res.lang:0 @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1012,7 +1074,7 @@ msgstr "" #. module: base #: field:res.partner.event,planned_cost:0 msgid "Planned Cost" -msgstr "Planerad kostnad" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_model_config @@ -1023,7 +1085,7 @@ msgstr "" #: field:ir.module.module,website:0 #: field:res.partner,website:0 msgid "Website" -msgstr "Webbplats" +msgstr "" #. module: base #: field:ir.rule.group,rules:0 @@ -1033,7 +1095,7 @@ msgstr "" #. module: base #: view:ir.module.repository:0 msgid "Repository" -msgstr "Förråd" +msgstr "" #. module: base #: model:res.country,name:base.gs @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1139,7 +1208,7 @@ msgstr "" #. module: base #: field:ir.report.custom,frequency:0 msgid "Frequency" -msgstr "Frekvens" +msgstr "" #. module: base #: field:ir.report.custom.fields,fc0_op:0 @@ -1187,7 +1256,12 @@ msgstr "" #. module: base #: field:res.roles,name:0 msgid "Role Name" -msgstr "Rollnamn" +msgstr "" + +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 @@ -1247,6 +1321,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,8 +1333,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1516,7 +1611,7 @@ msgstr "" #: field:res.request,priority:0 #: field:res.request.link,priority:0 msgid "Priority" -msgstr "Prioritet (0=Mycket bråttom)" +msgstr "" #. module: base #: code:addons/addons/odms/odms.py:0 @@ -1537,7 +1632,7 @@ msgstr "" #. module: base #: view:res.request:0 msgid "Reply" -msgstr "Svara" +msgstr "" #. module: base #: code:addons/addons/base/res/res_user.py:0 @@ -1558,7 +1653,7 @@ msgstr "" #. module: base #: field:res.partner.address,type:0 msgid "Address Type" -msgstr "Adresstyp" +msgstr "" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -1597,7 +1692,7 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Tree" -msgstr "Träd" +msgstr "" #. module: base #: view:maintenance.contract.wizard:0 @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -1814,7 +1914,7 @@ msgstr "" #. module: base #: selection:res.partner.address,type:0 msgid "Invoice" -msgstr "Faktura" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1834,7 +1934,7 @@ msgstr "" #. module: base #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: base #: help:ir.rule.group,global:0 @@ -2005,7 +2105,7 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "left" -msgstr "vänster" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -2066,7 +2166,7 @@ msgstr "" #: view:res.partner.canal:0 #: field:res.partner.event,canal_id:0 msgid "Channel" -msgstr "Kanal" +msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2186,7 +2292,7 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "right" -msgstr "höger" +msgstr "" #. module: base #: model:res.country,name:base.bd @@ -2285,7 +2391,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Daily" -msgstr "Dagligen" +msgstr "" #. module: base #: model:res.country,name:base.se @@ -2408,7 +2514,7 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module,dependencies_id:0 msgid "Dependencies" -msgstr "Beroenden" +msgstr "" #. module: base #: field:res.partner,parent_id:0 @@ -2424,7 +2530,7 @@ msgstr "" #. module: base #: field:ir.report.custom.fields,bgcolor:0 msgid "Background Color" -msgstr "Bakgrundsfärg" +msgstr "" #. module: base #: view:ir.actions.server:0 @@ -2441,7 +2547,7 @@ msgstr "" #. module: base #: field:res.partner.address,birthdate:0 msgid "Birthdate" -msgstr "Födelsedag" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_title_contact @@ -2520,7 +2626,13 @@ msgstr "" #. module: base #: model:res.partner.title,name:base.res_partner_title_sir msgid "Sir" -msgstr "Herr" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" #. module: base #: wizard_button:module.upgrade,next,start:0 @@ -2560,7 +2672,7 @@ msgstr "" #: field:ir.module.module.dependency,module_id:0 #: rml:ir.module.reference:0 msgid "Module" -msgstr "Modul" +msgstr "" #. module: base #: code:addons/addons/odms/odms.py:0 @@ -2576,7 +2688,7 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.request:0 msgid "Description" -msgstr "Beskrivning" +msgstr "" #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 @@ -2602,7 +2714,7 @@ msgstr "" #. module: base #: field:res.users,action_id:0 msgid "Home Action" -msgstr "Åtgärd" +msgstr "" #. module: base #: field:res.lang,grouping:0 @@ -2688,7 +2800,7 @@ msgstr "" #. module: base #: field:ir.report.custom,footer:0 msgid "Report Footer" -msgstr "Rapportfot" +msgstr "" #. module: base #: selection:res.lang,direction:0 @@ -2730,7 +2842,7 @@ msgstr "" #: field:res.partner.address,title:0 #: field:res.partner.title,name:0 msgid "Title" -msgstr "Titel" +msgstr "" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -2913,7 +3036,7 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Form" -msgstr "Formulär" +msgstr "" #. module: base #: code:addons/osv/orm.py:0 @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3156,7 +3286,7 @@ msgstr "" #: selection:ir.values,key:0 #: selection:res.partner.address,type:0 msgid "Default" -msgstr "Standard" +msgstr "" #. module: base #: field:ir.model.fields,required:0 @@ -3174,7 +3304,7 @@ msgstr "" #. module: base #: field:res.request.history,name:0 msgid "Summary" -msgstr "Sammandrag" +msgstr "" #. module: base #: code:addons/addons/account_date_check/account_date_check.py:0 @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3369,7 +3515,7 @@ msgstr "" #. module: base #: field:ir.module.module,author:0 msgid "Author" -msgstr "Upphovsman" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,9 +3732,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3641,7 +3797,7 @@ msgstr "" #. module: base #: field:res.partner.event.type,key:0 msgid "Key" -msgstr "Nyckel" +msgstr "" #. module: base #: field:ir.cron,nextcall:0 @@ -3688,7 +3844,7 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_security msgid "Security" -msgstr "Säkerhet" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_report_custom.py:0 @@ -3767,6 +3923,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3826,7 +3987,7 @@ msgstr "" #: selection:res.request,state:0 #, python-format msgid "draft" -msgstr "utdrag" +msgstr "" #. module: base #: field:res.currency.rate,name:0 @@ -3859,7 +4020,7 @@ msgstr "" #: field:res.partner.event,user_id:0 #: view:res.users:0 msgid "User" -msgstr "Användare" +msgstr "" #. module: base #: view:res.users:0 @@ -3901,12 +4062,18 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 #: field:res.request,history:0 msgid "History" -msgstr "Historik" +msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4072,7 +4252,7 @@ msgstr "" #: field:workflow,name:0 #: field:workflow.activity,name:0 msgid "Name" -msgstr "Namn" +msgstr "" #. module: base #: model:res.country,name:base.ms @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4169,7 +4354,7 @@ msgstr "" #. module: base #: field:res.partner.event,planned_revenue:0 msgid "Planned Revenue" -msgstr "Planerad vinst" +msgstr "" #. module: base #: code:addons/addons/account_budget/wizard/wizard_budget_report.py:0 @@ -4261,7 +4446,7 @@ msgstr "" #. module: base #: selection:res.request,state:0 msgid "closed" -msgstr "stängd" +msgstr "" #. module: base #: selection:wizard.module.lang.export,state:0 @@ -4338,7 +4523,7 @@ msgstr "" #: view:ir.ui.view_sc:0 #: field:res.partner.title,shortcut:0 msgid "Shortcut" -msgstr "Genväg" +msgstr "" #. module: base #: field:ir.model.data,date_init:0 @@ -4389,7 +4574,7 @@ msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Hours" -msgstr "Timmar" +msgstr "" #. module: base #: model:res.country,name:base.gp @@ -4511,7 +4696,7 @@ msgstr "" #: field:res.partner,events:0 #: field:res.partner.event,name:0 msgid "Events" -msgstr "Händelser" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_roles @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4613,7 +4799,7 @@ msgstr "" #: field:res.request,act_to:0 #: field:res.request.history,act_to:0 msgid "To" -msgstr "Till" +msgstr "" #. module: base #: code:addons/addons/project/project.py:0 @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5088,13 +5287,20 @@ msgstr "" #. module: base #: field:res.country.state,code:0 msgid "State Code" -msgstr "Län" +msgstr "" #. module: base #: field:ir.model.fields,on_delete:0 msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5103,7 +5309,7 @@ msgstr "" #. module: base #: field:res.lang,translatable:0 msgid "Translatable" -msgstr "Översättningsbar" +msgstr "" #. module: base #: model:res.country,name:base.vn @@ -5113,7 +5319,7 @@ msgstr "" #. module: base #: field:res.users,signature:0 msgid "Signature" -msgstr "Signatur" +msgstr "" #. module: base #: code:addons/osv/fields.py:0 @@ -5152,7 +5358,7 @@ msgstr "" #: field:res.partner,address:0 #: view:res.partner.address:0 msgid "Contacts" -msgstr "Kontakter" +msgstr "" #. module: base #: model:res.country,name:base.fo @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5219,7 +5425,7 @@ msgstr "" #: field:res.request,active:0 #: field:res.users,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: base #: model:res.country,name:base.na @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5381,7 +5600,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,print_format:0 msgid "a4" -msgstr "A4" +msgstr "" #. module: base #: view:ir.rule.group:0 @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5623,7 +5848,7 @@ msgstr "" #. module: base #: model:ir.actions.report.xml,name:base.res_partner_address_report msgid "Labels" -msgstr "Etiketter" +msgstr "" #. module: base #: wizard_field:res.partner.spam_send,init,from:0 @@ -5667,7 +5892,7 @@ msgstr "" #. module: base #: view:res.partner:0 msgid "General" -msgstr "Allmänt" +msgstr "" #. module: base #: code:addons/osv/orm.py:0 @@ -5748,7 +5973,7 @@ msgstr "" #: selection:res.partner.address,type:0 #: selection:res.partner.title,domain:0 msgid "Contact" -msgstr "Kontakt" +msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_fiscalyear_close.py:0 @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6206,7 +6435,7 @@ msgstr "" #. module: base #: field:res.partner,vat:0 msgid "VAT" -msgstr "Moms" +msgstr "" #. module: base #: code:addons/addons/point_of_sale/pos.py:0 @@ -6235,7 +6464,7 @@ msgstr "" #: field:ir.module.module,url:0 #: field:ir.module.repository,url:0 msgid "URL" -msgstr "URL" +msgstr "" #. module: base #: help:res.country,name:0 @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6382,7 +6605,7 @@ msgstr "" #: view:ir.translation:0 #: model:ir.ui.menu,name:base.menu_translation msgid "Translations" -msgstr "Översättningar" +msgstr "" #. module: base #: field:ir.sequence,padding:0 @@ -6424,7 +6647,7 @@ msgstr "" #: selection:ir.report.custom.fields,operation:0 #, python-format msgid "None" -msgstr "Ingen" +msgstr "" #. module: base #: code:addons/addons/audittrail/audittrail.py:0 @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -6874,7 +7093,7 @@ msgstr "" #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" -msgstr "Händelsetyp" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.ir_sequence_type @@ -6924,7 +7143,7 @@ msgstr "" #: field:res.partner,comment:0 #: field:res.partner.function,ref:0 msgid "Notes" -msgstr "Anteckningar" +msgstr "" #. module: base #: field:ir.property,value:0 @@ -6959,7 +7178,7 @@ msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Minutes" -msgstr "Minuter" +msgstr "" #. module: base #: wizard_view:module.upgrade,end:0 @@ -7025,7 +7244,7 @@ msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Weeks" -msgstr "Veckor" +msgstr "" #. module: base #: model:res.country,name:base.af @@ -7081,7 +7300,7 @@ msgstr "" #: field:maintenance.contract,kind:0 #: field:workflow.activity,kind:0 msgid "Kind" -msgstr "Sort" +msgstr "" #. module: base #: code:addons/osv/orm.py:0 @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7254,7 +7484,7 @@ msgstr "" #: view:ir.property:0 #: model:ir.ui.menu,name:base.next_id_15 msgid "Properties" -msgstr "Egenskaper" +msgstr "" #. module: base #: view:res.lang:0 @@ -7264,7 +7494,13 @@ msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Months" -msgstr "Månader" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -7324,7 +7560,7 @@ msgstr "" #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" -msgstr "Fröken" +msgstr "" #. module: base #: field:ir.model.access,perm_write:0 @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7411,17 +7642,17 @@ msgstr "" #. module: base #: field:res.partner.event,probability:0 msgid "Probability (0.50)" -msgstr "Sannolikhet (0.50)" +msgstr "" #. module: base #: field:ir.report.custom,repeat_header:0 msgid "Repeat Header" -msgstr "Rapporthuvud" +msgstr "" #. module: base #: field:res.users,address_id:0 msgid "Address" -msgstr "Adress" +msgstr "" #. module: base #: field:ir.module.module,latest_version:0 @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7595,12 +7842,14 @@ msgstr "" #. module: base #: field:ir.ui.menu,icon:0 msgid "Icon" -msgstr "Ikon" +msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7864,7 +8128,7 @@ msgstr "" #. module: base #: selection:res.request,priority:0 msgid "Normal" -msgstr "Normal" +msgstr "" #. module: base #: code:addons/addons/odms/wizard/host_status.py:0 @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8038,7 +8313,7 @@ msgstr "" #. module: base #: field:ir.cron,args:0 msgid "Arguments" -msgstr "Argument" +msgstr "" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,16 +8380,16 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base #: field:res.partner.event,partner_type:0 msgid "Partner Relation" -msgstr "Partnerrelation" +msgstr "" #. module: base #: field:ir.actions.act_window,context:0 @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8178,7 +8471,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Monthly" -msgstr "Månadsvis" +msgstr "" #. module: base #: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8217,7 +8516,7 @@ msgstr "" #. module: base #: field:res.roles,parent_id:0 msgid "Parent" -msgstr "Förälder" +msgstr "" #. module: base #: field:ir.actions.act_window,res_model:0 @@ -8323,7 +8622,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_config #: view:res.company:0 msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: base #: code:addons/addons/project/project.py:0 @@ -8334,7 +8633,7 @@ msgstr "" #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" -msgstr "Återförsäljare" +msgstr "" #. module: base #: code:addons/addons/stock/product.py:0 @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8470,12 +8774,12 @@ msgstr "" #. module: base #: selection:res.request,state:0 msgid "waiting" -msgstr "väntar" +msgstr "" #. module: base #: field:ir.attachment,link:0 msgid "Link" -msgstr "Länk" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_triggers @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8596,7 +8906,7 @@ msgstr "" #. module: base #: field:ir.module.module,category_id:0 msgid "Category" -msgstr "Kategori" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8669,7 +8985,7 @@ msgstr "" #. module: base #: field:res.country,code:0 msgid "Country Code" -msgstr "Landskod" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_instance @@ -8690,7 +9006,7 @@ msgstr "" #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" -msgstr "Fru" +msgstr "" #. module: base #: model:res.country,name:base.ee @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8727,7 +9049,7 @@ msgstr "" #. module: base #: selection:res.partner.event,type:0 msgid "Purchase Offer" -msgstr "Inköpserbjudande" +msgstr "" #. module: base #: code:addons/addons/odms/wizard/host_status.py:0 @@ -8779,12 +9101,12 @@ msgstr "" #: field:res.request,body:0 #: field:res.request.history,req_id:0 msgid "Request" -msgstr "Ärende" +msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Days" -msgstr "Dagar" +msgstr "" #. module: base #: code:addons/addons/account_payment/account_move_line.py:0 @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8912,7 +9229,7 @@ msgstr "" #. module: base #: field:res.request.history,body:0 msgid "Body" -msgstr "Kropp" +msgstr "" #. module: base #: wizard_button:res.partner.spam_send,init,send:0 @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9062,20 +9391,26 @@ msgstr "" #. module: base #: field:res.partner.category,name:0 msgid "Category Name" -msgstr "Kategorinamn" +msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base #: field:res.request,act_from:0 #: field:res.request.history,act_from:0 msgid "From" -msgstr "Från" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" #. module: base #: wizard_button:server.action.create,init,step_1:0 @@ -9196,12 +9531,12 @@ msgstr "" #: field:res.currency,name:0 #: field:res.currency.rate,currency_id:0 msgid "Currency" -msgstr "Valuta" +msgstr "" #. module: base #: field:res.partner.canal,name:0 msgid "Channel Name" -msgstr "Kanalnamn" +msgstr "" #. module: base #: view:res.lang:0 @@ -9222,7 +9557,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,print_orientation:0 msgid "Landscape" -msgstr "Liggande" +msgstr "" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_daily.py:0 @@ -9231,9 +9566,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9289,7 +9628,7 @@ msgstr "" #: field:ir.ui.menu,icon_pict:0 #: field:wizard.module.lang.export,state:0 msgid "unknown" -msgstr "okänd" +msgstr "" #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9467,7 +9818,7 @@ msgstr "" #: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" -msgstr "Övrigt" +msgstr "" #. module: base #: code:addons/addons/membership/wizard/invoice_membership.py:0 @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9547,7 +9904,13 @@ msgstr "" #. module: base #: selection:res.request,priority:0 msgid "High" -msgstr "Hög" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" #. module: base #: field:ir.exports.line,export_id:0 @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9644,7 +10010,7 @@ msgstr "" #. module: base #: field:res.partner.event,document:0 msgid "Document" -msgstr "Dokument" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9756,12 +10123,12 @@ msgstr "" #: view:res.request:0 #, python-format msgid "Send" -msgstr "Skicka" +msgstr "" #. module: base #: field:ir.translation,src:0 msgid "Source" -msgstr "Källa" +msgstr "" #. module: base #: help:res.partner.address,partner_id:0 @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -9940,7 +10319,7 @@ msgstr "" #. module: base #: selection:res.request,priority:0 msgid "Low" -msgstr "Låg" +msgstr "" #. module: base #: view:ir.values:0 @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10137,7 +10522,7 @@ msgstr "" #. module: base #: field:ir.report.custom,print_format:0 msgid "Print format" -msgstr "Utskriftsformat" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -10164,7 +10549,7 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "center" -msgstr "mitten" +msgstr "" #. module: base #: code:addons/osv/fields.py:0 @@ -10215,7 +10600,7 @@ msgstr "" #. module: base #: field:res.groups,name:0 msgid "Group Name" -msgstr "Gruppnamn" +msgstr "" #. module: base #: model:res.country,name:base.bh @@ -10223,9 +10608,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Leverans" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10492,18 +10909,17 @@ msgstr "" #. module: base #: selection:ir.report.custom,print_orientation:0 msgid "Portrait" -msgstr "Stående" +msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,8 +10979,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10654,7 +11077,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,print_format:0 msgid "a5" -msgstr "A5" +msgstr "" #. module: base #: code:addons/addons/hr_attendance/hr_attendance.py:0 @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10716,7 +11145,13 @@ msgstr "" #: field:res.partner.address,function:0 #: selection:workflow.activity,kind:0 msgid "Function" -msgstr "Funktion" +msgstr "" + +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/sv_SE.po b/bin/addons/base/i18n/sv_SE.po index 4d1708d976a..bf8873b1c6e 100644 --- a/bin/addons/base/i18n/sv_SE.po +++ b/bin/addons/base/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "Rollnamn" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,8 +1333,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "Herr" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,9 +3732,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "Län" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "Månader" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "Ikon" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Leverans" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,10 +9394,10 @@ msgid "Category Name" msgstr "Kategorinamn" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9077,6 +9406,12 @@ msgstr "" msgid "From" msgstr "Från" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,9 +9566,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "Hög" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,9 +10608,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Leverans" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "Stående" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,8 +10979,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "Funktion" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/tr_TR.po b/bin/addons/base/i18n/tr_TR.po index 31424c552d4..f1c2b1f7686 100644 --- a/bin/addons/base/i18n/tr_TR.po +++ b/bin/addons/base/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,8 +1333,9 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" msgstr "" #. module: base @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "Diller" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,9 +3245,10 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Yeni Modüller" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,9 +3732,9 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" msgstr "" #. module: base @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "Atlandı" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Yeni Modüller" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "Giriş Kuralları" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,10 +9394,10 @@ msgid "Category Name" msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9077,6 +9406,12 @@ msgstr "" msgid "From" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,9 +9566,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,8 +10608,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,8 +10979,9 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" msgstr "" #. module: base @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/uk_UK.po b/bin/addons/base/i18n/uk_UA.po similarity index 95% rename from bin/addons/base/i18n/uk_UK.po rename to bin/addons/base/i18n/uk_UA.po index 06612defca0..8d829b19b77 100644 --- a/bin/addons/base/i18n/uk_UK.po +++ b/bin/addons/base/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "Задіяти процес" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -454,6 +468,12 @@ msgstr "Французька Гвіана" msgid "Bosnian / bosanski jezik" msgstr "Боснійська / bosanski jezik" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -509,6 +529,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -606,9 +632,10 @@ msgid "Jordan" msgstr "Йорданія" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -681,6 +708,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "STOCK_INDEX" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -819,6 +853,12 @@ msgstr "Індія" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -877,6 +917,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "STOCK_FILE" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -914,6 +960,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Дія" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -943,6 +999,12 @@ msgstr "Кайманові острови" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1058,9 +1120,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1107,6 +1170,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1194,6 +1263,11 @@ msgstr "" msgid "Role Name" msgstr "Назва ролі" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Призначений продавець" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1252,6 +1326,11 @@ msgstr "Звіти" msgid "On Create" msgstr "Коли створюється" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Будьласка надайте Ваш .ZIP файл модуля для імпорту." + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1259,9 +1338,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Типове значення" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1343,6 +1423,12 @@ msgstr "Східний Тимор" msgid "Simple domain setup" msgstr "Просте встановлення галузі" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1413,6 +1499,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "STOCK_FIND_AND_REPLACE" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1439,6 +1531,14 @@ msgstr "ir.rule" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1467,8 +1567,8 @@ msgid "Report Custom" msgstr "Звіт користувача" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1494,11 +1594,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1703,6 +1798,11 @@ msgstr "" msgid "Ireland" 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" @@ -2097,6 +2197,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2527,6 +2633,12 @@ msgstr "" msgid "Sir" msgstr "Пан" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2777,6 +2889,11 @@ msgstr "" msgid "Categories of Modules" msgstr "Категорії модулів" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2874,6 +2991,12 @@ msgstr "Додати чи ні корпоративний заголовок RML msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3064,6 +3187,12 @@ msgstr "" msgid "Languages" msgstr "Мови" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3121,9 +3250,10 @@ msgid "Base Field" msgstr "Базове поле" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Нові модулі" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3224,6 +3354,11 @@ msgstr "Назва мови" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Файл .ZIP модуля" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3281,6 +3416,18 @@ msgstr "Тип події" msgid "Bank account" msgstr "Банківський рахунок" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3354,9 +3501,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3386,6 +3532,11 @@ msgstr "STOCK_UNDELETE" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3480,7 +3631,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3588,10 +3738,10 @@ msgid "Set NULL" msgstr "Set NULL" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Настрій" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3615,6 +3765,12 @@ msgstr "Правило задовольняється, якщо всі тест msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3773,6 +3929,11 @@ msgstr "Наступний номер" msgid "Rates" msgstr "Курси" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3907,6 +4068,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4031,6 +4198,19 @@ msgstr "Звіт Xml" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4093,7 +4273,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4130,6 +4309,12 @@ msgstr "Екземпляри" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4590,14 +4775,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "STOCK_ZOOM_OUT" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Дія" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" #. module: base #: view:ir.actions.server:0 @@ -4638,9 +4824,10 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" -msgstr "Розмір" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_partner_create.py:0 @@ -4655,9 +4842,9 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" #. module: base #: view:res.lang:0 @@ -4952,6 +5139,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4973,6 +5166,12 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5101,6 +5300,13 @@ msgstr "Код області" msgid "On delete" msgstr "Дія на видалення" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5194,10 +5400,10 @@ msgid "Please provide a partner for the sale." 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 "Неперекладені терміни" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -5272,6 +5478,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5292,6 +5499,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5323,6 +5536,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "STOCK_DIALOG_AUTHENTICATION" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5526,6 +5745,12 @@ msgstr "Пропущено" msgid "Custom Field" msgstr "Поле користувача" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5806,10 +6031,9 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Розмір" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -5854,6 +6078,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5875,9 +6105,9 @@ msgid "Always Searchable" msgstr "Пошук завжди можливий" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" -msgstr "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "" #. module: base #: model:res.country,name:base.hk @@ -6154,7 +6384,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6253,17 +6482,17 @@ msgstr "Повна назва країни" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" msgstr "terp-stock" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." -msgstr "" - #. module: base #: code:addons/addons/base/ir/ir_actions.py:0 #, python-format @@ -6293,7 +6522,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6329,11 +6557,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6524,11 +6747,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6587,6 +6805,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6657,6 +6881,7 @@ msgstr "Партнери-клієнти" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6692,9 +6917,9 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_empty.py:0 @@ -6824,12 +7049,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7116,11 +7335,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "Лінійний графік" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Типове значення" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7238,9 +7468,9 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" -msgstr "" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -7272,6 +7502,12 @@ msgstr "" msgid "Months" msgstr "Місяці" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7382,11 +7618,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7456,12 +7687,6 @@ msgstr "" msgid "Activity" msgstr "Діяльність" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7504,6 +7729,12 @@ msgstr "Область країни" msgid "All Properties" msgstr "Всі властивості" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7544,6 +7775,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7569,10 +7809,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "Назва об'єкта" @@ -7604,9 +7851,11 @@ msgid "Icon" msgstr "Значок" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "Ок" @@ -7687,7 +7936,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Імпорт модуля" @@ -7776,6 +8033,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "STOCK_PREFERENCES" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -8003,6 +8267,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "Нові модулі" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8024,6 +8293,12 @@ msgstr "" msgid "Configure Simple View" msgstr "Налаштувати простий вид" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8057,6 +8332,12 @@ msgstr "sxw" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8064,6 +8345,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8099,10 +8386,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8161,6 +8448,12 @@ msgid "Number of time the function is called,\n" msgstr "Скільки разів функція викликається.\n" "Негативне значення показує, що функція завжди буде викликатися." +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8216,6 +8509,12 @@ msgstr "STOCK_SORT_ASCENDING" msgid "Access Rules" msgstr "Правила доступу" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8463,6 +8762,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Доставка" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8506,6 +8810,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8546,6 +8856,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "Список репозитаріїв" @@ -8595,7 +8906,6 @@ msgstr "Поля типу" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8668,6 +8978,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8710,6 +9026,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8825,11 +9147,6 @@ msgstr "Модулі для поновлення" msgid "Company Architecture" msgstr "Архітектура компанії" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8936,6 +9253,12 @@ msgstr "STOCK_SELECT_FONT" msgid "Menu Action" msgstr "Дія меню" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9035,6 +9358,12 @@ msgstr "Шлях до RML-файлу або NULL, якщо вміст існує msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9072,11 +9401,11 @@ msgid "Category Name" msgstr "Назва категорії" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Тема" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9084,6 +9413,12 @@ msgstr "Тема" msgid "From" msgstr "Від" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9238,10 +9573,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Режим розділення" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9267,7 +9601,6 @@ msgstr "child_of" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9286,6 +9619,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9320,11 +9659,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9492,6 +9843,12 @@ msgstr "Формула" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9556,6 +9913,12 @@ msgstr "Дії" msgid "High" msgstr "Високий" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9573,8 +9936,10 @@ msgid "Bank Identifier Code" msgstr "Bank Identifier Code" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9610,10 +9975,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9637,6 +10002,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9694,8 +10060,9 @@ msgid "Technical guide" msgstr "Технічний посібник" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9803,6 +10170,12 @@ msgstr "" msgid "Start configuration" msgstr "Почати налаштування" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9897,6 +10270,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10105,6 +10484,12 @@ msgstr "Підлегле поле" msgid "Action Usage" msgstr "Використання дії" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10230,9 +10615,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Доставка" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10263,12 +10649,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10307,6 +10704,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10396,6 +10794,14 @@ msgstr "Рахувати суму" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10442,6 +10848,11 @@ msgstr "STOCK_NETWORK" msgid "Country" msgstr "Країна" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Модуль успішно імпортовано !" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10469,6 +10880,12 @@ msgstr "Є об'єктом" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10502,15 +10919,14 @@ msgid "Portrait" msgstr "Портрет" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Тема" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10557,6 +10973,12 @@ msgstr "Просування налаштування" msgid "Configuration Wizards" msgstr "Майстри налаштування" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10564,9 +10986,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Режим розділення" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10701,6 +11124,12 @@ msgstr "terp-product" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10725,6 +11154,12 @@ msgstr "Об'єкт ресурсів" msgid "Function" msgstr "Функція" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "Настрій" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10805,6 +11240,12 @@ msgstr "" msgid "Create Object" msgstr "Створити об'єкт" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/cs_CS.po b/bin/addons/base/i18n/vi_VN.po similarity index 93% rename from bin/addons/base/i18n/cs_CS.po rename to bin/addons/base/i18n/vi_VN.po index 24f4d7da238..217a8cee7ec 100644 --- a/bin/addons/base/i18n/cs_CS.po +++ b/bin/addons/base/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: base #: wizard_view:res.partner.sms_send,init:0 msgid "SMS - Gateway: clickatell" -msgstr "Brána: clickatell(Gateway: clickatell)" +msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_open_closed_fiscalyear.py:0 @@ -51,7 +51,7 @@ msgstr "" #: field:ir.ui.view,arch:0 #: field:ir.ui.view.custom,arch:0 msgid "View Architecture" -msgstr "Architektura náhledu(View Architecture)" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -69,7 +69,7 @@ msgstr "" #: field:workflow.activity,wkf_id:0 #: field:workflow.instance,wkf_id:0 msgid "Workflow" -msgstr "Workflow(Workflow)" +msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -107,12 +121,12 @@ msgstr "" #. module: base #: view:workflow.activity:0 msgid "Outgoing transitions" -msgstr "Outgoing transitions(Outgoing transitions)" +msgstr "" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" -msgstr "Ročně(Yearly)" +msgstr "" #. module: base #: code:addons/osv/orm.py:0 @@ -172,7 +186,7 @@ msgstr "" #: model:ir.model,name:base.model_ir_actions_report_custom #: selection:ir.ui.menu,action:0 msgid "ir.actions.report.custom" -msgstr "ir.actions.report.custom" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -182,12 +196,12 @@ msgstr "" #. module: base #: field:ir.report.custom,sortby:0 msgid "Sorted By" -msgstr "Tříděno podle(Sorted by)" +msgstr "" #. module: base #: field:ir.sequence,number_increment:0 msgid "Increment Number" -msgstr "Zvýšené číslo(Increment number)" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_tree @@ -198,7 +212,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_report_custom_fields msgid "ir.report.custom.fields" -msgstr "ir.report.custom.fields" +msgstr "" #. module: base #: code:addons/addons/base/module/wizard/wizard_export_lang.py:0 @@ -215,7 +229,7 @@ msgstr "" #: field:ir.actions.report.custom,multi:0 #: field:ir.actions.report.xml,multi:0 msgid "On multiple doc." -msgstr "Více dokumentů" +msgstr "" #. module: base #: field:ir.module.category,module_nr:0 @@ -225,7 +239,7 @@ msgstr "" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "Max. délka" +msgstr "" #. module: base #: code:addons/addons/account/account_move_line.py:0 @@ -236,7 +250,7 @@ msgstr "" #. module: base #: field:res.partner.address,name:0 msgid "Contact Name" -msgstr "Jméno kontaktu" +msgstr "" #. module: base #: code:addons/addons/base/module/wizard/wizard_export_lang.py:0 @@ -264,7 +278,7 @@ msgstr "" #. module: base #: selection:res.request,state:0 msgid "active" -msgstr "Aktivní" +msgstr "" #. module: base #: field:ir.actions.wizard,wiz_name:0 @@ -301,17 +315,17 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" -msgstr "Získat maximum(Get max)" +msgstr "" #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" -msgstr "Limit kreditu" +msgstr "" #. module: base #: field:ir.model.data,date_update:0 msgid "Update Date" -msgstr "Update Date(Update date)" +msgstr "" #. module: base #: field:ir.actions.act_window,src_model:0 @@ -328,13 +342,13 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_sc msgid "ir.ui.view_sc" -msgstr "ir.ui.view_sc" +msgstr "" #. module: base #: field:ir.model.access,group_id:0 #: field:ir.rule,rule_group:0 msgid "Group" -msgstr "Skupina" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -346,7 +360,7 @@ msgstr "" #: field:ir.translation,name:0 #: field:res.partner.bank.type.field,name:0 msgid "Field Name" -msgstr "Název pole" +msgstr "" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -367,7 +381,7 @@ msgstr "" #: 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 "Nenainstalované" +msgstr "" #. module: base #: code:addons/addons/product/pricelist.py:0 @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -480,7 +500,7 @@ msgstr "" #. module: base #: field:res.country,name:0 msgid "Country Name" -msgstr "Název země" +msgstr "" #. module: base #: model:res.country,name:base.co @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -582,7 +608,7 @@ msgstr "" #. module: base #: view:ir.model:0 msgid "Model Description" -msgstr "Popis modelu" +msgstr "" #. module: base #: code:addons/addons/odms/odms.py:0 @@ -601,9 +627,10 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" -msgstr "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -629,7 +656,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_actions msgid "ir.actions.actions" -msgstr "ir.actions.actions" +msgstr "" #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 @@ -658,7 +685,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,type:0 msgid "Bar Chart" -msgstr "Sloupcový graf(Bar chart)" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -697,7 +731,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_ir_sequence_form #: model:ir.ui.menu,name:base.next_id_5 msgid "Sequences" -msgstr "Sekvence" +msgstr "" #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 @@ -759,7 +793,7 @@ msgstr "" #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 msgid "You may have to reinstall some language pack." -msgstr "Možná bude nutné přeinstalovat jazykový balík." +msgstr "" #. module: base #: code:addons/addons/stock/product.py:0 @@ -770,7 +804,7 @@ msgstr "" #. module: base #: field:res.partner.address,mobile:0 msgid "Mobile" -msgstr "Mobil" +msgstr "" #. module: base #: model:res.country,name:base.om @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -844,7 +884,7 @@ msgstr "" #. module: base #: field:res.partner.som,factor:0 msgid "Factor" -msgstr "Faktor(Factor)" +msgstr "" #. module: base #: view:res.lang:0 @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -948,7 +1010,7 @@ msgstr "" #: field:ir.sequence,name:0 #: field:ir.sequence.type,name:0 msgid "Sequence Name" -msgstr "Název sekvence(Sequence Name)" +msgstr "" #. module: base #: model:res.country,name:base.td @@ -991,7 +1053,7 @@ msgstr "" #. module: base #: field:ir.report.custom.fields,alignment:0 msgid "Alignment" -msgstr "Vyrovnání(Alignment)" +msgstr "" #. module: base #: selection:ir.rule,operator:0 @@ -1012,7 +1074,7 @@ msgstr "" #. module: base #: field:res.partner.event,planned_cost:0 msgid "Planned Cost" -msgstr "Plánované výdaje" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_model_config @@ -1023,7 +1085,7 @@ msgstr "" #: field:ir.module.module,website:0 #: field:res.partner,website:0 msgid "Website" -msgstr "Webová stránka" +msgstr "" #. module: base #: field:ir.rule.group,rules:0 @@ -1033,7 +1095,7 @@ msgstr "" #. module: base #: view:ir.module.repository:0 msgid "Repository" -msgstr "Sklad(Repository)" +msgstr "" #. module: base #: model:res.country,name:base.gs @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1139,7 +1208,7 @@ msgstr "" #. module: base #: field:ir.report.custom,frequency:0 msgid "Frequency" -msgstr "Četnost(Frequency)" +msgstr "" #. module: base #: field:ir.report.custom.fields,fc0_op:0 @@ -1147,12 +1216,12 @@ msgstr "Četnost(Frequency)" #: field:ir.report.custom.fields,fc2_op:0 #: field:ir.report.custom.fields,fc3_op:0 msgid "Relation" -msgstr "Popis(Relation)" +msgstr "" #. module: base #: field:ir.model.access,perm_read:0 msgid "Read Access" -msgstr "Číst přístup" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_exports @@ -1187,7 +1256,12 @@ msgstr "" #. module: base #: field:res.roles,name:0 msgid "Role Name" -msgstr "Název" +msgstr "" + +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 @@ -1245,7 +1319,12 @@ msgstr "" #. module: base #: field:workflow,on_create:0 msgid "On Create" -msgstr "On Create(On Create)" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 @@ -1254,20 +1333,21 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "Přednastavená hodnota(Default Value)" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 #: field:res.users,login:0 msgid "Login" -msgstr "Přihlášovací jméno" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_sequence_type msgid "ir.sequence.type" -msgstr "ir.sequence.type" +msgstr "" #. module: base #: view:maintenance.contract:0 @@ -1309,12 +1389,12 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_request_link msgid "res.request.link" -msgstr "res.request.link" +msgstr "" #. module: base #: wizard_button:module.module.update,init,update:0 msgid "Check new modules" -msgstr "Zjistit nové moduly" +msgstr "" #. module: base #: model:res.country,name:base.km @@ -1338,10 +1418,16 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" -msgstr "Výočetní přesnost" +msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_account_balance_report.py:0 @@ -1389,7 +1475,7 @@ msgstr "" #. module: base #: view:ir.sequence:0 msgid "Day: %(day)s" -msgstr "Den: %(den/dny)" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,10 +1526,18 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" -msgstr "Opravená šířka(Fixed width)" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1477,7 +1577,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_partner_form #: view:res.partner:0 msgid "Partners" -msgstr "Partneři" +msgstr "" #. module: base #: help:ir.actions.server,message:0 @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1508,7 +1603,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_model_access msgid "ir.model.access" -msgstr "ir.model.access" +msgstr "" #. module: base #: field:ir.cron,priority:0 @@ -1516,7 +1611,7 @@ msgstr "ir.model.access" #: field:res.request,priority:0 #: field:res.request.link,priority:0 msgid "Priority" -msgstr "Priorita(0=Velmi naléhavé)(Priority (0=Very Urgent)" +msgstr "" #. module: base #: code:addons/addons/odms/odms.py:0 @@ -1527,17 +1622,17 @@ msgstr "" #. module: base #: field:workflow.transition,act_from:0 msgid "Source Activity" -msgstr "Zdrojová aktivita(Source Activity)" +msgstr "" #. module: base #: view:ir.sequence:0 msgid "Legend (for prefix, suffix)" -msgstr "Legenda (pro předponu, příponu)" +msgstr "" #. module: base #: view:res.request:0 msgid "Reply" -msgstr "Odpovědět(Reply)" +msgstr "" #. module: base #: code:addons/addons/base/res/res_user.py:0 @@ -1558,7 +1653,7 @@ msgstr "" #. module: base #: field:res.partner.address,type:0 msgid "Address Type" -msgstr "Typ adresy" +msgstr "" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -1568,7 +1663,7 @@ msgstr "" #. module: base #: view:res.request:0 msgid "End of Request" -msgstr "Konec požadavku(End of Request)" +msgstr "" #. module: base #: code:addons/addons/stock/wizard/wizard_track_line.py:0 @@ -1579,7 +1674,7 @@ msgstr "" #. module: base #: view:res.request:0 msgid "References" -msgstr "Odkazy(References)" +msgstr "" #. module: base #: view:res.lang:0 @@ -1597,7 +1692,7 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Tree" -msgstr "Strom(Tree)" +msgstr "" #. module: base #: view:maintenance.contract.wizard:0 @@ -1680,7 +1775,7 @@ msgstr "" #. module: base #: selection:res.partner.event,partner_type:0 msgid "Commercial Prospect" -msgstr "Finanční výhled(Commercial pospect)" +msgstr "" #. module: base #: code:addons/addons/base/res/partner/partner.py:0 @@ -1698,10 +1793,15 @@ msgstr "" msgid "Ireland" 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 "Počet aktualizovaných modulů" +msgstr "" #. module: base #: code:addons/osv/fields.py:0 @@ -1729,7 +1829,7 @@ msgstr "" #: view:res.users:0 #: field:res.users,groups_id:0 msgid "Groups" -msgstr "Skupiny" +msgstr "" #. module: base #: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 @@ -1814,7 +1914,7 @@ msgstr "" #. module: base #: selection:res.partner.address,type:0 msgid "Invoice" -msgstr "Fakturační" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1847,7 +1947,7 @@ msgstr "" #: view:ir.ui.menu:0 #: field:ir.ui.menu,name:0 msgid "Menu" -msgstr "Nabídka" +msgstr "" #. module: base #: field:res.currency,rate:0 @@ -1909,7 +2009,7 @@ msgstr "" #. module: base #: field:ir.ui.view_sc,name:0 msgid "Shortcut Name" -msgstr "Zkratka názvu" +msgstr "" #. module: base #: help:ir.actions.act_window,limit:0 @@ -2005,7 +2105,7 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "left" -msgstr "levá(left)" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -2066,7 +2166,7 @@ msgstr "" #: view:res.partner.canal:0 #: field:res.partner.event,canal_id:0 msgid "Channel" -msgstr "Kanál(Canal)" +msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2186,7 +2292,7 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "right" -msgstr "pravá(right)" +msgstr "" #. module: base #: model:res.country,name:base.bd @@ -2285,7 +2391,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Daily" -msgstr "Denně(Daily)" +msgstr "" #. module: base #: model:res.country,name:base.se @@ -2302,7 +2408,7 @@ msgstr "" #. module: base #: view:ir.property:0 msgid "Property" -msgstr "Vlastnost" +msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner_bank_type @@ -2340,7 +2446,7 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Calendar" -msgstr "Kalendář" +msgstr "" #. module: base #: code:addons/addons/account/account.py:0 @@ -2357,7 +2463,7 @@ msgstr "" #. module: base #: field:workflow.activity,signal_send:0 msgid "Signal (subflow.*)" -msgstr "Signál (subflow.*)(Signal (subflow.*))" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_17 @@ -2367,7 +2473,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" -msgstr "Závislosti modulu" +msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 @@ -2389,12 +2495,12 @@ msgstr "" #. module: base #: field:res.company,rml_footer1:0 msgid "Report Footer 1" -msgstr "Patička výpisu 1" +msgstr "" #. module: base #: field:res.company,rml_footer2:0 msgid "Report Footer 2" -msgstr "Patička výpisu 1" +msgstr "" #. module: base #: view:ir.model.access:0 @@ -2408,12 +2514,12 @@ msgstr "" #: view:ir.module.module:0 #: field:ir.module.module,dependencies_id:0 msgid "Dependencies" -msgstr "Závislosti(Dependencies)" +msgstr "" #. module: base #: field:res.partner,parent_id:0 msgid "Main Company" -msgstr "Hlavní společnost" +msgstr "" #. module: base #: code:addons/addons/auction/auction.py:0 @@ -2424,7 +2530,7 @@ msgstr "" #. module: base #: field:ir.report.custom.fields,bgcolor:0 msgid "Background Color" -msgstr "Barva pozadí(Background color)" +msgstr "" #. module: base #: view:ir.actions.server:0 @@ -2441,7 +2547,7 @@ msgstr "" #. module: base #: field:res.partner.address,birthdate:0 msgid "Birthdate" -msgstr "Datum narození" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_title_contact @@ -2452,12 +2558,12 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" -msgstr "res.partner.som" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_activity msgid "workflow.activity" -msgstr "workflow.activity" +msgstr "" #. module: base #: code:addons/addons/point_of_sale/report/pos_invoice.py:0 @@ -2479,17 +2585,17 @@ msgstr "" #. module: base #: view:res.partner.event:0 msgid "Document Link" -msgstr "Document Link(Document Link)" +msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner_title msgid "res.partner.title" -msgstr "res.partner.title" +msgstr "" #. module: base #: field:ir.sequence,prefix:0 msgid "Prefix" -msgstr "Předpona" +msgstr "" #. module: base #: field:ir.actions.server,loop_action:0 @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2530,7 +2642,7 @@ msgstr "" #. module: base #: field:ir.default,ref_id:0 msgid "ID Ref." -msgstr "ID Ref.(ID Ref.)" +msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 @@ -2560,7 +2672,7 @@ msgstr "" #: field:ir.module.module.dependency,module_id:0 #: rml:ir.module.reference:0 msgid "Module" -msgstr "Modul" +msgstr "" #. module: base #: code:addons/addons/odms/odms.py:0 @@ -2576,7 +2688,7 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.request:0 msgid "Description" -msgstr "Popis" +msgstr "" #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 @@ -2602,7 +2714,7 @@ msgstr "" #. module: base #: field:res.users,action_id:0 msgid "Home Action" -msgstr "Hlavní Akce" +msgstr "" #. module: base #: field:res.lang,grouping:0 @@ -2628,13 +2740,13 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_9 msgid "Database Structure" -msgstr "Struktura databáze" +msgstr "" #. module: base #: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard #: wizard_view:res.partner.spam_send,init:0 msgid "Mass Mailing" -msgstr "Hromadné zasílání mailů" +msgstr "" #. module: base #: model:res.country,name:base.yt @@ -2666,13 +2778,13 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner_function msgid "Function of the contact" -msgstr "Funkce kontaktní osoby" +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 "Moduly připravené k instalaci, aktualizaci nebo k odebrání" +msgstr "" #. module: base #: code:addons/addons/document/document.py:0 @@ -2688,7 +2800,7 @@ msgstr "" #. module: base #: field:ir.report.custom,footer:0 msgid "Report Footer" -msgstr "Nahlásit spodní záhlaví stránky(Report footer)" +msgstr "" #. module: base #: selection:res.lang,direction:0 @@ -2710,7 +2822,7 @@ msgstr "" #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import language" -msgstr "Import jazyka" +msgstr "" #. module: base #: code:addons/addons/mrp_repair/mrp_repair.py:0 @@ -2730,7 +2842,7 @@ msgstr "" #: field:res.partner.address,title:0 #: field:res.partner.title,name:0 msgid "Title" -msgstr "Oslovení" +msgstr "" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -2770,7 +2882,12 @@ msgstr "" #: 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 "Kategorie modulů" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" #. module: base #: selection:ir.actions.todo,state:0 @@ -2785,7 +2902,7 @@ msgstr "" #. module: base #: field:res.company,name:0 msgid "Company Name" -msgstr "Název společnosti" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_roles_form @@ -2794,7 +2911,7 @@ msgstr "Název společnosti" #: view:res.users:0 #: field:res.users,roles_id:0 msgid "Roles" -msgstr "Funkce" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_country @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -2877,7 +3000,7 @@ msgstr "" #. module: base #: selection:res.partner.event,type:0 msgid "Prospect Contact" -msgstr "Prohlédnout Kontakt(Prospect Contact)" +msgstr "" #. module: base #: code:addons/addons/subscription/subscription.py:0 @@ -2889,7 +3012,7 @@ msgstr "" #: model:ir.model,name:base.model_ir_actions_wizard #: selection:ir.ui.menu,action:0 msgid "ir.actions.wizard" -msgstr "ir.actions.wizard" +msgstr "" #. module: base #: model:res.country,name:base.nr @@ -2913,7 +3036,7 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Form" -msgstr "Formulář(Form)" +msgstr "" #. module: base #: code:addons/osv/orm.py:0 @@ -2946,7 +3069,7 @@ msgstr "" #: view:res.partner:0 #: field:res.partner,category_id:0 msgid "Categories" -msgstr "Kategorie" +msgstr "" #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 @@ -2976,7 +3099,7 @@ msgstr "" #. module: base #: wizard_field:module.module.update,init,repositories:0 msgid "Repositories" -msgstr "Repozitáře" +msgstr "" #. module: base #: model:res.country,name:base.cf @@ -3007,12 +3130,12 @@ msgstr "" #. module: base #: field:ir.actions.report.custom,report_id:0 msgid "Report Ref." -msgstr "Ref. hlášení(Report Ref.)" +msgstr "" #. module: base #: field:res.partner,ean13:0 msgid "EAN13" -msgstr "EAN13" +msgstr "" #. module: base #: model:res.country,name:base.pt @@ -3057,7 +3180,13 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_res_lang_act_window #: view:res.lang:0 msgid "Languages" -msgstr "Jazyky" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" #. module: base #: code:addons/addons/account/account_move_line.py:0 @@ -3075,7 +3204,7 @@ msgstr "" #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 msgid "Xor" -msgstr "Xor" +msgstr "" #. module: base #: model:res.country,name:base.ec @@ -3116,9 +3245,10 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "Nové moduly" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3150,13 +3280,13 @@ msgstr "" #: field:ir.report.custom.fields,fc3_operande:0 #: selection:ir.translation,type:0 msgid "Constraint" -msgstr "Omezení(Constraint)" +msgstr "" #. module: base #: selection:ir.values,key:0 #: selection:res.partner.address,type:0 msgid "Default" -msgstr "Standartní" +msgstr "" #. module: base #: field:ir.model.fields,required:0 @@ -3174,7 +3304,7 @@ msgstr "" #. module: base #: field:res.request.history,name:0 msgid "Summary" -msgstr "Shrnutí(Summary)" +msgstr "" #. module: base #: code:addons/addons/account_date_check/account_date_check.py:0 @@ -3212,13 +3342,18 @@ msgstr "" #. module: base #: wizard_field:module.lang.import,init,name:0 msgid "Language name" -msgstr "Jméno jazyka" +msgstr "" #. module: base #: model:res.country,name:base.va msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3239,13 +3374,13 @@ msgstr "" #. module: base #: selection:ir.report.custom,state:0 msgid "Subscribed" -msgstr "Podepsaný(Subscribed)" +msgstr "" #. module: base #: wizard_view:module.lang.install,init:0 #: wizard_view:module.upgrade,next:0 msgid "System Upgrade" -msgstr "Aktualizace systému" +msgstr "" #. module: base #: field:workflow.activity,in_transitions:0 @@ -3268,18 +3403,30 @@ msgstr "" #: view:res.partner.event.type:0 #: field:res.partner.event.type,name:0 msgid "Event Type" -msgstr "Typ případu(Type of event)" +msgstr "" #. module: base #: view:res.partner.bank:0 #: model:res.partner.bank.type,name:base.bank_normal msgid "Bank account" -msgstr "Bankovní účet" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "Typ sekvence(Sequence type)" +msgstr "" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -3331,7 +3478,7 @@ msgstr "" #: selection:ir.translation,type:0 #: field:wizard.ir.model.menu.create.line,view_id:0 msgid "View" -msgstr "Pohled" +msgstr "" #. module: base #: field:ir.actions.server,write_id:0 @@ -3341,7 +3488,7 @@ msgstr "" #. module: base #: view:ir.actions.act_window:0 msgid "Open a Window" -msgstr "Otevřít okno(Open a Window)" +msgstr "" #. module: base #: model:res.country,name:base.gq @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3369,7 +3515,7 @@ msgstr "" #. module: base #: field:ir.module.module,author:0 msgid "Author" -msgstr "Autor(Author)" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3394,7 +3545,7 @@ msgstr "" #. module: base #: field:res.lang,direction:0 msgid "Direction" -msgstr "Směr" +msgstr "" #. module: base #: model:ir.model,name:base.model_wizard_module_update_translations @@ -3412,14 +3563,14 @@ msgstr "" #: view:wizard.ir.model.menu.create:0 #: field:wizard.ir.model.menu.create,view_ids:0 msgid "Views" -msgstr "Pohledy" +msgstr "" #. module: base #: view:res.groups:0 #: field:res.groups,rule_groups:0 #: field:res.users,rules_id:0 msgid "Rules" -msgstr "Pravidla" +msgstr "" #. module: base #: code:addons/addons/base/module/module.py:0 @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3483,7 +3633,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_roles msgid "res.roles" -msgstr "res.roles" +msgstr "" #. module: base #: help:ir.cron,priority:0 @@ -3582,10 +3732,10 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "Názor(State of mind)" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3641,7 +3797,7 @@ msgstr "" #. module: base #: field:res.partner.event.type,key:0 msgid "Key" -msgstr "Klíč(Key)" +msgstr "" #. module: base #: field:ir.cron,nextcall:0 @@ -3656,7 +3812,7 @@ msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,app_id:0 msgid "API ID" -msgstr "API ID(API ID)" +msgstr "" #. module: base #: code:addons/addons/account/account.py:0 @@ -3672,12 +3828,12 @@ msgstr "" #. module: base #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" -msgstr "Najít nové moduly" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_module_repository msgid "Module Repository" -msgstr "Repozitář modulu" +msgstr "" #. module: base #: code:addons/addons/odms/wizard/host_status.py:0 @@ -3688,7 +3844,7 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_security msgid "Security" -msgstr "Zabezpečení" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_report_custom.py:0 @@ -3743,7 +3899,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" -msgstr "res.groups" +msgstr "" #. module: base #: model:res.country,name:base.br @@ -3759,7 +3915,7 @@ msgstr "" #. module: base #: field:ir.sequence,number_next:0 msgid "Next Number" -msgstr "Další číslo" +msgstr "" #. module: base #: view:res.currency:0 @@ -3767,6 +3923,11 @@ msgstr "Další číslo" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3826,7 +3987,7 @@ msgstr "" #: selection:res.request,state:0 #, python-format msgid "draft" -msgstr "Koncept" +msgstr "" #. module: base #: field:res.currency.rate,name:0 @@ -3834,7 +3995,7 @@ msgstr "Koncept" #: field:res.partner.event,date:0 #: field:res.request,date_sent:0 msgid "Date" -msgstr "Datum" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw:0 @@ -3859,7 +4020,7 @@ msgstr "" #: field:res.partner.event,user_id:0 #: view:res.users:0 msgid "User" -msgstr "Uživatel" +msgstr "" #. module: base #: view:res.users:0 @@ -3870,7 +4031,7 @@ msgstr "" #: field:ir.ui.menu,parent_id:0 #: field:wizard.ir.model.menu.create,menu_id:0 msgid "Parent Menu" -msgstr "Nadřazené menu" +msgstr "" #. module: base #: code:addons/addons/account/account_move_line.py:0 @@ -3901,12 +4062,18 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 #: field:res.request,history:0 msgid "History" -msgstr "Historie(History)" +msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 @@ -3951,7 +4118,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_users msgid "res.users" -msgstr "res.users" +msgstr "" #. module: base #: code:addons/addons/account_followup/wizard/wizard_followup_print.py:0 @@ -3973,17 +4140,17 @@ msgstr "" #. module: base #: view:res.partner.event:0 msgid "General Description" -msgstr "Obecný popis" +msgstr "" #. module: base #: selection:res.partner.event,type:0 msgid "Sale Opportunity" -msgstr "Možnost prodat" +msgstr "" #. module: base #: field:ir.values,meta:0 msgid "Meta Datas" -msgstr "Meta informace(Meta Datas)" +msgstr "" #. module: base #: field:ir.rule,field_id:0 @@ -4025,10 +4192,23 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" -msgstr "Stornovat aktualizaci" +msgstr "" #. module: base #: code:addons/addons/odms/odms.py:0 @@ -4072,7 +4252,7 @@ msgstr "" #: field:workflow,name:0 #: field:workflow.activity,name:0 msgid "Name" -msgstr "Název(Name)" +msgstr "" #. module: base #: model:res.country,name:base.ms @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4100,7 +4279,7 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Calculate Average" -msgstr "Vypočítat průměr(Calculate Average)" +msgstr "" #. module: base #: field:ir.module.module,demo:0 @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4169,7 +4354,7 @@ msgstr "" #. module: base #: field:res.partner.event,planned_revenue:0 msgid "Planned Revenue" -msgstr "Plánovaný příjem(Planned revenue)" +msgstr "" #. module: base #: code:addons/addons/account_budget/wizard/wizard_budget_report.py:0 @@ -4195,7 +4380,7 @@ msgstr "" #. module: base #: view:res.roles:0 msgid "Role" -msgstr "Úloha(Role)" +msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_aged_trial_balance.py:0 @@ -4217,7 +4402,7 @@ msgstr "" #. module: base #: view:ir.rule:0 msgid "Test" -msgstr "Test" +msgstr "" #. module: base #: code:addons/addons/document/document.py:0 @@ -4261,7 +4446,7 @@ msgstr "" #. module: base #: selection:res.request,state:0 msgid "closed" -msgstr "Uzavřený" +msgstr "" #. module: base #: selection:wizard.module.lang.export,state:0 @@ -4287,7 +4472,7 @@ msgstr "" #. module: base #: field:ir.actions.act_window,domain:0 msgid "Domain Value" -msgstr "Hodnota Domény(Domain Value)" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4338,12 +4523,12 @@ msgstr "" #: view:ir.ui.view_sc:0 #: field:res.partner.title,shortcut:0 msgid "Shortcut" -msgstr "Zkratka(Shortcut)" +msgstr "" #. module: base #: field:ir.model.data,date_init:0 msgid "Init Date" -msgstr "Init date(Init date)" +msgstr "" #. module: base #: code:addons/addons/hr_timesheet_invoice/wizard/account_analytic_profit.py:0 @@ -4356,7 +4541,7 @@ msgstr "" #. module: base #: field:workflow.activity,flow_start:0 msgid "Flow Start" -msgstr "začátek toku(Flow start)" +msgstr "" #. module: base #: view:ir.model:0 @@ -4384,12 +4569,12 @@ msgstr "" #. module: base #: field:ir.ui.view_sc,resource:0 msgid "Resource Name" -msgstr "Název zdroje(Resource Name)" +msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Hours" -msgstr "Hodin" +msgstr "" #. module: base #: model:res.country,name:base.gp @@ -4431,7 +4616,7 @@ msgstr "" #. module: base #: field:ir.report.custom.fields,fontcolor:0 msgid "Font color" -msgstr "Barva písma(Font color)" +msgstr "" #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 @@ -4458,7 +4643,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_request_history msgid "res.request.history" -msgstr "res.request.history" +msgstr "" #. module: base #: view:ir.actions.server:0 @@ -4511,13 +4696,13 @@ msgstr "" #: field:res.partner,events:0 #: field:res.partner.event,name:0 msgid "Events" -msgstr "Akce" +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 "Struktura funkcí" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_url @@ -4550,12 +4735,12 @@ msgstr "" #. module: base #: wizard_field:module.module.update,update,add:0 msgid "Number of modules added" -msgstr "Počet přidaných modulů" +msgstr "" #. module: base #: field:workflow.transition,role_id:0 msgid "Role Required" -msgstr "Požadovaná úloha(Role Required)" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -4571,7 +4756,7 @@ msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 msgid "Workitem" -msgstr "Workitem(Workitem)" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4584,14 +4769,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "Akce" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" #. module: base #: view:ir.actions.server:0 @@ -4601,7 +4787,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_cron msgid "ir.cron" -msgstr "ir.cron" +msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_fiscalyear_close.py:0 @@ -4613,7 +4799,7 @@ msgstr "" #: field:res.request,act_to:0 #: field:res.request.history,act_to:0 msgid "To" -msgstr "Do(To)" +msgstr "" #. module: base #: code:addons/addons/project/project.py:0 @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4671,7 +4858,7 @@ msgstr "" #. module: base #: view:res.request.history:0 msgid "Request History" -msgstr "Historie požadavku(Request History)" +msgstr "" #. module: base #: field:ir.module.module,menus_by_module:0 @@ -4753,14 +4940,14 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_module_tree #: field:wizard.module.lang.export,modules:0 msgid "Modules" -msgstr "Moduly" +msgstr "" #. module: base #: selection:workflow.activity,kind:0 #: field:workflow.activity,subflow_id:0 #: field:workflow.workitem,subflow_id:0 msgid "Subflow" -msgstr "Subflow(Subflow)" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4770,7 +4957,7 @@ msgstr "" #. module: base #: field:workflow.transition,signal:0 msgid "Signal (button Name)" -msgstr "Signál(název tlačítka)Signal (button Name" +msgstr "" #. module: base #: code:addons/addons/account/account.py:0 @@ -4825,7 +5012,7 @@ msgstr "" #: selection:ir.report.custom.fields,fc3_op:0 #: selection:ir.rule,operator:0 msgid "in" -msgstr "v(in)" +msgstr "" #. module: base #: field:ir.cron,doall:0 @@ -4867,7 +5054,7 @@ msgstr "" #. module: base #: rml:ir.module.reference:0 msgid "Object:" -msgstr "Objekt:" +msgstr "" #. module: base #: model:res.country,name:base.bw @@ -4928,7 +5115,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_attachment msgid "ir.attachment" -msgstr "ir.attachment" +msgstr "" #. module: base #: code:addons/addons/odms/odms.py:0 @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4955,18 +5148,24 @@ msgstr "" #. module: base #: field:ir.ui.view,inherit_id:0 msgid "Inherited View" -msgstr "Inherited View(Inherited View)" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_translation msgid "ir.translation" -msgstr "ir.translation" +msgstr "" #. module: base #: model:res.country,name:base.lu msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -4976,7 +5175,7 @@ msgstr "" #: 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 "Nainstalované" +msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 @@ -5034,12 +5233,12 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Calculate Count" -msgstr "Vypočítat součet(Calculate Count)" +msgstr "" #. module: base #: field:ir.model.access,perm_create:0 msgid "Create Access" -msgstr "Vytvořit přístup" +msgstr "" #. module: base #: code:addons/addons/use_control/module.py:0 @@ -5083,18 +5282,25 @@ msgstr "" #: view:ir.model:0 #: field:ir.model.fields,ttype:0 msgid "Field Type" -msgstr "Typ pole" +msgstr "" #. module: base #: field:res.country.state,code:0 msgid "State Code" -msgstr "Kód státu" +msgstr "" #. module: base #: field:ir.model.fields,on_delete:0 msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5103,7 +5309,7 @@ msgstr "" #. module: base #: field:res.lang,translatable:0 msgid "Translatable" -msgstr "Přeložitelný" +msgstr "" #. module: base #: model:res.country,name:base.vn @@ -5113,7 +5319,7 @@ msgstr "" #. module: base #: field:res.users,signature:0 msgid "Signature" -msgstr "Podpis" +msgstr "" #. module: base #: code:addons/osv/fields.py:0 @@ -5141,7 +5347,7 @@ msgstr "" #: field:ir.actions.server,message:0 #: wizard_field:res.partner.spam_send,init,text:0 msgid "Message" -msgstr "Vzkaz" +msgstr "" #. module: base #: field:ir.actions.act_window.view,multi:0 @@ -5152,7 +5358,7 @@ msgstr "" #: field:res.partner,address:0 #: view:res.partner.address:0 msgid "Contacts" -msgstr "Kotakty" +msgstr "" #. module: base #: model:res.country,name:base.fo @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5201,7 +5407,7 @@ msgstr "" #. module: base #: view:workflow.transition:0 msgid "Transition" -msgstr "Transitions(Transitions)" +msgstr "" #. module: base #: field:ir.actions.todo,active:0 @@ -5219,7 +5425,7 @@ msgstr "Transitions(Transitions)" #: field:res.request,active:0 #: field:res.users,active:0 msgid "Active" -msgstr "Aktivní(Active)" +msgstr "" #. module: base #: model:res.country,name:base.na @@ -5252,7 +5458,7 @@ msgstr "" #. module: base #: view:res.partner.som:0 msgid "Partner State of Mind" -msgstr "Partner State of Mind(Partner State of Mind)" +msgstr "" #. module: base #: selection:ir.ui.view,type:0 @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5273,7 +5480,7 @@ msgstr "" #: view:wizard.module.lang.export:0 #, python-format msgid "Close" -msgstr "Zavřít" +msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_fiscalyear_close_state.py:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,10 +5530,16 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" -msgstr "Workflow Workitems(Workflow Workitems)" +msgstr "" #. module: base #: model:res.country,name:base.vc @@ -5334,7 +5553,7 @@ msgstr "" #: wizard_field:res.partner.sms_send,init,password:0 #: field:res.users,password:0 msgid "Password" -msgstr "Heslo(Password)" +msgstr "" #. module: base #: code:addons/addons/project/project.py:0 @@ -5381,7 +5600,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,print_format:0 msgid "a4" -msgstr "a4" +msgstr "" #. module: base #: view:ir.rule.group:0 @@ -5440,7 +5659,7 @@ msgstr "" #. module: base #: field:ir.model.data,name:0 msgid "XML Identifier" -msgstr "Identifikátor(Identifier)" +msgstr "" #. module: base #: model:res.country,name:base.ca @@ -5462,7 +5681,7 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,report_name:0 msgid "Internal Name" -msgstr "Interní název(Internal Name)" +msgstr "" #. module: base #: selection:ir.module.module.dependency,state:0 @@ -5482,7 +5701,7 @@ msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,text:0 msgid "SMS Message" -msgstr "SMS(SMS Message)" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5528,7 +5753,7 @@ msgstr "" #. module: base #: field:workflow.instance,uid:0 msgid "User ID" -msgstr "ID uživatele" +msgstr "" #. module: base #: view:ir.actions.server:0 @@ -5598,7 +5823,7 @@ msgstr "" #: field:ir.report.custom.fields,fc2_condition:0 #: field:ir.report.custom.fields,fc3_condition:0 msgid "condition" -msgstr "Podmínka(Condition)" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5613,7 +5838,7 @@ msgstr "" #. module: base #: field:ir.sequence,suffix:0 msgid "Suffix" -msgstr "Přípona" +msgstr "" #. module: base #: model:res.country,name:base.mo @@ -5623,12 +5848,12 @@ msgstr "" #. module: base #: model:ir.actions.report.xml,name:base.res_partner_address_report msgid "Labels" -msgstr "Štítky" +msgstr "" #. module: base #: wizard_field:res.partner.spam_send,init,from:0 msgid "Sender's email" -msgstr "email odesílatele" +msgstr "" #. module: base #: field:ir.default,field_name:0 @@ -5662,12 +5887,12 @@ msgstr "" #. module: base #: view:ir.report.custom.fields:0 msgid "Report Fields" -msgstr "Pole zpráv(Report Fields)" +msgstr "" #. module: base #: view:res.partner:0 msgid "General" -msgstr "Obecné" +msgstr "" #. module: base #: code:addons/osv/orm.py:0 @@ -5678,7 +5903,7 @@ msgstr "" #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" -msgstr "Cílová aktivita(Destination Activity)" +msgstr "" #. module: base #: code:addons/osv/orm.py:0 @@ -5737,7 +5962,7 @@ msgstr "" #: field:ir.module.category,parent_id:0 #: field:res.partner.category,parent_id:0 msgid "Parent Category" -msgstr "Nadřazená kategorie" +msgstr "" #. module: base #: model:res.country,name:base.fi @@ -5748,7 +5973,7 @@ msgstr "" #: selection:res.partner.address,type:0 #: selection:res.partner.title,domain:0 msgid "Contact" -msgstr "Kontaktní" +msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_fiscalyear_close.py:0 @@ -5759,7 +5984,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_menu msgid "ir.ui.menu" -msgstr "ir.ui.menu" +msgstr "" #. module: base #: model:res.country,name:base.tw @@ -5781,7 +6006,7 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Cancel Uninstall" -msgstr "Stornovat deinstalaci" +msgstr "" #. module: base #: model:res.country,name:base.cy @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5819,7 +6043,7 @@ msgstr "" #. module: base #: field:workflow.workitem,inst_id:0 msgid "Instance" -msgstr "Instance(Instance)" +msgstr "" #. module: base #: help:ir.actions.report.xml,attachment:0 @@ -5840,7 +6064,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner_event msgid "res.partner.event" -msgstr "res.partner.event" +msgstr "" #. module: base #: code:addons/addons/event/event.py:0 @@ -5848,6 +6072,12 @@ msgstr "res.partner.event" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -5945,19 +6175,19 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" -msgstr "ir.sequence" +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 "Partnerovy akce" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_transition msgid "workflow.transition" -msgstr "workflow.transition" +msgstr "" #. module: base #: view:res.lang:0 @@ -5983,7 +6213,7 @@ msgstr "" #: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard #: wizard_button:res.partner.sms_send,init,send:0 msgid "Send SMS" -msgstr "Zaslat SMS" +msgstr "" #. module: base #: model:res.country,name:base.np @@ -6013,12 +6243,12 @@ msgstr "" #: field:ir.ui.view,type:0 #: field:wizard.ir.model.menu.create.line,view_type:0 msgid "View Type" -msgstr "Typ náhledu(View Type)" +msgstr "" #. module: base #: wizard_view:res.partner.sms_send,init:0 msgid "Bulk SMS send" -msgstr "Prázdná SMS(Bulk SMS send)" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_2 @@ -6028,7 +6258,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,type:0 msgid "Pie Chart" -msgstr "Koláčový graf(Pie chart)" +msgstr "" #. module: base #: view:ir.sequence:0 @@ -6106,7 +6336,7 @@ msgstr "" #. module: base #: field:ir.report.custom,print_orientation:0 msgid "Print orientation" -msgstr "Orientace tisku(Print orientation)" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_wizard_lang_export @@ -6117,13 +6347,13 @@ msgstr "" #. module: base #: field:ir.attachment,name:0 msgid "Attachment Name" -msgstr "Název přílohy" +msgstr "" #. module: base #: wizard_field:module.lang.import,init,data:0 #: field:wizard.module.lang.export,data:0 msgid "File" -msgstr "Soubor" +msgstr "" #. module: base #: view:res.users:0 @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6156,7 +6385,7 @@ msgstr "" #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." -msgstr "Ref. uživatele(User Ref.)" +msgstr "" #. module: base #: field:res.partner,supplier:0 @@ -6206,7 +6435,7 @@ msgstr "" #. module: base #: field:res.partner,vat:0 msgid "VAT" -msgstr "DPH" +msgstr "" #. module: base #: code:addons/addons/point_of_sale/pos.py:0 @@ -6229,7 +6458,7 @@ msgstr "" #. module: base #: view:res.request.link:0 msgid "Request Link" -msgstr "Request Link(Request Link)" +msgstr "" #. module: base #: field:ir.module.module,url:0 @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6382,12 +6605,12 @@ msgstr "" #: view:ir.translation:0 #: model:ir.ui.menu,name:base.menu_translation msgid "Translations" -msgstr "Překlady" +msgstr "" #. module: base #: field:ir.sequence,padding:0 msgid "Number padding" -msgstr "Number padding(Number padding)" +msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 @@ -6424,7 +6647,7 @@ msgstr "" #: selection:ir.report.custom.fields,operation:0 #, python-format msgid "None" -msgstr "Žádný(None)" +msgstr "" #. module: base #: code:addons/addons/audittrail/audittrail.py:0 @@ -6436,7 +6659,7 @@ msgstr "" #: model:ir.model,name:base.model_ir_module_category #: view:ir.module.category:0 msgid "Module Category" -msgstr "Kategorie modulu" +msgstr "" #. module: base #: model:res.country,name:base.us @@ -6446,7 +6669,7 @@ msgstr "" #. module: base #: rml:ir.module.reference:0 msgid "Reference Guide" -msgstr "Referenční příručka" +msgstr "" #. module: base #: model:res.country,name:base.ml @@ -6461,7 +6684,7 @@ msgstr "" #. module: base #: field:ir.cron,interval_number:0 msgid "Interval Number" -msgstr "Číslo intervalu(Interval Number)" +msgstr "" #. module: base #: selection:maintenance.contract,kind:0 @@ -6476,7 +6699,7 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,report_xsl:0 msgid "XSL path" -msgstr "Cesta k XSL" +msgstr "" #. module: base #: model:res.country,name:base.bn @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6713,7 +6938,7 @@ msgstr "" #: field:res.roles,users:0 #: view:res.users:0 msgid "Users" -msgstr "Uživatelé" +msgstr "" #. module: base #: field:ir.module.module,published_version:0 @@ -6776,7 +7001,7 @@ msgstr "" #. module: base #: view:res.users:0 msgid "Please note that you will have to logout and relog if you change your password." -msgstr "Budete se muset odhlásit a přihlásit, jestliže změníte své heslo." +msgstr "" #. module: base #: model:res.country,name:base.gy @@ -6818,16 +7043,10 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" -msgstr "Popisová pole" +msgstr "" #. module: base #: code:addons/addons/account/account_move_line.py:0 @@ -6874,7 +7093,7 @@ msgstr "" #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" -msgstr "Typ akce" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.ir_sequence_type @@ -6924,7 +7143,7 @@ msgstr "" #: field:res.partner,comment:0 #: field:res.partner.function,ref:0 msgid "Notes" -msgstr "Poznámky" +msgstr "" #. module: base #: field:ir.property,value:0 @@ -6959,13 +7178,13 @@ msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Minutes" -msgstr "Minut" +msgstr "" #. module: base #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 msgid "The modules have been upgraded / installed !" -msgstr "Moduly byly aktualizovány / instalovány!" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -7020,12 +7239,12 @@ msgstr "" #. module: base #: field:workflow.activity,flow_stop:0 msgid "Flow Stop" -msgstr "Flow Stop(Flow Stop)" +msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Weeks" -msgstr "Týdnů" +msgstr "" #. module: base #: model:res.country,name:base.af @@ -7075,13 +7294,13 @@ msgstr "" #. module: base #: field:ir.cron,interval_type:0 msgid "Interval Unit" -msgstr "Intervalová jednotka(Interval Unit)" +msgstr "" #. module: base #: field:maintenance.contract,kind:0 #: field:workflow.activity,kind:0 msgid "Kind" -msgstr "Druh" +msgstr "" #. module: base #: code:addons/osv/orm.py:0 @@ -7110,10 +7329,21 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" -msgstr "Čárový graf(Line plot)" +msgstr "" + +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" #. module: base #: help:ir.actions.server,loop_action:0 @@ -7133,7 +7363,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_request msgid "res.request" -msgstr "res.request" +msgstr "" #. module: base #: code:addons/addons/odms/odms.py:0 @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7254,7 +7484,7 @@ msgstr "" #: view:ir.property:0 #: model:ir.ui.menu,name:base.next_id_15 msgid "Properties" -msgstr "Vlastnosti" +msgstr "" #. module: base #: view:res.lang:0 @@ -7264,7 +7494,13 @@ msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Months" -msgstr "Měsíců" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" #. module: base #: selection:ir.translation,type:0 @@ -7281,7 +7517,7 @@ msgstr "" #: view:ir.attachment:0 #: model:ir.ui.menu,name:base.menu_action_attachment msgid "Attachments" -msgstr "Přílohy" +msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 @@ -7329,7 +7565,7 @@ msgstr "" #. module: base #: field:ir.model.access,perm_write:0 msgid "Write Access" -msgstr "Zapsat přístup" +msgstr "" #. module: base #: field:res.bank,city:0 @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7411,17 +7642,17 @@ msgstr "" #. module: base #: field:res.partner.event,probability:0 msgid "Probability (0.50)" -msgstr "Pravděpodobnost(0.50)(Probability (0.50))" +msgstr "" #. module: base #: field:ir.report.custom,repeat_header:0 msgid "Repeat Header" -msgstr "Opakovat záhlaví(Repeat header)" +msgstr "" #. module: base #: field:res.users,address_id:0 msgid "Address" -msgstr "Adresa" +msgstr "" #. module: base #: field:ir.module.module,latest_version:0 @@ -7448,18 +7679,12 @@ msgstr "" #: view:workflow.activity:0 #: field:workflow.workitem,act_id:0 msgid "Activity" -msgstr "Aktivita(Activity)" - -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." msgstr "" #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" -msgstr "Nadřazená společnost" +msgstr "" #. module: base #: field:res.currency.rate,rate:0 @@ -7490,7 +7715,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_country_state msgid "Country state" -msgstr "Stav země(Country state)" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.ir_property_form_all @@ -7498,6 +7723,12 @@ msgstr "Stav země(Country state)" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7595,12 +7842,14 @@ msgstr "" #. module: base #: field:ir.ui.menu,icon:0 msgid "Icon" -msgstr "Ikona" +msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7625,7 +7874,7 @@ msgstr "" #. module: base #: selection:workflow.activity,split_mode:0 msgid "Or" -msgstr "Nebo(Or)" +msgstr "" #. module: base #: model:res.country,name:base.pk @@ -7681,9 +7930,17 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "Import modulu" +msgstr "" #. module: base #: code:addons/addons/point_of_sale/pos.py:0 @@ -7726,7 +7983,7 @@ msgstr "" #. module: base #: selection:workflow.activity,kind:0 msgid "Stop All" -msgstr "Zastavit vše(Stop all)" +msgstr "" #. module: base #: view:res.lang:0 @@ -7770,10 +8027,17 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" -msgstr "Název státu" +msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 @@ -7784,7 +8048,7 @@ msgstr "" #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" -msgstr "Připojit k módu(Join mode)" +msgstr "" #. module: base #: field:res.users,context_tz:0 @@ -7800,7 +8064,7 @@ msgstr "" #: model:ir.model,name:base.model_ir_actions_report_xml #: selection:ir.ui.menu,action:0 msgid "ir.actions.report.xml" -msgstr "ir.actions.report.xml" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -7864,7 +8128,7 @@ msgstr "" #. module: base #: selection:res.request,priority:0 msgid "Normal" -msgstr "Normální" +msgstr "" #. module: base #: code:addons/addons/odms/wizard/host_status.py:0 @@ -7967,7 +8231,7 @@ msgstr "" #. module: base #: field:res.currency,rounding:0 msgid "Rounding factor" -msgstr "Faktor zaokrouhlení" +msgstr "" #. module: base #: code:addons/addons/account/account_move_line.py:0 @@ -7997,16 +8261,21 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" -msgstr "res.company" +msgstr "" #. module: base #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 msgid "System upgrade done" -msgstr "Aktualizace systému ukončena" +msgstr "" #. module: base #: model:res.country,name:base.so @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8038,7 +8313,7 @@ msgstr "" #. module: base #: field:ir.cron,args:0 msgid "Arguments" -msgstr "Argumenty" +msgstr "" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8067,7 +8354,7 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,auto:0 msgid "Automatic XSL:RML" -msgstr "Automatic XSL:RML(Automatic XSL:RML)" +msgstr "" #. module: base #: view:ir.rule:0 @@ -8085,7 +8372,7 @@ msgstr "" #: field:ir.actions.report.custom,name:0 #: field:ir.report.custom,name:0 msgid "Report Name" -msgstr "Název hlášení(Report Name)" +msgstr "" #. module: base #: field:ir.module.module,shortdesc:0 @@ -8093,21 +8380,21 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base #: field:res.partner.event,partner_type:0 msgid "Partner Relation" -msgstr "Partnerský vztah(Partner Relation)" +msgstr "" #. module: base #: field:ir.actions.act_window,context:0 msgid "Context Value" -msgstr "Souvislá hodnota(Context Value)" +msgstr "" #. module: base #: view:ir.sequence:0 @@ -8117,12 +8404,12 @@ msgstr "" #. module: base #: field:res.request.history,date_sent:0 msgid "Date sent" -msgstr "Datum odeslání(Date sent)" +msgstr "" #. module: base #: view:ir.sequence:0 msgid "Month: %(month)s" -msgstr "Měsíc: %(měsíc/e)" +msgstr "" #. module: base #: field:ir.actions.act_window.view,sequence:0 @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8162,7 +8455,7 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Cancel Install" -msgstr "Stornovat instalaci" +msgstr "" #. module: base #: code:addons/addons/hr_holidays/hr.py:0 @@ -8178,7 +8471,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Monthly" -msgstr "Měsíčně(Monthly)" +msgstr "" #. module: base #: code:addons/addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 @@ -8209,15 +8502,21 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." -msgstr "Table Ref.(Table Ref.)" +msgstr "" #. module: base #: field:res.roles,parent_id:0 msgid "Parent" -msgstr "Nadřízený" +msgstr "" #. module: base #: field:ir.actions.act_window,res_model:0 @@ -8252,7 +8551,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" -msgstr "ir.default" +msgstr "" #. module: base #: view:ir.sequence:0 @@ -8262,7 +8561,7 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" -msgstr "Plánovač" +msgstr "" #. module: base #: view:res.lang:0 @@ -8323,7 +8622,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_config #: view:res.company:0 msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: base #: code:addons/addons/project/project.py:0 @@ -8334,7 +8633,7 @@ msgstr "" #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" -msgstr "Maloobchodník(Retailer)" +msgstr "" #. module: base #: code:addons/addons/stock/product.py:0 @@ -8345,7 +8644,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,type:0 msgid "Tabular" -msgstr "Tabulkový(Tabular)" +msgstr "" #. module: base #: code:addons/addons/point_of_sale/pos.py:0 @@ -8372,7 +8671,7 @@ msgstr "" #: field:res.partner.event,partner_id:0 #: selection:res.partner.title,domain:0 msgid "Partner" -msgstr "Partner(Partner)" +msgstr "" #. module: base #: code:addons/addons/hr_attendance/wizard/sign_in_out.py:0 @@ -8407,7 +8706,7 @@ msgstr "" #: field:ir.actions.report.xml,type:0 #: field:ir.report.custom,type:0 msgid "Report Type" -msgstr "Typ hlášení(Report Type)" +msgstr "" #. module: base #: field:ir.actions.todo,state:0 @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8470,22 +8774,22 @@ msgstr "" #. module: base #: selection:res.request,state:0 msgid "waiting" -msgstr "Čekání/Čekající" +msgstr "" #. module: base #: field:ir.attachment,link:0 msgid "Link" -msgstr "Odkaz" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_triggers msgid "workflow.triggers" -msgstr "workflow.triggers" +msgstr "" #. module: base #: field:ir.report.custom.fields,report_id:0 msgid "Report Ref" -msgstr "Report Ref(Report Ref)" +msgstr "" #. module: base #: code:addons/addons/base_report_designer/wizard/base_report_designer_modify.py:0 @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8529,7 +8839,7 @@ msgstr "" #. module: base #: field:ir.actions.act_window,view_id:0 msgid "View Ref." -msgstr "Ref. náhledu(View Ref.)" +msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 @@ -8539,13 +8849,14 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" -msgstr "Záhlaví výpisu" +msgstr "" #. module: base #: field:res.roles,child_id:0 @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8596,7 +8906,7 @@ msgstr "" #. module: base #: field:ir.module.module,category_id:0 msgid "Category" -msgstr "Kategorie" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -8624,7 +8934,7 @@ msgstr "" #: view:ir.model:0 #: view:res.request:0 msgid "Status" -msgstr "Stav" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8669,12 +8985,12 @@ msgstr "" #. module: base #: field:res.country,code:0 msgid "Country Code" -msgstr "Kód země" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_instance msgid "workflow.instance" -msgstr "workflow.instance" +msgstr "" #. module: base #: view:res.lang:0 @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8722,12 +9044,12 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_report_custom msgid "ir.report.custom" -msgstr "ir.report.custom" +msgstr "" #. module: base #: selection:res.partner.event,type:0 msgid "Purchase Offer" -msgstr "Nákupní nabídka(Purchase offer)" +msgstr "" #. module: base #: code:addons/addons/odms/wizard/host_status.py:0 @@ -8744,7 +9066,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" -msgstr "ir.values" +msgstr "" #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 @@ -8779,12 +9101,12 @@ msgstr "" #: field:res.request,body:0 #: field:res.request.history,req_id:0 msgid "Request" -msgstr "Požadavek(Request)" +msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Days" -msgstr "Dnů" +msgstr "" #. module: base #: code:addons/addons/account_payment/account_move_line.py:0 @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8912,12 +9229,12 @@ msgstr "" #. module: base #: field:res.request.history,body:0 msgid "Body" -msgstr "Tělo(Body)" +msgstr "" #. module: base #: wizard_button:res.partner.spam_send,init,send:0 msgid "Send Email" -msgstr "Poslat e-mail" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -8927,7 +9244,13 @@ msgstr "" #. module: base #: field:res.users,menu_id:0 msgid "Menu Action" -msgstr "Akce nabídky" +msgstr "" + +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: code:addons/addons/account/account.py:0 @@ -8945,13 +9268,13 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Graph" -msgstr "Graf" +msgstr "" #. module: base #: field:res.partner,child_ids:0 #: field:res.request,ref_partner_id:0 msgid "Partner Ref." -msgstr "Ref partnera" +msgstr "" #. module: base #: code:addons/addons/mrp/mrp.py:0 @@ -8984,12 +9307,12 @@ msgstr "" #. module: base #: field:res.request,ref_doc2:0 msgid "Document Ref 2" -msgstr "Dokument Ref 2(Document Ref 2)" +msgstr "" #. module: base #: field:res.request,ref_doc1:0 msgid "Document Ref 1" -msgstr "Dokument Ref 1(Document Ref 1)" +msgstr "" #. module: base #: model:res.country,name:base.ga @@ -9005,7 +9328,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_model_data msgid "ir.model.data" -msgstr "ir.model.data" +msgstr "" #. module: base #: view:ir.model:0 @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9062,20 +9391,26 @@ msgstr "" #. module: base #: field:res.partner.category,name:0 msgid "Category Name" -msgstr "Název kategorie" +msgstr "" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "Předmět" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 #: field:res.request.history,act_from:0 msgid "From" -msgstr "Od(From)" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" #. module: base #: wizard_button:server.action.create,init,step_1:0 @@ -9102,7 +9437,7 @@ msgstr "" #. module: base #: view:workflow.activity:0 msgid "Incoming transitions" -msgstr "Incoming transitions(Incoming transitions)" +msgstr "" #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 @@ -9141,7 +9476,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_workflow msgid "workflow" -msgstr "průběh práce(workflow)" +msgstr "" #. module: base #: model:res.country,name:base.id @@ -9196,12 +9531,12 @@ msgstr "" #: field:res.currency,name:0 #: field:res.currency.rate,currency_id:0 msgid "Currency" -msgstr "Měna" +msgstr "" #. module: base #: field:res.partner.canal,name:0 msgid "Channel Name" -msgstr "Název kanálu(Canal name)" +msgstr "" #. module: base #: view:res.lang:0 @@ -9222,7 +9557,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,print_orientation:0 msgid "Landscape" -msgstr "Orientace stránky naležato(Landscape)" +msgstr "" #. module: base #: code:addons/addons/project_gtd/wizard/project_gtd_daily.py:0 @@ -9231,9 +9566,8 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" msgstr "" #. module: base @@ -9256,11 +9590,10 @@ msgstr "" #. module: base #: selection:ir.rule,operator:0 msgid "child_of" -msgstr "potomek" +msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9289,7 +9628,7 @@ msgstr "" #: field:ir.ui.menu,icon_pict:0 #: field:wizard.module.lang.export,state:0 msgid "unknown" -msgstr "Neznámý(Unknown)" +msgstr "" #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 @@ -9301,7 +9640,7 @@ msgstr "" #. module: base #: field:ir.ui.view_sc,res_id:0 msgid "Resource Ref." -msgstr "Ref. zdroje(Resource Ref.)" +msgstr "" #. module: base #: model:res.country,name:base.ki @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9358,7 +9709,7 @@ msgstr "" #: selection:ir.report.custom.fields,fc2_op:0 #: selection:ir.report.custom.fields,fc3_op:0 msgid "(year)=" -msgstr "(rok)=" +msgstr "" #. module: base #: rml:ir.module.reference:0 @@ -9395,7 +9746,7 @@ msgstr "" #. module: base #: field:ir.translation,value:0 msgid "Translation Value" -msgstr "Platnost překladu(Translation value)" +msgstr "" #. module: base #: model:res.country,name:base.ag @@ -9407,7 +9758,7 @@ msgstr "" #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" -msgstr "Podmínka(Condition)" +msgstr "" #. module: base #: code:addons/addons/event_project/wizard/event_task.py:0 @@ -9418,7 +9769,7 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_management msgid "Modules Management" -msgstr "Správce modulů" +msgstr "" #. module: base #: field:ir.model.data,res_id:0 @@ -9426,7 +9777,7 @@ msgstr "Správce modulů" #: field:workflow.instance,res_id:0 #: field:workflow.triggers,res_id:0 msgid "Resource ID" -msgstr "ID zdroje" +msgstr "" #. module: base #: view:ir.cron:0 @@ -9434,7 +9785,7 @@ msgstr "ID zdroje" #: field:ir.model.grid,info:0 #: view:maintenance.contract:0 msgid "Information" -msgstr "Informace" +msgstr "" #. module: base #: code:addons/addons/wiki/wizard/open_page.py:0 @@ -9450,7 +9801,7 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,report_rml:0 msgid "RML path" -msgstr "Cesta k RML(RML path)" +msgstr "" #. module: base #: field:ir.actions.configuration.wizard,item_id:0 @@ -9467,7 +9818,7 @@ msgstr "" #: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" -msgstr "Jiná" +msgstr "" #. module: base #: code:addons/addons/membership/wizard/invoice_membership.py:0 @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9496,7 +9853,7 @@ msgstr "" #: view:workflow:0 #: field:workflow,activities:0 msgid "Activities" -msgstr "Aktivity" +msgstr "" #. module: base #: field:ir.actions.act_window,auto_refresh:0 @@ -9510,7 +9867,7 @@ msgstr "" #: selection:ir.report.custom.fields,fc3_op:0 #: selection:ir.rule,operator:0 msgid "=" -msgstr "=" +msgstr "" #. module: base #: code:addons/addons/base/ir/ir_report_custom.py:0 @@ -9528,7 +9885,7 @@ msgstr "" #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" -msgstr "Datum spuštění(Trigger date)" +msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_model_grid_security @@ -9542,12 +9899,18 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_ir_sequence_actions #: model:ir.ui.menu,name:base.next_id_6 msgid "Actions" -msgstr "Akce" +msgstr "" #. module: base #: selection:res.request,priority:0 msgid "High" -msgstr "Vysoká" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" #. module: base #: field:ir.exports.line,export_id:0 @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9644,7 +10010,7 @@ msgstr "" #. module: base #: field:res.partner.event,document:0 msgid "Document" -msgstr "Dokument" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -9684,11 +10050,12 @@ msgstr "" #. module: base #: model:ir.actions.report.xml,name:base.ir_module_reference_print msgid "Technical guide" -msgstr "Technický průvodce(Technical guide)" +msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9756,12 +10123,12 @@ msgstr "" #: view:res.request:0 #, python-format msgid "Send" -msgstr "Odeslat" +msgstr "" #. module: base #: field:ir.translation,src:0 msgid "Source" -msgstr "Zdroj" +msgstr "" #. module: base #: help:res.partner.address,partner_id:0 @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9865,7 +10238,7 @@ msgstr "" #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" -msgstr "Cílová instance(Destination Instance)" +msgstr "" #. module: base #: field:ir.actions.wizard,multi:0 @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -9904,7 +10283,7 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,report_xml:0 msgid "XML path" -msgstr "Cesta k XML(XML path)" +msgstr "" #. module: base #: code:addons/addons/l10n_ch/wizard/bvr_import.py:0 @@ -9940,7 +10319,7 @@ msgstr "" #. module: base #: selection:res.request,priority:0 msgid "Low" -msgstr "Nízká" +msgstr "" #. module: base #: view:ir.values:0 @@ -9984,7 +10363,7 @@ msgstr "" #. module: base #: field:res.groups,menu_access:0 msgid "Access Menu" -msgstr "Přístup k nabídce" +msgstr "" #. module: base #: model:res.country,name:base.th @@ -9997,12 +10376,12 @@ msgstr "" #: selection:ir.report.custom.fields,fc2_op:0 #: selection:ir.report.custom.fields,fc3_op:0 msgid ">" -msgstr ">" +msgstr "" #. module: base #: field:ir.model.access,perm_unlink:0 msgid "Delete Permission" -msgstr "Smazat právo" +msgstr "" #. module: base #: code:addons/addons/account_budget/wizard/wizard_budget_report.py:0 @@ -10014,7 +10393,7 @@ msgstr "" #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 msgid "And" -msgstr "A(And)" +msgstr "" #. module: base #: field:ir.model.fields,relation:0 @@ -10038,7 +10417,7 @@ msgstr "" #: selection:ir.report.custom.fields,fc2_op:0 #: selection:ir.report.custom.fields,fc3_op:0 msgid "<" -msgstr "<" +msgstr "" #. module: base #: model:res.country,name:base.uz @@ -10057,7 +10436,7 @@ msgstr "" #: model:ir.model,name:base.model_ir_actions_act_window #: selection:ir.ui.menu,action:0 msgid "ir.actions.act_window" -msgstr "ir.actions.act_window" +msgstr "" #. module: base #: model:res.country,name:base.vi @@ -10085,7 +10464,7 @@ msgstr "" #: field:ir.report.custom,field_parent:0 #: field:ir.ui.view,field_parent:0 msgid "Child Field" -msgstr "Následující pole(CHild field)" +msgstr "" #. module: base #: field:ir.actions.act_window,usage:0 @@ -10096,12 +10475,18 @@ msgstr "Následující pole(CHild field)" #: field:ir.actions.server,usage:0 #: field:ir.actions.wizard,usage:0 msgid "Action Usage" -msgstr "Použití akce(Action Usage)" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" -msgstr "workflow.workitem" +msgstr "" #. module: base #: selection:ir.module.module,state:0 @@ -10137,7 +10522,7 @@ msgstr "" #. module: base #: field:ir.report.custom,print_format:0 msgid "Print format" -msgstr "Formát tisku(Print format)" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -10153,7 +10538,7 @@ msgstr "" #: field:ir.exports,resource:0 #: field:ir.property,res_id:0 msgid "Resource" -msgstr "Zdroj" +msgstr "" #. module: base #: field:maintenance.contract,name:0 @@ -10164,7 +10549,7 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "center" -msgstr "střed(center)" +msgstr "" #. module: base #: code:addons/osv/fields.py:0 @@ -10178,7 +10563,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_country_state_partner #: field:maintenance.contract.wizard,state:0 msgid "States" -msgstr "Státy" +msgstr "" #. module: base #: field:ir.actions.configuration.wizard,name:0 @@ -10215,7 +10600,7 @@ msgstr "" #. module: base #: field:res.groups,name:0 msgid "Group Name" -msgstr "Jméno skupiny" +msgstr "" #. module: base #: model:res.country,name:base.bh @@ -10223,9 +10608,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "Dodací" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10324,7 +10722,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,state:0 msgid "Unsubscribed" -msgstr "Nepodepsaný(Unsubscribed)" +msgstr "" #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 @@ -10382,13 +10780,21 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Calculate Sum" -msgstr "Vypočítat celek(Calculate sum)" +msgstr "" #. module: base #: view:ir.sequence:0 msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10402,7 +10808,7 @@ msgstr "" #. module: base #: field:ir.model.data,noupdate:0 msgid "Non Updatable" -msgstr "Nelze updatovat(Not updatable)" +msgstr "" #. module: base #: model:res.country,name:base.sg @@ -10433,7 +10839,12 @@ msgstr "" #: field:res.partner.address,country_id:0 #: field:res.partner.bank,country_id:0 msgid "Country" -msgstr "Země" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" #. module: base #: field:ir.model.fields,complete_name:0 @@ -10450,22 +10861,28 @@ msgstr "" #. module: base #: view:ir.report.custom:0 msgid "Subscribe Report" -msgstr "Podat zprávu(Subscribe Report)" +msgstr "" #. module: base #: field:ir.values,object:0 msgid "Is Object" -msgstr "je objekt(Is object)" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_15 msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" -msgstr "Vzít zprávu zpět(Unsubscribe Report)" +msgstr "" #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 @@ -10492,18 +10909,17 @@ msgstr "" #. module: base #: selection:ir.report.custom,print_orientation:0 msgid "Portrait" -msgstr "Orientace stránky nastojato(Portrait)" +msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,14 +10979,15 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "Rozdělený mód(Split mode)" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation msgid "Localisation" -msgstr "Lokalizace" +msgstr "" #. module: base #: selection:res.config.view,view:0 @@ -10614,7 +11037,7 @@ msgstr "" #. module: base #: field:ir.ui.view,name:0 msgid "View Name" -msgstr "Název náhledu(View Name)" +msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 @@ -10649,12 +11072,12 @@ msgstr "" #: field:ir.sequence,code:0 #: field:ir.sequence.type,code:0 msgid "Sequence Code" -msgstr "Kód sekvence(Sequence Code)" +msgstr "" #. module: base #: selection:ir.report.custom,print_format:0 msgid "a5" -msgstr "a5" +msgstr "" #. module: base #: code:addons/addons/hr_attendance/hr_attendance.py:0 @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10716,7 +11145,13 @@ msgstr "" #: field:res.partner.address,function:0 #: selection:workflow.activity,kind:0 msgid "Function" -msgstr "Funkce" +msgstr "" + +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 @@ -10750,7 +11185,7 @@ msgstr "" #. module: base #: wizard_view:module.lang.install,init:0 msgid "Choose a language to install:" -msgstr "Vyberte jazyk pro instalaci" +msgstr "" #. module: base #: code:addons/addons/odms/odms.py:0 @@ -10773,7 +11208,7 @@ msgstr "" #. module: base #: view:workflow.instance:0 msgid "Workflow Instances" -msgstr "Workflow Instances(Workflow Instances)" +msgstr "" #. module: base #: code:addons/addons/base/res/partner/partner.py:0 @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/zh_CN.po b/bin/addons/base/i18n/zh_CN.po index 19665141ab5..9f2464e4694 100644 --- a/bin/addons/base/i18n/zh_CN.po +++ b/bin/addons/base/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "操作" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "角色名称" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" 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 #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,9 +1333,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "默认价值" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "自定义报表" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "模块分类" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "语言" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,9 +3245,10 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" -msgstr "新模块" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" +msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "活动类型" msgid "Bank account" msgstr "银行帐号" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,10 +3732,10 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "满意度" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "下一编号" msgid "Rates" msgstr "汇率" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "报表Xml" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,14 +4769,15 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" -msgstr "操作" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" #. module: base #: view:ir.actions.server:0 @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "州/省编码" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "现状图表" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "默认价值" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "月末" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "活动" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "创建" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "图标" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "导入模块" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "新模块" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "运输" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "类型域" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "菜单操作" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,11 +9394,11 @@ msgid "Category Name" msgstr "分类名称" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" -msgstr "主题" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" +msgstr "" #. module: base #: field:res.request,act_from:0 @@ -9077,6 +9406,12 @@ msgstr "主题" msgid "From" msgstr "请求自" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,10 +9566,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "分割模式" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9260,7 +9594,6 @@ msgstr "子项" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "操作" msgid "High" msgstr "高" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "技术文档" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "子栏位" msgid "Action Usage" msgstr "操作用途" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,9 +10608,10 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" -msgstr "运输" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" +msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "计算总额" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "国家" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "模块已成功导入!" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "Is Object" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "纵向" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "主题" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,9 +10979,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "分割模式" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "功能" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "满意度" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" diff --git a/bin/addons/base/i18n/zh_TW.po b/bin/addons/base/i18n/zh_TW.po index acb88e74738..229dfde1389 100644 --- a/bin/addons/base/i18n/zh_TW.po +++ b/bin/addons/base/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,20 @@ msgstr "" msgid "The Bank type %s of the bank account: %s is not supported" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module classes are raising exception when calling basic methods or not.\n" +"\"\"" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Result (/10)" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" @@ -450,6 +464,12 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Feed back About Workflow of Module" +msgstr "" + #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." @@ -505,6 +525,12 @@ msgid "''\n" "(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl''" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/addons/crm_configuration/wizard/wizard_opportunity_set.py:0 #, python-format @@ -601,8 +627,9 @@ msgid "Jordan" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Tag Name" msgstr "" #. module: base @@ -676,6 +703,13 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "File Name" +msgstr "" + #. module: base #: model:res.country,name:base.rs msgid "Serbia" @@ -814,6 +848,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Not Efficient" +msgstr "" + #. module: base #: code:addons/addons/mrp/report/price.py:0 #, python-format @@ -872,6 +912,12 @@ msgstr "" msgid "STOCK_FILE" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No enough data" +msgstr "" + #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" @@ -909,6 +955,16 @@ msgstr "" msgid "You have to define a Default Credit Account for your Financial Journals!\n" msgstr "" +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "" + #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 @@ -938,6 +994,12 @@ msgstr "" msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is hardly wished.\n" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -1053,9 +1115,10 @@ msgid "Your journal must have a default credit and debit account." msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "This feature is only available for location type Amazon" +msgid "Module Name" msgstr "" #. module: base @@ -1102,6 +1165,12 @@ msgstr "" msgid "Pie charts need exactly two fields" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Id is not the same than existing one: %s" +msgstr "" + #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." @@ -1189,6 +1258,11 @@ msgstr "" msgid "Role Name" msgstr "角色名称" +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + #. module: base #: code:addons/addons/mrp/wizard/wizard_change_production_qty.py:0 #, python-format @@ -1247,6 +1321,11 @@ msgstr "" msgid "On Create" msgstr "On创建" +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -1254,9 +1333,10 @@ msgid "No E-Mail ID Found for your Company address or missing reply address in s msgstr "" #. module: base -#: field:ir.default,value:0 -msgid "Default Value" -msgstr "默认价值" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(1)" +msgstr "" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 @@ -1338,6 +1418,12 @@ msgstr "" msgid "Simple domain setup" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Method Test" +msgstr "" + #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" @@ -1408,6 +1494,12 @@ msgstr "" msgid "STOCK_FIND_AND_REPLACE" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Relation not found: %s on '%s'" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" @@ -1434,6 +1526,14 @@ msgstr "" msgid "Invalid Region" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "\"\"\n" +"Test checks for fields, views, security rules, dependancy level\n" +"\"\"" +msgstr "" + #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" @@ -1462,8 +1562,8 @@ msgid "Report Custom" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" +#: model:res.country,name:base.tm +msgid "Turkmenistan" msgstr "" #. module: base @@ -1489,11 +1589,6 @@ msgstr "" msgid "Attached Model" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "fi_FI" -msgstr "" - #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1698,6 +1793,11 @@ msgstr "" msgid "Ireland" 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" @@ -2092,6 +2192,12 @@ msgstr "" msgid "%p - Equivalent of either AM or PM." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Terp Test" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" @@ -2522,6 +2628,12 @@ msgstr "" msgid "Sir" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of dependancy in %" +msgstr "" + #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" @@ -2772,6 +2884,11 @@ msgstr "" msgid "Categories of Modules" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" @@ -2869,6 +2986,12 @@ msgstr "" msgid "Connect Actions To Client Events" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "No Workflow define" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" @@ -3059,6 +3182,12 @@ msgstr "" msgid "Languages" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "The module does not contain the __terp__.py file" +msgstr "" + #. module: base #: code:addons/addons/account/account_move_line.py:0 #, python-format @@ -3116,8 +3245,9 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N/2" msgstr "" #. module: base @@ -3219,6 +3349,11 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + #. module: base #: code:addons/addons/sale/sale.py:0 #, python-format @@ -3276,6 +3411,18 @@ msgstr "" msgid "Bank account" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "PEP-8 Test" +msgstr "" + +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "1" +msgstr "" + #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" @@ -3349,9 +3496,8 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Unable to delete an active subdomain" +#: wizard_view:base.module.import,init:0 +msgid "Module Import" msgstr "" #. module: base @@ -3381,6 +3527,11 @@ msgstr "" msgid "%c - Appropriate date and time representation." msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "" + #. module: base #: model:res.country,name:base.bo msgid "Bolivia" @@ -3475,7 +3626,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3582,10 +3732,10 @@ msgid "Set NULL" msgstr "" #. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "助记状态" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of Security in %" +msgstr "" #. module: base #: model:res.country,name:base.bj @@ -3609,6 +3759,12 @@ msgstr "" msgid "You can not create this kind of document" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Result (/1)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3767,6 +3923,11 @@ msgstr "下一编号" msgid "Rates" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "" + #. module: base #: model:res.country,name:base.sy msgid "Syria" @@ -3901,6 +4062,12 @@ msgstr "" msgid "Decimal Separator" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Feedback about structure of module" +msgstr "" + #. module: base #: view:res.partner:0 #: view:res.request:0 @@ -4025,6 +4192,19 @@ msgstr "" msgid "No grid matching for this carrier !" 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 +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks if the module satisfy tiny structure\n" +"\"\"" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" @@ -4087,7 +4267,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "Standard Encoding" msgstr "" @@ -4124,6 +4303,12 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Structure Test" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" @@ -4584,13 +4769,14 @@ msgid "STOCK_ZOOM_OUT" msgstr "" #. module: base -#: field:ir.actions.act_window.view,act_window_id:0 -#: view:ir.actions.actions:0 -#: field:ir.actions.todo,action_id:0 -#: field:ir.ui.menu,action:0 -#: field:ir.values,action_id:0 -#: selection:ir.values,key:0 -msgid "Action" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" msgstr "" #. module: base @@ -4632,8 +4818,9 @@ msgid "Fiji" msgstr "" #. module: base -#: field:ir.model.fields,size:0 -msgid "Size" +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "Please put a partner on the picking list if you want to generate invoice." msgstr "" #. module: base @@ -4649,8 +4836,8 @@ msgid "This method can be called with multiple ids" msgstr "" #. module: base -#: model:res.country,name:base.sd -msgid "Sudan" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" msgstr "" #. module: base @@ -4946,6 +5133,12 @@ msgstr "" msgid "Provide the field name where the record id is stored after the create operations. If it is empty, you can not track the new record." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Not enough demo data" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -4967,6 +5160,12 @@ msgstr "" msgid "Luxembourg" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Object Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" @@ -5095,6 +5294,13 @@ msgstr "状态编码" msgid "On delete" msgstr "" +#. module: base +#: code:addons/addons/stock/stock.py:0 +#, python-format +msgid "There is no stock input account defined ' \\n" +" 'for this product: \"%s\" (id: %d)" +msgstr "" + #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" @@ -5188,9 +5394,9 @@ msgid "Please provide a partner for the sale." 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" +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "Test Is Not Implemented" msgstr "" #. module: base @@ -5266,6 +5472,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,import,open_window:0 #: wizard_button:module.upgrade,end,end:0 #: wizard_button:module.upgrade,start,end:0 #: wizard_button:server.action.create,init,end:0 @@ -5286,6 +5493,12 @@ msgstr "" msgid "Bhutan" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Efficient" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -5317,6 +5530,12 @@ msgstr "" msgid "STOCK_DIALOG_AUTHENTICATION" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Field name" +msgstr "" + #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" @@ -5520,6 +5739,12 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Speed Test" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" @@ -5800,9 +6025,8 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." +#: field:ir.model.fields,size:0 +msgid "Size" msgstr "" #. module: base @@ -5848,6 +6072,12 @@ msgstr "" msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Insertion Failed!" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" @@ -5869,8 +6099,8 @@ msgid "Always Searchable" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_CLOSE" +#: model:res.country,name:base.sd +msgid "Sudan" msgstr "" #. module: base @@ -6148,7 +6378,6 @@ msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #, python-format msgid "You have to define the bank account\nin the journal definition for reconciliation." msgstr "" @@ -6248,14 +6477,14 @@ msgid "Iteration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "terp-stock" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Warning! Object has no demo data" msgstr "" #. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "invoice line account company is not match with invoice company." +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" msgstr "" #. module: base @@ -6287,7 +6516,6 @@ msgstr "" #: code:addons/addons/hr_timesheet/wizard/sign_in_out.py:0 #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #: code:addons/addons/l10n_ch/wizard/wizard_bvr.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #: code:addons/addons/point_of_sale/wizard/wizard_get_sale.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 @@ -6323,11 +6551,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "sv_SV" -msgstr "" - #. module: base #: field:ir.rule.group,global:0 msgid "Global" @@ -6518,11 +6741,6 @@ msgstr "" msgid "You have to select a product UOM in the same category than the purchase UOM of the product" msgstr "" -#. module: base -#: help:res.partner,user_id:0 -msgid "Internal user if any." -msgstr "" - #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" @@ -6581,6 +6799,12 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "This feature is only available for location type Amazon" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" @@ -6651,6 +6875,7 @@ msgstr "" #. module: base #: code:addons/addons/crm/crm.py:0 +#: wizard_button:base.module.import,init,end:0 #: selection:ir.actions.todo,state:0 #: wizard_button:module.lang.import,init,end:0 #: wizard_button:module.lang.install,init,end:0 @@ -6686,8 +6911,8 @@ msgid "Provide the quantities of the returned products." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SPELL_CHECK" +#: model:res.country,name:base.nt +msgid "Neutral Zone" msgstr "" #. module: base @@ -6818,12 +7043,6 @@ msgstr "" msgid "Select the object on which the action will work (read, write, create)." msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company, Please Create account." -msgstr "" - #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -7110,11 +7329,22 @@ msgstr "" msgid "Created Date" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file" +msgstr "" + #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" msgstr "" +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "默认价值" + #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." @@ -7232,8 +7462,8 @@ msgid "Day of the year: %(doy)s" msgstr "" #. module: base -#: model:res.country,name:base.nt -msgid "Neutral Zone" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base @@ -7266,6 +7496,12 @@ msgstr "" msgid "Months" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N" +msgstr "" + #. module: base #: selection:ir.translation,type:0 msgid "Selection" @@ -7376,11 +7612,6 @@ msgstr "" msgid "Total record different from the computed!" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "uk_UK" -msgstr "" - #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" @@ -7450,12 +7681,6 @@ msgstr "" msgid "Activity" msgstr "" -#. module: base -#: code:addons/addons/multi_company_account/multi_company_account.py:0 -#, python-format -msgid "Can not find account chart for this company in invoice line account, Please Create account." -msgstr "" - #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" @@ -7498,6 +7723,12 @@ msgstr "" msgid "All Properties" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "Feed back About terp file of Module" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window @@ -7538,6 +7769,15 @@ msgstr "" msgid "Unable to get multiple url" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "\"\"\n" +"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n" +"\n" +"\"\"" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format @@ -7563,10 +7803,17 @@ msgid "There is no default default debit account defined \n' \\n" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.model.grid,name:0 #: field:ir.values,model:0 +#, python-format msgid "Object Name" msgstr "" @@ -7598,9 +7845,11 @@ msgid "Icon" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 #: 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 +#, python-format msgid "Ok" msgstr "" @@ -7681,7 +7930,15 @@ msgid "No Related Models!!" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Reading Complexity" +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 "" @@ -7770,6 +8027,13 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "No python file found" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -7997,6 +8261,11 @@ msgstr "" msgid "Registration on the monitoring servers" msgstr "" +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" @@ -8018,6 +8287,12 @@ msgstr "" msgid "Configure Simple View" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Error. Is pylint correctly installed? (http://pypi.python.org/pypi/pylint)" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" @@ -8051,6 +8326,12 @@ msgstr "" msgid "Could not cancel this purchase order !" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 #: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 @@ -8058,6 +8339,12 @@ msgstr "" msgid "May" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: code:addons/osv/orm.py:0 #, python-format @@ -8093,10 +8380,10 @@ msgid "Short Description" msgstr "" #. module: base -#: code:addons/addons/stock/stock.py:0 +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format -msgid "There is no stock input account defined ' \\n" -" 'for this product: \"%s\" (id: %d)" +msgid "Result of views in %" msgstr "" #. module: base @@ -8154,6 +8441,12 @@ msgid "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "__terp__.py file" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Telecom sector" @@ -8209,6 +8502,12 @@ msgstr "" msgid "Access Rules" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Module has no objects" +msgstr "" + #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." @@ -8456,6 +8755,11 @@ msgstr "" msgid "Load an Official Translation" msgstr "" +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + #. module: base #: code:addons/addons/account/account_bank_statement.py:0 #, python-format @@ -8499,6 +8803,12 @@ msgstr "" msgid "No Default Debit Account !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "No data" +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 view." @@ -8539,6 +8849,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree #: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" msgstr "" @@ -8588,7 +8899,6 @@ msgstr "" #. module: base #: code:addons/addons/account/invoice.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8661,6 +8971,12 @@ msgstr "" msgid "Uncheck the active field to hide the contact." msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\"" +msgstr "" + #. module: base #: model:res.country,name:base.dk msgid "Denmark" @@ -8703,6 +9019,12 @@ msgstr "" msgid "You can not validate a non-balanced entry !" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/workflow_test/workflow_test.py:0 +#, python-format +msgid "Workflow Test" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -8818,11 +9140,6 @@ msgstr "" msgid "Company Architecture" msgstr "" -#. module: base -#: field:res.partner,user_id:0 -msgid "Internal User" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -8929,6 +9246,12 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: code:addons/osv/orm.py:0 +#, python-format +msgid "Unable to delete this document because it is used as a default property" +msgstr "" + #. module: base #: code:addons/addons/account/account.py:0 #, python-format @@ -9028,6 +9351,12 @@ msgstr "" msgid "Account Number" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/module_quality_check.py:0 +#, python-format +msgid "Quality Check" +msgstr "" + #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" @@ -9065,10 +9394,10 @@ msgid "Category Name" msgstr "类别名称" #. module: base -#: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 -#: field:res.request,name:0 -msgid "Subject" +#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 +#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 +#, python-format +msgid "Sat" msgstr "" #. module: base @@ -9077,6 +9406,12 @@ msgstr "" msgid "From" msgstr "请求自" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Result of pep8_test in %" +msgstr "" + #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" @@ -9231,10 +9566,9 @@ msgid "No timebox of the type \"%s\" defined !" msgstr "" #. module: base -#: code:addons/addons/odms/odms.py:0 -#, python-format -msgid "Demo instance" -msgstr "" +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "分割模式" #. module: base #: code:addons/addons/purchase/purchase.py:0 @@ -9260,7 +9594,6 @@ msgstr "" #. module: base #: code:addons/addons/account/account_bank_statement.py:0 -#: code:addons/addons/multi_company_account/multi_company_account.py:0 #, python-format msgid "Configration Error !" msgstr "" @@ -9279,6 +9612,12 @@ msgstr "" msgid "No Invoice Address" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#, python-format +msgid "Result of fields in %" +msgstr "" + #. module: base #: model:res.country,name:base.ir msgid "Iran" @@ -9313,11 +9652,23 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/method_test/method_test.py:0 +#, python-format +msgid "Exception" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" 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_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form @@ -9485,6 +9836,12 @@ msgstr "" msgid "Turkish / Türkçe" 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 #: wizard_view:module.lang.import,init:0 msgid "Import New Language" @@ -9549,6 +9906,12 @@ msgstr "" msgid "High" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Line number" +msgstr "" + #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" @@ -9566,8 +9929,10 @@ msgid "Bank Identifier Code" msgstr "" #. module: base -#: model:res.country,name:base.tm -msgid "Turkmenistan" +#: code:addons/addons/base_module_quality/object_test/object_test.py:0 +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "Suggestion" msgstr "" #. module: base @@ -9603,10 +9968,10 @@ msgstr "" #: code:addons/addons/proforma_followup/proforma.py:0 #: code:addons/addons/project/wizard/close_task.py:0 #: code:addons/addons/sale/wizard/make_invoice_advance.py:0 -#: code:addons/addons/stage/wizard/wizard_classend.py:0 #: code:addons/addons/stock/stock.py:0 #: code:addons/addons/stock/wizard/wizard_invoice_onshipping.py:0 #: code:addons/addons/use_control/module.py:0 +#: code:addons/osv/orm.py:0 #: code:addons/report/custom.py:0 #, python-format msgid "Error" @@ -9630,6 +9995,7 @@ msgid "You can not remove the field '%s' !" msgstr "" #. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 #: code:addons/addons/odms/odms.py:0 #, python-format msgid "Programming Error" @@ -9687,8 +10053,9 @@ msgid "Technical guide" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "cs_CS" +#: code:addons/addons/base_module_quality/terp_test/terp_test.py:0 +#, python-format +msgid "This test checks if the module satisfies the current coding standard used by OpenERP." msgstr "" #. module: base @@ -9796,6 +10163,12 @@ msgstr "" msgid "Start configuration" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "N (Number of Records)" +msgstr "" + #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" @@ -9890,6 +10263,12 @@ msgstr "" msgid "Titles" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "Result" +msgstr "" + #. module: base #: code:addons/addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -10098,6 +10477,12 @@ msgstr "" msgid "Action Usage" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Pylint Test" +msgstr "" + #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" @@ -10223,8 +10608,9 @@ msgid "Bahrain" msgstr "" #. module: base -#: selection:res.partner.address,type:0 -msgid "Delivery" +#: code:addons/addons/base_module_quality/speed_test/speed_test.py:0 +#, python-format +msgid "O(n) or worst" msgstr "" #. module: base @@ -10256,12 +10642,23 @@ msgstr "" msgid "Version" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 +#, python-format +msgid "No report to save!" +msgstr "" + #. module: base #: code:addons/addons/mrp/mrp.py:0 #, python-format msgid "No BoM defined for this product !" msgstr "" +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "" + #. module: base #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 @@ -10300,6 +10697,7 @@ msgstr "" #: code:addons/addons/account/wizard/wizard_state_open.py:0 #: code:addons/addons/account/wizard/wizard_validate_account_move.py:0 #: code:addons/addons/base/res/partner/partner.py:0 +#: code:addons/addons/base_module_quality/wizard/quality_save_report.py:0 #: code:addons/addons/delivery/stock.py:0 #: code:addons/addons/hr_attendance/hr_attendance.py:0 #: code:addons/addons/odms/wizard/host_status.py:0 @@ -10389,6 +10787,14 @@ msgstr "" msgid "Day of the week (0:Monday): %(weekday)s" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pep8_test/pep8_test.py:0 +#, python-format +msgid "\"\"\n" +"PEP-8 Test , copyright of py files check, method can not call from loops\n" +"\"\"" +msgstr "" + #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" @@ -10435,6 +10841,11 @@ msgstr "" msgid "Country" msgstr "" +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -10462,6 +10873,12 @@ msgstr "Is Object" msgid "IT sector" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/structure_test/structure_test.py:0 +#, python-format +msgid "Result in %" +msgstr "" + #. module: base #: view:ir.report.custom:0 msgid "Unsubscribe Report" @@ -10495,15 +10912,14 @@ msgid "Portrait" msgstr "" #. module: base -#: code:addons/addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" msgstr "" #. module: base #: code:addons/addons/account/wizard/wizard_journal.py:0 -#: code:addons/addons/multi_company_account/wizard/wizard_journal.py:0 #, python-format msgid "This period is already closed !" msgstr "" @@ -10550,6 +10966,12 @@ msgstr "" msgid "Configuration Wizards" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/pylint_test/pylint_test.py:0 +#, python-format +msgid "Unable to parse the result. Check the details." +msgstr "" + #. module: base #: code:addons/addons/crm/crm.py:0 #, python-format @@ -10557,9 +10979,10 @@ msgid "You must put a Partner eMail to use this action!" msgstr "" #. module: base -#: field:workflow.activity,split_mode:0 -msgid "Split Mode" -msgstr "分割模式" +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Demo instance" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_localisation @@ -10694,6 +11117,12 @@ msgstr "" msgid "Turks and Caicos Islands" msgstr "" +#. module: base +#: code:addons/addons/odms/odms.py:0 +#, python-format +msgid "Unable to delete an active subdomain" +msgstr "" + #. module: base #: code:addons/addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 #, python-format @@ -10718,6 +11147,12 @@ msgstr "" msgid "Function" msgstr "函数" +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "助记状态" + #. module: base #: code:addons/addons/l10n_ch/wizard/dta_wizard.py:0 #, python-format @@ -10798,6 +11233,12 @@ msgstr "" msgid "Create Object" msgstr "" +#. module: base +#: code:addons/addons/base_module_quality/base_module_quality.py:0 +#, python-format +msgid "The module has to be installed before running this test." +msgstr "" + #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" From 2f26cee06d7b5bddd778e3b4c661b66a94607c35 Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Fri, 28 Aug 2009 18:18:02 +0200 Subject: [PATCH 25/31] [FIX] Security fix bzr revid: fp@tinyerp.com-20090828161802-i6ec75ifobpncaz0 --- bin/netsvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index ea6513a5325..5318fc3b284 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -280,7 +280,7 @@ class SSLSocket(object): return getattr(self.socket, name) class SimpleXMLRPCRequestHandler(GenericXMLRPCRequestHandler, SimpleXMLRPCServer.SimpleXMLRPCRequestHandler): - rpc_paths = map(lambda s: '/xmlrpc/%s' % s, SERVICES.keys()) + rpc_paths = map(lambda s: '/xmlrpc/%s' % s, GROUPS.get('web-services', {}).keys()) class SecureXMLRPCRequestHandler(SimpleXMLRPCRequestHandler): def setup(self): From 3c1be5bec752ba30c894c23ea62f07a75536cbd8 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 28 Aug 2009 18:18:29 +0200 Subject: [PATCH 26/31] [IMP] add translation names bzr revid: christophe@tinyerp.com-20090828161829-t09div4pnx0pfij2 --- bin/tools/misc.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/tools/misc.py b/bin/tools/misc.py index d67cde3ec79..ef857ef0cb1 100644 --- a/bin/tools/misc.py +++ b/bin/tools/misc.py @@ -783,6 +783,7 @@ def get_languages(): 'es_AR': u'Spanish (AR) / Español (AR)', 'es_ES': u'Spanish / Español', 'et_EE': u'Estonian / Eesti keel', + 'fi_FI': u'Finland / Suomi', 'fr_BE': u'French (BE) / Français (BE)', 'fr_CH': u'French (CH) / Français (CH)', 'fr_FR': u'French / Français', @@ -799,12 +800,14 @@ def get_languages(): 'ro_RO': u'Romanian / limba română', 'ru_RU': u'Russian / русский язык', 'sl_SL': u'Slovenian / slovenščina', + 'sq_AL': u'Albanian / Shqipëri', 'sv_SE': u'Swedish / svenska', 'tr_TR': u'Turkish / Türkçe', + 'vi_VN': u'Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam', 'uk_UA': u'Ukrainian / украї́нська мо́ва', - 'zh_CN': u'Chinese (CN) / 简体中文' , + 'zh_CN': u'Chinese (CN) / 简体中文', 'zh_TW': u'Chinese (TW) / 正體字', - "th_TH": u"Thai / ภาษาไทย" + 'th_TH': u'Thai / ภาษาไทย', } return languages From bba48476eb281736fb948a1dd29c1a56a3bdc388 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 28 Aug 2009 18:19:24 +0200 Subject: [PATCH 27/31] [IMP] replace partner name and address in demo bzr revid: christophe@tinyerp.com-20090828161924-8954gi134hhcxdj2 --- bin/addons/base/res/partner/partner_demo.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/bin/addons/base/res/partner/partner_demo.xml b/bin/addons/base/res/partner/partner_demo.xml index 731dda1187b..83465e97ffa 100644 --- a/bin/addons/base/res/partner/partner_demo.xml +++ b/bin/addons/base/res/partner/partner_demo.xml @@ -141,10 +141,10 @@ - http://opensides.be - Opensides sprl + http://www.openroad.be + OpenRoad - os + or @@ -181,12 +181,12 @@ Bruxelles - Benoit Mortier - 1030 + Michel Schumacher + 1000 - info@opensides.be - (+32)2 211 34 83 - Rue des Palais 44, bte 33 + info@openroad.be + (+32) 2 123 456 + Rue du flash 50 default From acfad85353ce4fc4acc50611d714044d2114bef1 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 28 Aug 2009 18:26:26 +0200 Subject: [PATCH 28/31] [IMP] update translations bzr revid: christophe@tinyerp.com-20090828162626-bx1vbht9efyo8lez --- addons/account/i18n/account.pot | 21 +- addons/account/i18n/ar_AR.po | 21 +- addons/account/i18n/bg_BG.po | 25 +- addons/account/i18n/bs_BS.po | 21 +- addons/account/i18n/ca_ES.po | 25 +- addons/account/i18n/cs_CZ.po | 25 +- addons/account/i18n/de_DE.po | 25 +- addons/account/i18n/es_AR.po | 23 +- addons/account/i18n/es_ES.po | 25 +- addons/account/i18n/et_EE.po | 37 +- addons/account/i18n/fi_FI.po | 21 +- addons/account/i18n/fr_FR.po | 289 +++---- addons/account/i18n/hr_HR.po | 21 +- addons/account/i18n/hu_HU.po | 21 +- addons/account/i18n/id_ID.po | 23 +- addons/account/i18n/it_IT.po | 25 +- addons/account/i18n/kab_KAB.po | 2 +- addons/account/i18n/ko_KO.po | 2 +- addons/account/i18n/lt_LT.po | 21 +- addons/account/i18n/nl_BE.po | 21 +- addons/account/i18n/nl_NL.po | 25 +- addons/account/i18n/pl_PL.po | 21 +- addons/account/i18n/pt_BR.po | 23 +- addons/account/i18n/pt_PT.po | 25 +- addons/account/i18n/ro_RO.po | 21 +- addons/account/i18n/ru_RU.po | 27 +- addons/account/i18n/si_SI.po | 2 +- addons/account/i18n/sl_SL.po | 25 +- addons/account/i18n/{sv_SV.po => sq_AL.po} | 99 +-- addons/account/i18n/sv_SE.po | 21 +- addons/account/i18n/tr_TR.po | 21 +- addons/account/i18n/{uk_UK.po => uk_UA.po} | 25 +- addons/account/i18n/{cs_CS.po => vi_VN.po} | 71 +- addons/account/i18n/zh_CN.po | 21 +- addons/account/i18n/zh_TW.po | 21 +- .../i18n/account_analytic_analysis.pot | 6 +- .../account_analytic_analysis/i18n/ar_AR.po | 6 +- .../account_analytic_analysis/i18n/bg_BG.po | 6 +- .../account_analytic_analysis/i18n/bs_BS.po | 6 +- .../account_analytic_analysis/i18n/ca_ES.po | 6 +- .../account_analytic_analysis/i18n/cs_CZ.po | 6 +- .../account_analytic_analysis/i18n/de_DE.po | 6 +- .../account_analytic_analysis/i18n/es_AR.po | 6 +- .../account_analytic_analysis/i18n/es_ES.po | 6 +- .../account_analytic_analysis/i18n/et_EE.po | 6 +- .../account_analytic_analysis/i18n/fi_FI.po | 6 +- .../account_analytic_analysis/i18n/fr_FR.po | 8 +- .../account_analytic_analysis/i18n/hr_HR.po | 6 +- .../account_analytic_analysis/i18n/hu_HU.po | 6 +- .../account_analytic_analysis/i18n/id_ID.po | 6 +- .../account_analytic_analysis/i18n/it_IT.po | 6 +- .../account_analytic_analysis/i18n/ko_KO.po | 2 +- .../account_analytic_analysis/i18n/lt_LT.po | 6 +- .../account_analytic_analysis/i18n/nl_BE.po | 6 +- .../account_analytic_analysis/i18n/nl_NL.po | 6 +- .../account_analytic_analysis/i18n/pl_PL.po | 6 +- .../account_analytic_analysis/i18n/pt_BR.po | 6 +- .../account_analytic_analysis/i18n/pt_PT.po | 6 +- .../account_analytic_analysis/i18n/ro_RO.po | 6 +- .../account_analytic_analysis/i18n/ru_RU.po | 6 +- .../account_analytic_analysis/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- .../account_analytic_analysis/i18n/sv_SE.po | 6 +- .../account_analytic_analysis/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- .../account_analytic_analysis/i18n/zh_CN.po | 6 +- .../account_analytic_analysis/i18n/zh_TW.po | 6 +- .../i18n/account_analytic_default.pot | 6 +- addons/account_analytic_default/i18n/ar_AR.po | 6 +- addons/account_analytic_default/i18n/bg_BG.po | 6 +- addons/account_analytic_default/i18n/bs_BS.po | 6 +- addons/account_analytic_default/i18n/ca_ES.po | 6 +- addons/account_analytic_default/i18n/cs_CZ.po | 6 +- addons/account_analytic_default/i18n/de_DE.po | 6 +- addons/account_analytic_default/i18n/es_AR.po | 6 +- addons/account_analytic_default/i18n/es_ES.po | 6 +- addons/account_analytic_default/i18n/et_EE.po | 6 +- addons/account_analytic_default/i18n/fi_FI.po | 6 +- addons/account_analytic_default/i18n/fr_FR.po | 10 +- addons/account_analytic_default/i18n/hr_HR.po | 6 +- addons/account_analytic_default/i18n/hu_HU.po | 6 +- addons/account_analytic_default/i18n/id_ID.po | 6 +- addons/account_analytic_default/i18n/it_IT.po | 6 +- addons/account_analytic_default/i18n/lt_LT.po | 6 +- addons/account_analytic_default/i18n/nl_BE.po | 6 +- addons/account_analytic_default/i18n/nl_NL.po | 6 +- addons/account_analytic_default/i18n/pl_PL.po | 6 +- addons/account_analytic_default/i18n/pt_BR.po | 6 +- addons/account_analytic_default/i18n/pt_PT.po | 6 +- addons/account_analytic_default/i18n/ro_RO.po | 6 +- addons/account_analytic_default/i18n/ru_RU.po | 6 +- addons/account_analytic_default/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/account_analytic_default/i18n/sv_SE.po | 6 +- addons/account_analytic_default/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 10 +- addons/account_analytic_default/i18n/zh_CN.po | 6 +- addons/account_analytic_default/i18n/zh_TW.po | 6 +- .../i18n/account_analytic_plans.pot | 6 +- addons/account_analytic_plans/i18n/ar_AR.po | 6 +- addons/account_analytic_plans/i18n/bg_BG.po | 6 +- addons/account_analytic_plans/i18n/bs_BS.po | 6 +- addons/account_analytic_plans/i18n/ca_ES.po | 6 +- addons/account_analytic_plans/i18n/cs_CZ.po | 6 +- addons/account_analytic_plans/i18n/de_DE.po | 6 +- addons/account_analytic_plans/i18n/es_AR.po | 6 +- addons/account_analytic_plans/i18n/es_ES.po | 6 +- addons/account_analytic_plans/i18n/et_EE.po | 6 +- addons/account_analytic_plans/i18n/fi_FI.po | 6 +- addons/account_analytic_plans/i18n/fr_FR.po | 8 +- addons/account_analytic_plans/i18n/hr_HR.po | 6 +- addons/account_analytic_plans/i18n/hu_HU.po | 6 +- addons/account_analytic_plans/i18n/id_ID.po | 6 +- addons/account_analytic_plans/i18n/it_IT.po | 6 +- addons/account_analytic_plans/i18n/lt_LT.po | 6 +- addons/account_analytic_plans/i18n/nl_BE.po | 6 +- addons/account_analytic_plans/i18n/nl_NL.po | 6 +- addons/account_analytic_plans/i18n/pl_PL.po | 6 +- addons/account_analytic_plans/i18n/pt_BR.po | 6 +- addons/account_analytic_plans/i18n/pt_PT.po | 6 +- addons/account_analytic_plans/i18n/ro_RO.po | 6 +- addons/account_analytic_plans/i18n/ru_RU.po | 6 +- addons/account_analytic_plans/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/account_analytic_plans/i18n/sv_SE.po | 6 +- addons/account_analytic_plans/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/account_analytic_plans/i18n/zh_CN.po | 6 +- addons/account_analytic_plans/i18n/zh_TW.po | 6 +- .../account_balance/i18n/account_balance.pot | 6 +- addons/account_balance/i18n/ar_AR.po | 6 +- addons/account_balance/i18n/bg_BG.po | 6 +- addons/account_balance/i18n/bs_BS.po | 6 +- addons/account_balance/i18n/ca_ES.po | 6 +- addons/account_balance/i18n/cs_CZ.po | 6 +- addons/account_balance/i18n/de_DE.po | 6 +- addons/account_balance/i18n/es_AR.po | 6 +- addons/account_balance/i18n/es_ES.po | 6 +- addons/account_balance/i18n/et_EE.po | 6 +- addons/account_balance/i18n/fi_FI.po | 6 +- addons/account_balance/i18n/fr_FR.po | 6 +- addons/account_balance/i18n/hr_HR.po | 6 +- addons/account_balance/i18n/hu_HU.po | 6 +- addons/account_balance/i18n/id_ID.po | 6 +- addons/account_balance/i18n/it_IT.po | 6 +- addons/account_balance/i18n/lt_LT.po | 6 +- addons/account_balance/i18n/nl_BE.po | 6 +- addons/account_balance/i18n/nl_NL.po | 6 +- addons/account_balance/i18n/pl_PL.po | 6 +- addons/account_balance/i18n/pt_BR.po | 6 +- addons/account_balance/i18n/pt_PT.po | 6 +- addons/account_balance/i18n/ro_RO.po | 6 +- addons/account_balance/i18n/ru_RU.po | 6 +- addons/account_balance/i18n/sl_SL.po | 6 +- .../i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/account_balance/i18n/sv_SE.po | 6 +- addons/account_balance/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/account_balance/i18n/zh_CN.po | 6 +- addons/account_balance/i18n/zh_TW.po | 6 +- addons/account_budget/i18n/account_budget.pot | 6 +- addons/account_budget/i18n/ar_AR.po | 6 +- addons/account_budget/i18n/bg_BG.po | 6 +- addons/account_budget/i18n/bs_BS.po | 6 +- addons/account_budget/i18n/ca_ES.po | 6 +- addons/account_budget/i18n/cs_CZ.po | 6 +- addons/account_budget/i18n/de_DE.po | 6 +- addons/account_budget/i18n/es_AR.po | 6 +- addons/account_budget/i18n/es_ES.po | 6 +- addons/account_budget/i18n/et_EE.po | 6 +- addons/account_budget/i18n/fi_FI.po | 6 +- addons/account_budget/i18n/fr_FR.po | 8 +- addons/account_budget/i18n/hr_HR.po | 6 +- addons/account_budget/i18n/hu_HU.po | 6 +- addons/account_budget/i18n/id_ID.po | 6 +- addons/account_budget/i18n/it_IT.po | 6 +- addons/account_budget/i18n/lt_LT.po | 6 +- addons/account_budget/i18n/nl_BE.po | 6 +- addons/account_budget/i18n/nl_NL.po | 6 +- addons/account_budget/i18n/pl_PL.po | 6 +- addons/account_budget/i18n/pt_BR.po | 6 +- addons/account_budget/i18n/pt_PT.po | 6 +- addons/account_budget/i18n/ro_RO.po | 6 +- addons/account_budget/i18n/ru_RU.po | 6 +- addons/account_budget/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 8 +- addons/account_budget/i18n/sv_SE.po | 6 +- addons/account_budget/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 14 +- addons/account_budget/i18n/zh_CN.po | 6 +- addons/account_budget/i18n/zh_TW.po | 6 +- addons/account_chart/i18n/account_chart.pot | 6 +- addons/account_chart/i18n/ar_AR.po | 6 +- addons/account_chart/i18n/bg_BG.po | 6 +- addons/account_chart/i18n/bs_BS.po | 6 +- addons/account_chart/i18n/ca_ES.po | 6 +- addons/account_chart/i18n/cs_CZ.po | 6 +- addons/account_chart/i18n/de_DE.po | 6 +- addons/account_chart/i18n/es_AR.po | 6 +- addons/account_chart/i18n/es_ES.po | 6 +- addons/account_chart/i18n/et_EE.po | 6 +- addons/account_chart/i18n/fi_FI.po | 6 +- addons/account_chart/i18n/fr_FR.po | 6 +- addons/account_chart/i18n/hr_HR.po | 6 +- addons/account_chart/i18n/hu_HU.po | 6 +- addons/account_chart/i18n/id_ID.po | 6 +- addons/account_chart/i18n/it_IT.po | 6 +- addons/account_chart/i18n/lt_LT.po | 6 +- addons/account_chart/i18n/nl_BE.po | 6 +- addons/account_chart/i18n/nl_NL.po | 6 +- addons/account_chart/i18n/pl_PL.po | 6 +- addons/account_chart/i18n/pt_BR.po | 6 +- addons/account_chart/i18n/pt_PT.po | 6 +- addons/account_chart/i18n/ro_RO.po | 6 +- addons/account_chart/i18n/ru_RU.po | 6 +- addons/account_chart/i18n/sl_SL.po | 6 +- .../account_chart/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/account_chart/i18n/sv_SE.po | 6 +- addons/account_chart/i18n/tr_TR.po | 6 +- .../account_chart/i18n/{sv_SV.po => uk_UA.po} | 6 +- .../account_chart/i18n/{uk_UK.po => vi_VN.po} | 6 +- addons/account_chart/i18n/zh_CN.po | 6 +- addons/account_chart/i18n/zh_TW.po | 6 +- .../i18n/account_date_check.pot | 6 +- addons/account_date_check/i18n/ar_AR.po | 6 +- addons/account_date_check/i18n/bg_BG.po | 6 +- addons/account_date_check/i18n/bs_BS.po | 6 +- addons/account_date_check/i18n/ca_ES.po | 6 +- addons/account_date_check/i18n/cs_CZ.po | 6 +- addons/account_date_check/i18n/de_DE.po | 6 +- addons/account_date_check/i18n/es_AR.po | 6 +- addons/account_date_check/i18n/es_ES.po | 6 +- addons/account_date_check/i18n/et_EE.po | 6 +- addons/account_date_check/i18n/fi_FI.po | 6 +- addons/account_date_check/i18n/fr_FR.po | 6 +- addons/account_date_check/i18n/hr_HR.po | 6 +- addons/account_date_check/i18n/hu_HU.po | 6 +- addons/account_date_check/i18n/id_ID.po | 6 +- addons/account_date_check/i18n/it_IT.po | 6 +- addons/account_date_check/i18n/lt_LT.po | 6 +- addons/account_date_check/i18n/nl_BE.po | 6 +- addons/account_date_check/i18n/nl_NL.po | 6 +- addons/account_date_check/i18n/pl_PL.po | 6 +- addons/account_date_check/i18n/pt_BR.po | 6 +- addons/account_date_check/i18n/pt_PT.po | 6 +- addons/account_date_check/i18n/ro_RO.po | 6 +- addons/account_date_check/i18n/ru_RU.po | 6 +- addons/account_date_check/i18n/sl_SL.po | 6 +- .../i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/account_date_check/i18n/sv_SE.po | 6 +- addons/account_date_check/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/account_date_check/i18n/zh_CN.po | 6 +- addons/account_date_check/i18n/zh_TW.po | 6 +- .../i18n/account_followup.pot | 6 +- addons/account_followup/i18n/ar_AR.po | 6 +- addons/account_followup/i18n/bg_BG.po | 6 +- addons/account_followup/i18n/bs_BS.po | 6 +- addons/account_followup/i18n/ca_ES.po | 6 +- addons/account_followup/i18n/cs_CZ.po | 6 +- addons/account_followup/i18n/de_DE.po | 6 +- addons/account_followup/i18n/es_AR.po | 6 +- addons/account_followup/i18n/es_ES.po | 6 +- addons/account_followup/i18n/et_EE.po | 6 +- addons/account_followup/i18n/fi_FI.po | 6 +- addons/account_followup/i18n/fr_FR.po | 8 +- addons/account_followup/i18n/hr_HR.po | 6 +- addons/account_followup/i18n/hu_HU.po | 6 +- addons/account_followup/i18n/id_ID.po | 6 +- addons/account_followup/i18n/it_IT.po | 6 +- addons/account_followup/i18n/lt_LT.po | 6 +- addons/account_followup/i18n/nl_BE.po | 6 +- addons/account_followup/i18n/nl_NL.po | 6 +- addons/account_followup/i18n/pl_PL.po | 6 +- addons/account_followup/i18n/pt_BR.po | 6 +- addons/account_followup/i18n/pt_PT.po | 6 +- addons/account_followup/i18n/ro_RO.po | 6 +- addons/account_followup/i18n/ru_RU.po | 6 +- addons/account_followup/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/account_followup/i18n/sv_SE.po | 6 +- addons/account_followup/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/account_followup/i18n/zh_CN.po | 6 +- addons/account_followup/i18n/zh_TW.po | 6 +- .../i18n/account_invoice_layout.pot | 18 +- addons/account_invoice_layout/i18n/ar_AR.po | 18 +- addons/account_invoice_layout/i18n/bg_BG.po | 20 +- addons/account_invoice_layout/i18n/bs_BS.po | 18 +- addons/account_invoice_layout/i18n/ca_ES.po | 20 +- addons/account_invoice_layout/i18n/cs_CZ.po | 18 +- addons/account_invoice_layout/i18n/de_DE.po | 20 +- addons/account_invoice_layout/i18n/es_AR.po | 18 +- addons/account_invoice_layout/i18n/es_ES.po | 20 +- addons/account_invoice_layout/i18n/et_EE.po | 20 +- addons/account_invoice_layout/i18n/fi_FI.po | 18 +- addons/account_invoice_layout/i18n/fr_FR.po | 22 +- addons/account_invoice_layout/i18n/hr_HR.po | 18 +- addons/account_invoice_layout/i18n/hu_HU.po | 18 +- addons/account_invoice_layout/i18n/id_ID.po | 20 +- addons/account_invoice_layout/i18n/it_IT.po | 20 +- addons/account_invoice_layout/i18n/iu_IU.po | 2 +- addons/account_invoice_layout/i18n/lt_LT.po | 18 +- addons/account_invoice_layout/i18n/nb_NB.po | 2 +- addons/account_invoice_layout/i18n/nl_BE.po | 18 +- addons/account_invoice_layout/i18n/nl_NL.po | 20 +- addons/account_invoice_layout/i18n/pl_PL.po | 18 +- addons/account_invoice_layout/i18n/pt_BR.po | 18 +- addons/account_invoice_layout/i18n/pt_PT.po | 20 +- addons/account_invoice_layout/i18n/ro_RO.po | 18 +- addons/account_invoice_layout/i18n/ru_RU.po | 20 +- addons/account_invoice_layout/i18n/sl_SL.po | 18 +- .../i18n/{cs_CS.po => sq_AL.po} | 18 +- addons/account_invoice_layout/i18n/sv_SE.po | 18 +- addons/account_invoice_layout/i18n/tr_TR.po | 18 +- .../i18n/{uk_UK.po => uk_UA.po} | 20 +- .../i18n/{sv_SV.po => vi_VN.po} | 20 +- addons/account_invoice_layout/i18n/zh_CN.po | 18 +- addons/account_invoice_layout/i18n/zh_TW.po | 18 +- .../account_payment/i18n/account_payment.pot | 6 +- addons/account_payment/i18n/ar_AR.po | 6 +- addons/account_payment/i18n/bg_BG.po | 6 +- addons/account_payment/i18n/bs_BS.po | 6 +- addons/account_payment/i18n/ca_ES.po | 6 +- addons/account_payment/i18n/cs_CZ.po | 6 +- addons/account_payment/i18n/de_DE.po | 6 +- addons/account_payment/i18n/es_AR.po | 6 +- addons/account_payment/i18n/es_ES.po | 6 +- addons/account_payment/i18n/et_EE.po | 6 +- addons/account_payment/i18n/fi_FI.po | 6 +- addons/account_payment/i18n/fr_FR.po | 8 +- addons/account_payment/i18n/hr_HR.po | 6 +- addons/account_payment/i18n/hu_HU.po | 6 +- addons/account_payment/i18n/id_ID.po | 6 +- addons/account_payment/i18n/it_IT.po | 6 +- addons/account_payment/i18n/lt_LT.po | 6 +- addons/account_payment/i18n/nl_BE.po | 6 +- addons/account_payment/i18n/nl_NL.po | 6 +- addons/account_payment/i18n/pl_PL.po | 6 +- addons/account_payment/i18n/pt_BR.po | 6 +- addons/account_payment/i18n/pt_PT.po | 6 +- addons/account_payment/i18n/ro_RO.po | 6 +- addons/account_payment/i18n/ru_RU.po | 6 +- addons/account_payment/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/account_payment/i18n/sv_SE.po | 6 +- addons/account_payment/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/account_payment/i18n/zh_CN.po | 6 +- addons/account_payment/i18n/zh_TW.po | 6 +- addons/account_report/i18n/account_report.pot | 6 +- addons/account_report/i18n/ar_AR.po | 6 +- addons/account_report/i18n/bg_BG.po | 6 +- addons/account_report/i18n/bs_BS.po | 6 +- addons/account_report/i18n/ca_ES.po | 6 +- addons/account_report/i18n/cs_CZ.po | 6 +- addons/account_report/i18n/de_DE.po | 6 +- addons/account_report/i18n/es_AR.po | 6 +- addons/account_report/i18n/es_ES.po | 6 +- addons/account_report/i18n/et_EE.po | 6 +- addons/account_report/i18n/fi_FI.po | 6 +- addons/account_report/i18n/fr_FR.po | 8 +- addons/account_report/i18n/hr_HR.po | 6 +- addons/account_report/i18n/hu_HU.po | 6 +- addons/account_report/i18n/id_ID.po | 6 +- addons/account_report/i18n/it_IT.po | 6 +- addons/account_report/i18n/lt_LT.po | 6 +- addons/account_report/i18n/nl_BE.po | 6 +- addons/account_report/i18n/nl_NL.po | 6 +- addons/account_report/i18n/pl_PL.po | 6 +- addons/account_report/i18n/pt_BR.po | 6 +- addons/account_report/i18n/pt_PT.po | 6 +- addons/account_report/i18n/ro_RO.po | 6 +- addons/account_report/i18n/ru_RU.po | 6 +- addons/account_report/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/account_report/i18n/sv_SE.po | 6 +- addons/account_report/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/account_report/i18n/zh_CN.po | 6 +- addons/account_report/i18n/zh_TW.po | 6 +- .../i18n/account_reporting.pot | 6 +- addons/account_reporting/i18n/ar_AR.po | 6 +- addons/account_reporting/i18n/bg_BG.po | 6 +- addons/account_reporting/i18n/bs_BS.po | 6 +- addons/account_reporting/i18n/ca_ES.po | 6 +- addons/account_reporting/i18n/cs_CZ.po | 6 +- addons/account_reporting/i18n/de_DE.po | 6 +- addons/account_reporting/i18n/es_AR.po | 6 +- addons/account_reporting/i18n/es_ES.po | 6 +- addons/account_reporting/i18n/et_EE.po | 6 +- addons/account_reporting/i18n/fi_FI.po | 6 +- addons/account_reporting/i18n/fr_FR.po | 8 +- addons/account_reporting/i18n/hr_HR.po | 6 +- addons/account_reporting/i18n/hu_HU.po | 6 +- addons/account_reporting/i18n/id_ID.po | 6 +- addons/account_reporting/i18n/it_IT.po | 6 +- addons/account_reporting/i18n/lt_LT.po | 6 +- addons/account_reporting/i18n/nl_BE.po | 6 +- addons/account_reporting/i18n/nl_NL.po | 6 +- addons/account_reporting/i18n/pl_PL.po | 6 +- addons/account_reporting/i18n/pt_BR.po | 6 +- addons/account_reporting/i18n/pt_PT.po | 6 +- addons/account_reporting/i18n/ro_RO.po | 6 +- addons/account_reporting/i18n/ru_RU.po | 6 +- addons/account_reporting/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/account_reporting/i18n/sv_SE.po | 6 +- addons/account_reporting/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/account_reporting/i18n/zh_CN.po | 6 +- addons/account_reporting/i18n/zh_TW.po | 6 +- .../i18n/account_tax_include.pot | 6 +- addons/account_tax_include/i18n/ar_AR.po | 6 +- addons/account_tax_include/i18n/bg_BG.po | 6 +- addons/account_tax_include/i18n/bs_BS.po | 6 +- addons/account_tax_include/i18n/ca_ES.po | 6 +- addons/account_tax_include/i18n/cs_CZ.po | 6 +- addons/account_tax_include/i18n/de_DE.po | 6 +- addons/account_tax_include/i18n/es_AR.po | 6 +- addons/account_tax_include/i18n/es_ES.po | 6 +- addons/account_tax_include/i18n/et_EE.po | 6 +- addons/account_tax_include/i18n/fi_FI.po | 6 +- addons/account_tax_include/i18n/fr_FR.po | 6 +- addons/account_tax_include/i18n/hr_HR.po | 6 +- addons/account_tax_include/i18n/hu_HU.po | 6 +- addons/account_tax_include/i18n/id_ID.po | 6 +- addons/account_tax_include/i18n/it_IT.po | 6 +- addons/account_tax_include/i18n/lt_LT.po | 6 +- addons/account_tax_include/i18n/nl_BE.po | 6 +- addons/account_tax_include/i18n/nl_NL.po | 6 +- addons/account_tax_include/i18n/pl_PL.po | 6 +- addons/account_tax_include/i18n/pt_BR.po | 6 +- addons/account_tax_include/i18n/pt_PT.po | 6 +- addons/account_tax_include/i18n/ro_RO.po | 6 +- addons/account_tax_include/i18n/ru_RU.po | 6 +- addons/account_tax_include/i18n/sl_SL.po | 6 +- .../i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/account_tax_include/i18n/sv_SE.po | 6 +- addons/account_tax_include/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/account_tax_include/i18n/zh_CN.po | 6 +- addons/account_tax_include/i18n/zh_TW.po | 6 +- .../account_voucher/i18n/account_voucher.pot | 6 +- addons/account_voucher/i18n/ar_AR.po | 6 +- addons/account_voucher/i18n/bg_BG.po | 6 +- addons/account_voucher/i18n/bs_BS.po | 6 +- addons/account_voucher/i18n/ca_ES.po | 6 +- addons/account_voucher/i18n/cs_CZ.po | 6 +- addons/account_voucher/i18n/de_DE.po | 6 +- addons/account_voucher/i18n/es_AR.po | 6 +- addons/account_voucher/i18n/es_ES.po | 6 +- addons/account_voucher/i18n/et_EE.po | 6 +- addons/account_voucher/i18n/fi_FI.po | 6 +- addons/account_voucher/i18n/fr_FR.po | 24 +- addons/account_voucher/i18n/hr_HR.po | 6 +- addons/account_voucher/i18n/hu_HU.po | 6 +- addons/account_voucher/i18n/id_ID.po | 6 +- addons/account_voucher/i18n/it_IT.po | 6 +- addons/account_voucher/i18n/lt_LT.po | 6 +- addons/account_voucher/i18n/nl_BE.po | 6 +- addons/account_voucher/i18n/nl_NL.po | 6 +- addons/account_voucher/i18n/pl_PL.po | 6 +- addons/account_voucher/i18n/pt_BR.po | 6 +- addons/account_voucher/i18n/pt_PT.po | 6 +- addons/account_voucher/i18n/ro_RO.po | 6 +- addons/account_voucher/i18n/ru_RU.po | 6 +- addons/account_voucher/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/account_voucher/i18n/sv_SE.po | 6 +- addons/account_voucher/i18n/tlh_TLH.po | 2 +- addons/account_voucher/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/account_voucher/i18n/zh_CN.po | 6 +- addons/account_voucher/i18n/zh_TW.po | 6 +- .../i18n/analytic_journal_billing_rate.pot | 6 +- .../i18n/ar_AR.po | 6 +- .../i18n/bg_BG.po | 6 +- .../i18n/bs_BS.po | 6 +- .../i18n/ca_ES.po | 6 +- .../i18n/cs_CZ.po | 6 +- .../i18n/de_DE.po | 6 +- .../i18n/es_AR.po | 6 +- .../i18n/es_ES.po | 6 +- .../i18n/et_EE.po | 6 +- .../i18n/fi_FI.po | 6 +- .../i18n/fr_FR.po | 6 +- .../i18n/hr_HR.po | 6 +- .../i18n/hu_HU.po | 6 +- .../i18n/id_ID.po | 6 +- .../i18n/it_IT.po | 6 +- .../i18n/lt_LT.po | 6 +- .../i18n/nl_BE.po | 6 +- .../i18n/nl_NL.po | 6 +- .../i18n/pl_PL.po | 6 +- .../i18n/pt_BR.po | 6 +- .../i18n/pt_PT.po | 6 +- .../i18n/ro_RO.po | 6 +- .../i18n/ru_RU.po | 6 +- .../i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- .../i18n/sv_SE.po | 6 +- .../i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- .../i18n/zh_CN.po | 6 +- .../i18n/zh_TW.po | 6 +- .../i18n/analytic_user_function.pot | 6 +- addons/analytic_user_function/i18n/ar_AR.po | 6 +- addons/analytic_user_function/i18n/bg_BG.po | 6 +- addons/analytic_user_function/i18n/bs_BS.po | 6 +- addons/analytic_user_function/i18n/ca_ES.po | 6 +- addons/analytic_user_function/i18n/cs_CZ.po | 6 +- addons/analytic_user_function/i18n/de_DE.po | 6 +- addons/analytic_user_function/i18n/es_AR.po | 6 +- addons/analytic_user_function/i18n/es_ES.po | 6 +- addons/analytic_user_function/i18n/et_EE.po | 6 +- addons/analytic_user_function/i18n/fi_FI.po | 6 +- addons/analytic_user_function/i18n/fr_FR.po | 6 +- addons/analytic_user_function/i18n/hr_HR.po | 6 +- addons/analytic_user_function/i18n/hu_HU.po | 6 +- addons/analytic_user_function/i18n/id_ID.po | 6 +- addons/analytic_user_function/i18n/it_IT.po | 6 +- addons/analytic_user_function/i18n/lt_LT.po | 6 +- addons/analytic_user_function/i18n/nl_BE.po | 6 +- addons/analytic_user_function/i18n/nl_NL.po | 6 +- addons/analytic_user_function/i18n/pl_PL.po | 6 +- addons/analytic_user_function/i18n/pt_BR.po | 6 +- addons/analytic_user_function/i18n/pt_PT.po | 6 +- addons/analytic_user_function/i18n/ro_RO.po | 6 +- addons/analytic_user_function/i18n/ru_RU.po | 6 +- addons/analytic_user_function/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/analytic_user_function/i18n/sv_SE.po | 6 +- addons/analytic_user_function/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/analytic_user_function/i18n/zh_CN.po | 6 +- addons/analytic_user_function/i18n/zh_TW.po | 6 +- addons/auction/i18n/ar_AR.po | 11 +- addons/auction/i18n/auction.pot | 11 +- addons/auction/i18n/bg_BG.po | 11 +- addons/auction/i18n/bs_BS.po | 11 +- addons/auction/i18n/ca_ES.po | 11 +- addons/auction/i18n/cs_CZ.po | 11 +- addons/auction/i18n/de_DE.po | 11 +- addons/auction/i18n/es_AR.po | 11 +- addons/auction/i18n/es_ES.po | 11 +- addons/auction/i18n/et_EE.po | 11 +- addons/auction/i18n/fi_FI.po | 11 +- addons/auction/i18n/fr_FR.po | 17 +- addons/auction/i18n/hr_HR.po | 11 +- addons/auction/i18n/hu_HU.po | 11 +- addons/auction/i18n/id_ID.po | 11 +- addons/auction/i18n/it_IT.po | 11 +- addons/auction/i18n/lt_LT.po | 11 +- addons/auction/i18n/nl_BE.po | 11 +- addons/auction/i18n/nl_NL.po | 11 +- addons/auction/i18n/pl_PL.po | 11 +- addons/auction/i18n/pt_BR.po | 11 +- addons/auction/i18n/pt_PT.po | 11 +- addons/auction/i18n/ro_RO.po | 11 +- addons/auction/i18n/ru_RU.po | 11 +- addons/auction/i18n/sl_SL.po | 11 +- addons/auction/i18n/{cs_CS.po => sq_AL.po} | 13 +- addons/auction/i18n/sv_SE.po | 11 +- addons/auction/i18n/tr_TR.po | 11 +- addons/auction/i18n/{uk_UK.po => uk_UA.po} | 11 +- addons/auction/i18n/{sv_SV.po => vi_VN.po} | 15 +- addons/auction/i18n/zh_CN.po | 11 +- addons/auction/i18n/zh_TW.po | 11 +- addons/audittrail/i18n/ar_AR.po | 6 +- addons/audittrail/i18n/audittrail.pot | 6 +- addons/audittrail/i18n/bg_BG.po | 6 +- addons/audittrail/i18n/bs_BS.po | 6 +- addons/audittrail/i18n/ca_ES.po | 6 +- addons/audittrail/i18n/cs_CZ.po | 6 +- addons/audittrail/i18n/de_DE.po | 6 +- addons/audittrail/i18n/es_AR.po | 6 +- addons/audittrail/i18n/es_ES.po | 6 +- addons/audittrail/i18n/et_EE.po | 6 +- addons/audittrail/i18n/fi_FI.po | 6 +- addons/audittrail/i18n/fr_FR.po | 8 +- addons/audittrail/i18n/hr_HR.po | 6 +- addons/audittrail/i18n/hu_HU.po | 6 +- addons/audittrail/i18n/id_ID.po | 6 +- addons/audittrail/i18n/it_IT.po | 6 +- addons/audittrail/i18n/lt_LT.po | 6 +- addons/audittrail/i18n/nl_BE.po | 6 +- addons/audittrail/i18n/nl_NL.po | 6 +- addons/audittrail/i18n/pl_PL.po | 6 +- addons/audittrail/i18n/pt_BR.po | 6 +- addons/audittrail/i18n/pt_PT.po | 6 +- addons/audittrail/i18n/ro_RO.po | 6 +- addons/audittrail/i18n/ru_RU.po | 6 +- addons/audittrail/i18n/sl_SL.po | 6 +- addons/audittrail/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/audittrail/i18n/sv_SE.po | 6 +- addons/audittrail/i18n/tr_TR.po | 6 +- addons/audittrail/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/audittrail/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/audittrail/i18n/zh_CN.po | 6 +- addons/audittrail/i18n/zh_TW.po | 6 +- addons/base_contact/i18n/ar_AR.po | 6 +- addons/base_contact/i18n/base_contact.pot | 6 +- addons/base_contact/i18n/bg_BG.po | 6 +- addons/base_contact/i18n/bs_BS.po | 6 +- addons/base_contact/i18n/ca_ES.po | 6 +- addons/base_contact/i18n/cs_CZ.po | 6 +- addons/base_contact/i18n/de_DE.po | 6 +- addons/base_contact/i18n/es_AR.po | 6 +- addons/base_contact/i18n/es_ES.po | 6 +- addons/base_contact/i18n/et_EE.po | 6 +- addons/base_contact/i18n/fi_FI.po | 6 +- addons/base_contact/i18n/fr_FR.po | 24 +- addons/base_contact/i18n/hr_HR.po | 8 +- addons/base_contact/i18n/hu_HU.po | 6 +- addons/base_contact/i18n/id_ID.po | 6 +- addons/base_contact/i18n/it_IT.po | 6 +- addons/base_contact/i18n/lt_LT.po | 8 +- addons/base_contact/i18n/nl_BE.po | 6 +- addons/base_contact/i18n/nl_NL.po | 6 +- addons/base_contact/i18n/pl_PL.po | 6 +- addons/base_contact/i18n/pt_BR.po | 6 +- addons/base_contact/i18n/pt_PT.po | 16 +- addons/base_contact/i18n/ro_RO.po | 6 +- addons/base_contact/i18n/ru_RU.po | 6 +- addons/base_contact/i18n/sl_SL.po | 6 +- .../base_contact/i18n/{cs_CS.po => sq_AL.po} | 10 +- addons/base_contact/i18n/sv_SE.po | 6 +- addons/base_contact/i18n/tr_TR.po | 6 +- .../base_contact/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../base_contact/i18n/{sv_SV.po => vi_VN.po} | 10 +- addons/base_contact/i18n/zh_CN.po | 6 +- addons/base_contact/i18n/zh_TW.po | 6 +- addons/base_iban/i18n/ar_AR.po | 6 +- addons/base_iban/i18n/base_iban.pot | 6 +- addons/base_iban/i18n/bg_BG.po | 6 +- addons/base_iban/i18n/bs_BS.po | 6 +- addons/base_iban/i18n/ca_ES.po | 6 +- addons/base_iban/i18n/cs_CZ.po | 6 +- addons/base_iban/i18n/de_DE.po | 6 +- addons/base_iban/i18n/es_AR.po | 6 +- addons/base_iban/i18n/es_ES.po | 6 +- addons/base_iban/i18n/et_EE.po | 6 +- addons/base_iban/i18n/fi_FI.po | 6 +- addons/base_iban/i18n/fr_FR.po | 6 +- addons/base_iban/i18n/hr_HR.po | 6 +- addons/base_iban/i18n/hu_HU.po | 6 +- addons/base_iban/i18n/id_ID.po | 6 +- addons/base_iban/i18n/it_IT.po | 6 +- addons/base_iban/i18n/lt_LT.po | 6 +- addons/base_iban/i18n/nl_BE.po | 6 +- addons/base_iban/i18n/nl_NL.po | 6 +- addons/base_iban/i18n/pl_PL.po | 6 +- addons/base_iban/i18n/pt_BR.po | 6 +- addons/base_iban/i18n/pt_PT.po | 6 +- addons/base_iban/i18n/ro_RO.po | 6 +- addons/base_iban/i18n/ru_RU.po | 6 +- addons/base_iban/i18n/sl_SL.po | 6 +- addons/base_iban/i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/base_iban/i18n/sv_SE.po | 6 +- addons/base_iban/i18n/tr_TR.po | 6 +- addons/base_iban/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/base_iban/i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/base_iban/i18n/zh_CN.po | 6 +- addons/base_iban/i18n/zh_TW.po | 6 +- addons/base_module_merge/i18n/ar_AR.po | 6 +- .../i18n/base_module_merge.pot | 6 +- addons/base_module_merge/i18n/bg_BG.po | 6 +- addons/base_module_merge/i18n/bs_BS.po | 6 +- addons/base_module_merge/i18n/ca_ES.po | 6 +- addons/base_module_merge/i18n/cs_CZ.po | 6 +- addons/base_module_merge/i18n/de_DE.po | 6 +- addons/base_module_merge/i18n/es_AR.po | 6 +- addons/base_module_merge/i18n/es_EC.po | 2 +- addons/base_module_merge/i18n/es_ES.po | 6 +- addons/base_module_merge/i18n/et_EE.po | 6 +- addons/base_module_merge/i18n/fi_FI.po | 6 +- addons/base_module_merge/i18n/fr_FR.po | 6 +- addons/base_module_merge/i18n/hr_HR.po | 6 +- addons/base_module_merge/i18n/hu_HU.po | 6 +- addons/base_module_merge/i18n/id_ID.po | 6 +- addons/base_module_merge/i18n/it_IT.po | 6 +- addons/base_module_merge/i18n/lt_LT.po | 6 +- addons/base_module_merge/i18n/nl_BE.po | 6 +- addons/base_module_merge/i18n/nl_NL.po | 6 +- addons/base_module_merge/i18n/pl_PL.po | 6 +- addons/base_module_merge/i18n/pt_BR.po | 6 +- addons/base_module_merge/i18n/pt_PT.po | 6 +- addons/base_module_merge/i18n/ro_RO.po | 6 +- addons/base_module_merge/i18n/ru_RU.po | 6 +- addons/base_module_merge/i18n/sl_SL.po | 6 +- .../i18n/{uk_UK.po => sq_AL.po} | 6 +- addons/base_module_merge/i18n/sv_SE.po | 6 +- addons/base_module_merge/i18n/tr_TR.po | 6 +- .../i18n/{sv_SV.po => uk_UA.po} | 6 +- .../i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/base_module_merge/i18n/zh_CN.po | 6 +- addons/base_module_merge/i18n/zh_TW.po | 6 +- addons/base_module_publish/i18n/ar_AR.po | 6 +- .../i18n/base_module_publish.pot | 6 +- addons/base_module_publish/i18n/bg_BG.po | 6 +- addons/base_module_publish/i18n/bs_BS.po | 6 +- addons/base_module_publish/i18n/ca_ES.po | 6 +- addons/base_module_publish/i18n/cs_CZ.po | 6 +- addons/base_module_publish/i18n/de_DE.po | 6 +- addons/base_module_publish/i18n/es_AR.po | 6 +- addons/base_module_publish/i18n/es_ES.po | 6 +- addons/base_module_publish/i18n/et_EE.po | 6 +- addons/base_module_publish/i18n/fi_FI.po | 6 +- addons/base_module_publish/i18n/fr_FR.po | 6 +- addons/base_module_publish/i18n/hr_HR.po | 6 +- addons/base_module_publish/i18n/hu_HU.po | 6 +- addons/base_module_publish/i18n/id_ID.po | 6 +- addons/base_module_publish/i18n/it_IT.po | 6 +- addons/base_module_publish/i18n/lt_LT.po | 6 +- addons/base_module_publish/i18n/nl_BE.po | 6 +- addons/base_module_publish/i18n/nl_NL.po | 6 +- addons/base_module_publish/i18n/pl_PL.po | 6 +- addons/base_module_publish/i18n/pt_BR.po | 6 +- addons/base_module_publish/i18n/pt_PT.po | 6 +- addons/base_module_publish/i18n/ro_RO.po | 6 +- addons/base_module_publish/i18n/ru_RU.po | 6 +- addons/base_module_publish/i18n/sl_SL.po | 6 +- .../i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/base_module_publish/i18n/sv_SE.po | 6 +- addons/base_module_publish/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{cs_CS.po => vi_VN.po} | 74 +- addons/base_module_publish/i18n/zh_CN.po | 6 +- addons/base_module_publish/i18n/zh_TW.po | 6 +- addons/base_module_quality/i18n/ar_AR.po | 151 +++- .../i18n/base_module_quality.pot | 159 +++- addons/base_module_quality/i18n/bg_BG.po | 141 +++- addons/base_module_quality/i18n/bs_BS.po | 139 +++- addons/base_module_quality/i18n/ca_ES.po | 141 +++- addons/base_module_quality/i18n/cs_CZ.po | 151 +++- addons/base_module_quality/i18n/de_DE.po | 151 +++- addons/base_module_quality/i18n/es_AR.po | 151 +++- addons/base_module_quality/i18n/es_ES.po | 141 +++- addons/base_module_quality/i18n/et_EE.po | 151 +++- addons/base_module_quality/i18n/fr_FR.po | 141 +++- addons/base_module_quality/i18n/hr_HR.po | 151 +++- addons/base_module_quality/i18n/hu_HU.po | 151 +++- addons/base_module_quality/i18n/it_IT.po | 141 +++- addons/base_module_quality/i18n/lt_LT.po | 151 +++- addons/base_module_quality/i18n/nl_NL.po | 151 +++- addons/base_module_quality/i18n/pl_PL.po | 141 +++- addons/base_module_quality/i18n/pt_BR.po | 141 +++- addons/base_module_quality/i18n/pt_PT.po | 141 +++- addons/base_module_quality/i18n/ro_RO.po | 151 +++- addons/base_module_quality/i18n/ru_RU.po | 141 +++- addons/base_module_quality/i18n/sl_SL.po | 141 +++- addons/base_module_quality/i18n/sq_AL.po | 175 ++++ addons/base_module_quality/i18n/sv_SE.po | 139 +++- addons/base_module_quality/i18n/tr_TR.po | 139 +++- addons/base_module_quality/i18n/uk_UA.po | 175 ++++ addons/base_module_quality/i18n/uk_UK.po | 74 -- addons/base_module_quality/i18n/vi_VN.po | 175 ++++ addons/base_module_quality/i18n/zh_CN.po | 151 +++- addons/base_module_quality/i18n/zh_TW.po | 151 +++- addons/base_module_record/i18n/ar_AR.po | 6 +- .../i18n/base_module_record.pot | 6 +- addons/base_module_record/i18n/bg_BG.po | 6 +- addons/base_module_record/i18n/bs_BS.po | 6 +- addons/base_module_record/i18n/ca_ES.po | 6 +- addons/base_module_record/i18n/cs_CZ.po | 6 +- addons/base_module_record/i18n/de_DE.po | 6 +- addons/base_module_record/i18n/es_AR.po | 6 +- addons/base_module_record/i18n/es_ES.po | 6 +- addons/base_module_record/i18n/et_EE.po | 6 +- addons/base_module_record/i18n/fi_FI.po | 6 +- addons/base_module_record/i18n/fr_FR.po | 6 +- addons/base_module_record/i18n/hr_HR.po | 6 +- addons/base_module_record/i18n/hu_HU.po | 6 +- addons/base_module_record/i18n/id_ID.po | 6 +- addons/base_module_record/i18n/it_IT.po | 6 +- addons/base_module_record/i18n/lt_LT.po | 6 +- addons/base_module_record/i18n/nl_BE.po | 6 +- addons/base_module_record/i18n/nl_NL.po | 6 +- addons/base_module_record/i18n/pl_PL.po | 6 +- addons/base_module_record/i18n/pt_BR.po | 6 +- addons/base_module_record/i18n/pt_PT.po | 6 +- addons/base_module_record/i18n/ro_RO.po | 6 +- addons/base_module_record/i18n/ru_RU.po | 6 +- addons/base_module_record/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/base_module_record/i18n/sv_SE.po | 6 +- addons/base_module_record/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/base_module_record/i18n/zh_CN.po | 6 +- addons/base_module_record/i18n/zh_TW.po | 6 +- addons/base_report_creator/i18n/ar_AR.po | 6 +- .../i18n/base_report_creator.pot | 6 +- addons/base_report_creator/i18n/bg_BG.po | 6 +- addons/base_report_creator/i18n/bs_BS.po | 6 +- addons/base_report_creator/i18n/ca_ES.po | 6 +- addons/base_report_creator/i18n/cs_CZ.po | 6 +- addons/base_report_creator/i18n/de_DE.po | 6 +- addons/base_report_creator/i18n/es_AR.po | 6 +- addons/base_report_creator/i18n/es_ES.po | 6 +- addons/base_report_creator/i18n/et_EE.po | 6 +- addons/base_report_creator/i18n/fi_FI.po | 6 +- addons/base_report_creator/i18n/fr_FR.po | 8 +- addons/base_report_creator/i18n/hr_HR.po | 6 +- addons/base_report_creator/i18n/hu_HU.po | 6 +- addons/base_report_creator/i18n/id_ID.po | 6 +- addons/base_report_creator/i18n/it_IT.po | 6 +- addons/base_report_creator/i18n/lt_LT.po | 6 +- addons/base_report_creator/i18n/nl_BE.po | 6 +- addons/base_report_creator/i18n/nl_NL.po | 6 +- addons/base_report_creator/i18n/pl_PL.po | 6 +- addons/base_report_creator/i18n/pt_BR.po | 6 +- addons/base_report_creator/i18n/pt_PT.po | 6 +- addons/base_report_creator/i18n/ro_RO.po | 6 +- addons/base_report_creator/i18n/ru_RU.po | 6 +- addons/base_report_creator/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/base_report_creator/i18n/sv_SE.po | 6 +- addons/base_report_creator/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/base_report_creator/i18n/zh_CN.po | 6 +- addons/base_report_creator/i18n/zh_TW.po | 6 +- addons/base_report_designer/i18n/ar_AR.po | 6 +- .../i18n/base_report_designer.pot | 6 +- addons/base_report_designer/i18n/bg_BG.po | 6 +- addons/base_report_designer/i18n/bs_BS.po | 6 +- addons/base_report_designer/i18n/ca_ES.po | 6 +- addons/base_report_designer/i18n/cs_CZ.po | 6 +- addons/base_report_designer/i18n/de_DE.po | 6 +- addons/base_report_designer/i18n/es_AR.po | 6 +- addons/base_report_designer/i18n/es_ES.po | 6 +- addons/base_report_designer/i18n/et_EE.po | 6 +- addons/base_report_designer/i18n/fi_FI.po | 6 +- addons/base_report_designer/i18n/fr_FR.po | 6 +- addons/base_report_designer/i18n/hr_HR.po | 6 +- addons/base_report_designer/i18n/hu_HU.po | 6 +- addons/base_report_designer/i18n/id_ID.po | 6 +- addons/base_report_designer/i18n/it_IT.po | 6 +- addons/base_report_designer/i18n/lt_LT.po | 6 +- addons/base_report_designer/i18n/nl_BE.po | 6 +- addons/base_report_designer/i18n/nl_NL.po | 6 +- addons/base_report_designer/i18n/pl_PL.po | 6 +- addons/base_report_designer/i18n/pt_BR.po | 6 +- addons/base_report_designer/i18n/pt_PT.po | 6 +- addons/base_report_designer/i18n/ro_RO.po | 6 +- addons/base_report_designer/i18n/ru_RU.po | 6 +- addons/base_report_designer/i18n/sl_SL.po | 6 +- .../i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/base_report_designer/i18n/sv_SE.po | 6 +- addons/base_report_designer/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{cs_CS.po => vi_VN.po} | 8 +- addons/base_report_designer/i18n/zh_CN.po | 6 +- addons/base_report_designer/i18n/zh_TW.po | 6 +- addons/base_setup/i18n/ar_AR.po | 6 +- addons/base_setup/i18n/base_setup.pot | 6 +- addons/base_setup/i18n/bg_BG.po | 6 +- addons/base_setup/i18n/bs_BS.po | 6 +- addons/base_setup/i18n/ca_ES.po | 6 +- addons/base_setup/i18n/cs_CZ.po | 6 +- addons/base_setup/i18n/de_DE.po | 6 +- addons/base_setup/i18n/es_AR.po | 6 +- addons/base_setup/i18n/es_EC.po | 4 +- addons/base_setup/i18n/es_ES.po | 6 +- addons/base_setup/i18n/et_EE.po | 6 +- addons/base_setup/i18n/fi_FI.po | 6 +- addons/base_setup/i18n/fr_FR.po | 6 +- addons/base_setup/i18n/hr_HR.po | 6 +- addons/base_setup/i18n/hu_HU.po | 6 +- addons/base_setup/i18n/id_ID.po | 6 +- addons/base_setup/i18n/it_IT.po | 6 +- addons/base_setup/i18n/lt_LT.po | 6 +- addons/base_setup/i18n/nl_BE.po | 6 +- addons/base_setup/i18n/nl_NL.po | 6 +- addons/base_setup/i18n/pl_PL.po | 6 +- addons/base_setup/i18n/pt_BR.po | 6 +- addons/base_setup/i18n/pt_PT.po | 6 +- addons/base_setup/i18n/ro_RO.po | 6 +- addons/base_setup/i18n/ru_RU.po | 6 +- addons/base_setup/i18n/sl_SL.po | 6 +- addons/base_setup/i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/base_setup/i18n/sv_SE.po | 6 +- addons/base_setup/i18n/tr_TR.po | 6 +- addons/base_setup/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/base_setup/i18n/{cs_CS.po => vi_VN.po} | 48 +- addons/base_setup/i18n/zh_CN.po | 6 +- addons/base_setup/i18n/zh_TW.po | 6 +- addons/base_vat/i18n/ab_AB.po | 2 +- addons/base_vat/i18n/ar_AR.po | 6 +- addons/base_vat/i18n/base_vat.pot | 6 +- addons/base_vat/i18n/bg_BG.po | 6 +- addons/base_vat/i18n/bs_BS.po | 6 +- addons/base_vat/i18n/ca_ES.po | 6 +- addons/base_vat/i18n/cs_CZ.po | 6 +- addons/base_vat/i18n/de_DE.po | 6 +- addons/base_vat/i18n/es_AR.po | 6 +- addons/base_vat/i18n/es_ES.po | 6 +- addons/base_vat/i18n/et_EE.po | 6 +- addons/base_vat/i18n/fi_FI.po | 6 +- addons/base_vat/i18n/fr_FR.po | 8 +- addons/base_vat/i18n/hr_HR.po | 6 +- addons/base_vat/i18n/hu_HU.po | 6 +- addons/base_vat/i18n/id_ID.po | 6 +- addons/base_vat/i18n/it_IT.po | 6 +- addons/base_vat/i18n/lt_LT.po | 6 +- addons/base_vat/i18n/nl_BE.po | 6 +- addons/base_vat/i18n/nl_NL.po | 6 +- addons/base_vat/i18n/pl_PL.po | 6 +- addons/base_vat/i18n/pt_BR.po | 6 +- addons/base_vat/i18n/pt_PT.po | 6 +- addons/base_vat/i18n/ro_RO.po | 6 +- addons/base_vat/i18n/ru_RU.po | 6 +- addons/base_vat/i18n/sl_SL.po | 6 +- addons/base_vat/i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/base_vat/i18n/sv_SE.po | 6 +- addons/base_vat/i18n/tr_TR.po | 6 +- addons/base_vat/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/base_vat/i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/base_vat/i18n/zh_CN.po | 6 +- addons/base_vat/i18n/zh_TW.po | 6 +- addons/board/i18n/ar_AR.po | 6 +- addons/board/i18n/bg_BG.po | 6 +- addons/board/i18n/board.pot | 6 +- addons/board/i18n/bs_BS.po | 6 +- addons/board/i18n/ca_ES.po | 6 +- addons/board/i18n/cs_CZ.po | 6 +- addons/board/i18n/de_DE.po | 6 +- addons/board/i18n/es_AR.po | 6 +- addons/board/i18n/es_ES.po | 6 +- addons/board/i18n/et_EE.po | 6 +- addons/board/i18n/fi_FI.po | 6 +- addons/board/i18n/fr_FR.po | 8 +- addons/board/i18n/hr_HR.po | 6 +- addons/board/i18n/hu_HU.po | 6 +- addons/board/i18n/id_ID.po | 6 +- addons/board/i18n/it_IT.po | 6 +- addons/board/i18n/lt_LT.po | 6 +- addons/board/i18n/nl_BE.po | 6 +- addons/board/i18n/nl_NL.po | 6 +- addons/board/i18n/pl_PL.po | 6 +- addons/board/i18n/pt_BR.po | 6 +- addons/board/i18n/pt_PT.po | 6 +- addons/board/i18n/ro_RO.po | 6 +- addons/board/i18n/ru_RU.po | 6 +- addons/board/i18n/sl_SL.po | 6 +- addons/board/i18n/{cs_CS.po => sq_AL.po} | 8 +- addons/board/i18n/sv_SE.po | 6 +- addons/board/i18n/tr_TR.po | 6 +- addons/board/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/board/i18n/{sv_SV.po => vi_VN.po} | 10 +- addons/board/i18n/zh_CN.po | 6 +- addons/board/i18n/zh_TW.po | 6 +- addons/board_account/i18n/ar_AR.po | 6 +- addons/board_account/i18n/bg_BG.po | 6 +- addons/board_account/i18n/board_account.pot | 6 +- addons/board_account/i18n/bs_BS.po | 6 +- addons/board_account/i18n/ca_ES.po | 6 +- addons/board_account/i18n/cs_CZ.po | 6 +- addons/board_account/i18n/de_DE.po | 6 +- addons/board_account/i18n/es_AR.po | 6 +- addons/board_account/i18n/es_ES.po | 6 +- addons/board_account/i18n/et_EE.po | 6 +- addons/board_account/i18n/fi_FI.po | 6 +- addons/board_account/i18n/fr_FR.po | 8 +- addons/board_account/i18n/hr_HR.po | 6 +- addons/board_account/i18n/hu_HU.po | 6 +- addons/board_account/i18n/id_ID.po | 6 +- addons/board_account/i18n/it_IT.po | 6 +- addons/board_account/i18n/lt_LT.po | 6 +- addons/board_account/i18n/nl_BE.po | 6 +- addons/board_account/i18n/nl_NL.po | 6 +- addons/board_account/i18n/pl_PL.po | 6 +- addons/board_account/i18n/pt_BR.po | 6 +- addons/board_account/i18n/pt_PT.po | 6 +- addons/board_account/i18n/ro_RO.po | 6 +- addons/board_account/i18n/ru_RU.po | 6 +- addons/board_account/i18n/sl_SL.po | 6 +- .../board_account/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/board_account/i18n/sv_SE.po | 6 +- addons/board_account/i18n/tr_TR.po | 6 +- .../board_account/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../board_account/i18n/{sv_SV.po => vi_VN.po} | 6 +- addons/board_account/i18n/zh_CN.po | 6 +- addons/board_account/i18n/zh_TW.po | 6 +- addons/board_association/i18n/ar_AR.po | 6 +- addons/board_association/i18n/bg_BG.po | 6 +- .../i18n/board_association.pot | 6 +- addons/board_association/i18n/bs_BS.po | 6 +- addons/board_association/i18n/ca_ES.po | 6 +- addons/board_association/i18n/cs_CZ.po | 6 +- addons/board_association/i18n/de_DE.po | 6 +- addons/board_association/i18n/es_AR.po | 6 +- addons/board_association/i18n/es_ES.po | 6 +- addons/board_association/i18n/et_EE.po | 6 +- addons/board_association/i18n/fi_FI.po | 6 +- addons/board_association/i18n/fr_FR.po | 8 +- addons/board_association/i18n/hr_HR.po | 6 +- addons/board_association/i18n/hu_HU.po | 6 +- addons/board_association/i18n/id_ID.po | 6 +- addons/board_association/i18n/it_IT.po | 6 +- addons/board_association/i18n/lt_LT.po | 6 +- addons/board_association/i18n/nl_BE.po | 6 +- addons/board_association/i18n/nl_NL.po | 6 +- addons/board_association/i18n/pl_PL.po | 6 +- addons/board_association/i18n/pt_BR.po | 6 +- addons/board_association/i18n/pt_PT.po | 6 +- addons/board_association/i18n/ro_RO.po | 6 +- addons/board_association/i18n/ru_RU.po | 6 +- addons/board_association/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/board_association/i18n/sv_SE.po | 6 +- addons/board_association/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 6 +- addons/board_association/i18n/zh_CN.po | 6 +- addons/board_association/i18n/zh_TW.po | 6 +- addons/board_auction/i18n/ar_AR.po | 6 +- addons/board_auction/i18n/bg_BG.po | 6 +- addons/board_auction/i18n/board_auction.pot | 6 +- addons/board_auction/i18n/bs_BS.po | 6 +- addons/board_auction/i18n/ca_ES.po | 6 +- addons/board_auction/i18n/cs_CZ.po | 6 +- addons/board_auction/i18n/de_DE.po | 6 +- addons/board_auction/i18n/es_AR.po | 6 +- addons/board_auction/i18n/es_ES.po | 6 +- addons/board_auction/i18n/et_EE.po | 6 +- addons/board_auction/i18n/fi_FI.po | 6 +- addons/board_auction/i18n/fr_FR.po | 8 +- addons/board_auction/i18n/hr_HR.po | 6 +- addons/board_auction/i18n/hu_HU.po | 6 +- addons/board_auction/i18n/id_ID.po | 6 +- addons/board_auction/i18n/it_IT.po | 6 +- addons/board_auction/i18n/lt_LT.po | 6 +- addons/board_auction/i18n/nl_BE.po | 6 +- addons/board_auction/i18n/nl_NL.po | 6 +- addons/board_auction/i18n/pl_PL.po | 6 +- addons/board_auction/i18n/pt_BR.po | 6 +- addons/board_auction/i18n/pt_PT.po | 6 +- addons/board_auction/i18n/ro_RO.po | 6 +- addons/board_auction/i18n/ru_RU.po | 6 +- addons/board_auction/i18n/sl_SL.po | 6 +- .../board_auction/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/board_auction/i18n/sv_SE.po | 6 +- addons/board_auction/i18n/tr_TR.po | 6 +- .../board_auction/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../board_auction/i18n/{sv_SV.po => vi_VN.po} | 6 +- addons/board_auction/i18n/zh_CN.po | 6 +- addons/board_auction/i18n/zh_TW.po | 6 +- addons/board_crm_configuration/i18n/ar_AR.po | 6 +- addons/board_crm_configuration/i18n/bg_BG.po | 6 +- .../i18n/board_crm_configuration.pot | 6 +- addons/board_crm_configuration/i18n/bs_BS.po | 6 +- addons/board_crm_configuration/i18n/ca_ES.po | 6 +- addons/board_crm_configuration/i18n/cs_CZ.po | 6 +- addons/board_crm_configuration/i18n/de_DE.po | 6 +- addons/board_crm_configuration/i18n/es_AR.po | 6 +- addons/board_crm_configuration/i18n/es_ES.po | 6 +- addons/board_crm_configuration/i18n/et_EE.po | 6 +- addons/board_crm_configuration/i18n/fi_FI.po | 6 +- addons/board_crm_configuration/i18n/fr_FR.po | 8 +- addons/board_crm_configuration/i18n/hr_HR.po | 6 +- addons/board_crm_configuration/i18n/hu_HU.po | 6 +- addons/board_crm_configuration/i18n/id_ID.po | 6 +- addons/board_crm_configuration/i18n/it_IT.po | 6 +- addons/board_crm_configuration/i18n/lt_LT.po | 6 +- addons/board_crm_configuration/i18n/nl_BE.po | 6 +- addons/board_crm_configuration/i18n/nl_NL.po | 6 +- addons/board_crm_configuration/i18n/pl_PL.po | 6 +- addons/board_crm_configuration/i18n/pt_BR.po | 6 +- addons/board_crm_configuration/i18n/pt_PT.po | 6 +- addons/board_crm_configuration/i18n/ro_RO.po | 6 +- addons/board_crm_configuration/i18n/ru_RU.po | 6 +- addons/board_crm_configuration/i18n/sl_SL.po | 6 +- .../i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/board_crm_configuration/i18n/sv_SE.po | 6 +- addons/board_crm_configuration/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/board_crm_configuration/i18n/zh_CN.po | 6 +- addons/board_crm_configuration/i18n/zh_TW.po | 6 +- addons/board_document/i18n/ar_AR.po | 6 +- addons/board_document/i18n/bg_BG.po | 6 +- addons/board_document/i18n/board_document.pot | 6 +- addons/board_document/i18n/bs_BS.po | 6 +- addons/board_document/i18n/ca_ES.po | 6 +- addons/board_document/i18n/cs_CZ.po | 6 +- addons/board_document/i18n/de_DE.po | 6 +- addons/board_document/i18n/es_AR.po | 6 +- addons/board_document/i18n/es_ES.po | 6 +- addons/board_document/i18n/et_EE.po | 6 +- addons/board_document/i18n/fi_FI.po | 6 +- addons/board_document/i18n/fr_FR.po | 8 +- addons/board_document/i18n/hr_HR.po | 6 +- addons/board_document/i18n/hu_HU.po | 6 +- addons/board_document/i18n/id_ID.po | 6 +- addons/board_document/i18n/it_IT.po | 6 +- addons/board_document/i18n/lt_LT.po | 6 +- addons/board_document/i18n/nl_BE.po | 6 +- addons/board_document/i18n/nl_NL.po | 6 +- addons/board_document/i18n/pl_PL.po | 6 +- addons/board_document/i18n/pt_BR.po | 6 +- addons/board_document/i18n/pt_PT.po | 6 +- addons/board_document/i18n/ro_RO.po | 6 +- addons/board_document/i18n/ru_RU.po | 6 +- addons/board_document/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/board_document/i18n/sv_SE.po | 6 +- addons/board_document/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 6 +- addons/board_document/i18n/zh_CN.po | 6 +- addons/board_document/i18n/zh_TW.po | 6 +- addons/board_manufacturing/i18n/ar_AR.po | 6 +- addons/board_manufacturing/i18n/bg_BG.po | 6 +- .../i18n/board_manufacturing.pot | 6 +- addons/board_manufacturing/i18n/bs_BS.po | 6 +- addons/board_manufacturing/i18n/ca_ES.po | 6 +- addons/board_manufacturing/i18n/cs_CZ.po | 6 +- addons/board_manufacturing/i18n/de_DE.po | 6 +- addons/board_manufacturing/i18n/es_AR.po | 6 +- addons/board_manufacturing/i18n/es_ES.po | 6 +- addons/board_manufacturing/i18n/et_EE.po | 6 +- addons/board_manufacturing/i18n/fi_FI.po | 6 +- addons/board_manufacturing/i18n/fr_FR.po | 8 +- addons/board_manufacturing/i18n/hr_HR.po | 6 +- addons/board_manufacturing/i18n/hu_HU.po | 6 +- addons/board_manufacturing/i18n/id_ID.po | 6 +- addons/board_manufacturing/i18n/it_IT.po | 6 +- addons/board_manufacturing/i18n/lt_LT.po | 6 +- addons/board_manufacturing/i18n/nl_BE.po | 6 +- addons/board_manufacturing/i18n/nl_NL.po | 6 +- addons/board_manufacturing/i18n/pl_PL.po | 6 +- addons/board_manufacturing/i18n/pt_BR.po | 6 +- addons/board_manufacturing/i18n/pt_PT.po | 6 +- addons/board_manufacturing/i18n/ro_RO.po | 6 +- addons/board_manufacturing/i18n/ru_RU.po | 6 +- addons/board_manufacturing/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/board_manufacturing/i18n/sv_SE.po | 6 +- addons/board_manufacturing/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/board_manufacturing/i18n/zh_CN.po | 6 +- addons/board_manufacturing/i18n/zh_TW.po | 6 +- addons/board_project/i18n/ar_AR.po | 6 +- addons/board_project/i18n/bg_BG.po | 6 +- addons/board_project/i18n/board_project.pot | 6 +- addons/board_project/i18n/bs_BS.po | 6 +- addons/board_project/i18n/ca_ES.po | 6 +- addons/board_project/i18n/cs_CZ.po | 6 +- addons/board_project/i18n/de_DE.po | 6 +- addons/board_project/i18n/es_AR.po | 6 +- addons/board_project/i18n/es_ES.po | 6 +- addons/board_project/i18n/et_EE.po | 6 +- addons/board_project/i18n/fi_FI.po | 6 +- addons/board_project/i18n/fr_FR.po | 8 +- addons/board_project/i18n/hr_HR.po | 6 +- addons/board_project/i18n/hu_HU.po | 6 +- addons/board_project/i18n/id_ID.po | 6 +- addons/board_project/i18n/it_IT.po | 6 +- addons/board_project/i18n/lt_LT.po | 6 +- addons/board_project/i18n/nl_BE.po | 6 +- addons/board_project/i18n/nl_NL.po | 6 +- addons/board_project/i18n/pl_PL.po | 6 +- addons/board_project/i18n/pt_BR.po | 6 +- addons/board_project/i18n/pt_PT.po | 6 +- addons/board_project/i18n/ro_RO.po | 6 +- addons/board_project/i18n/ru_RU.po | 6 +- addons/board_project/i18n/sl_SL.po | 6 +- .../board_project/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/board_project/i18n/sv_SE.po | 6 +- addons/board_project/i18n/tr_TR.po | 6 +- .../board_project/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../board_project/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/board_project/i18n/zh_CN.po | 6 +- addons/board_project/i18n/zh_TW.po | 6 +- addons/board_sale/i18n/ar_AR.po | 6 +- addons/board_sale/i18n/bg_BG.po | 6 +- addons/board_sale/i18n/board_sale.pot | 6 +- addons/board_sale/i18n/bs_BS.po | 6 +- addons/board_sale/i18n/ca_ES.po | 6 +- addons/board_sale/i18n/cs_CZ.po | 6 +- addons/board_sale/i18n/de_DE.po | 6 +- addons/board_sale/i18n/es_AR.po | 6 +- addons/board_sale/i18n/es_ES.po | 6 +- addons/board_sale/i18n/et_EE.po | 6 +- addons/board_sale/i18n/fi_FI.po | 6 +- addons/board_sale/i18n/fr_FR.po | 8 +- addons/board_sale/i18n/hr_HR.po | 6 +- addons/board_sale/i18n/hu_HU.po | 6 +- addons/board_sale/i18n/id_ID.po | 6 +- addons/board_sale/i18n/it_IT.po | 6 +- addons/board_sale/i18n/lt_LT.po | 6 +- addons/board_sale/i18n/nl_BE.po | 6 +- addons/board_sale/i18n/nl_NL.po | 6 +- addons/board_sale/i18n/pl_PL.po | 6 +- addons/board_sale/i18n/pt_BR.po | 6 +- addons/board_sale/i18n/pt_PT.po | 6 +- addons/board_sale/i18n/ro_RO.po | 6 +- addons/board_sale/i18n/ru_RU.po | 6 +- addons/board_sale/i18n/sl_SL.po | 6 +- addons/board_sale/i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/board_sale/i18n/sv_SE.po | 6 +- addons/board_sale/i18n/tr_TR.po | 6 +- addons/board_sale/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/board_sale/i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/board_sale/i18n/zh_CN.po | 6 +- addons/board_sale/i18n/zh_TW.po | 6 +- addons/crm/i18n/ar_AR.po | 6 +- addons/crm/i18n/bg_BG.po | 6 +- addons/crm/i18n/bs_BS.po | 6 +- addons/crm/i18n/ca_ES.po | 6 +- addons/crm/i18n/crm.pot | 6 +- addons/crm/i18n/cs_CZ.po | 6 +- addons/crm/i18n/de_DE.po | 6 +- addons/crm/i18n/es_AR.po | 6 +- addons/crm/i18n/es_ES.po | 6 +- addons/crm/i18n/et_EE.po | 6 +- addons/crm/i18n/fi_FI.po | 6 +- addons/crm/i18n/fr_FR.po | 108 +-- addons/crm/i18n/hr_HR.po | 6 +- addons/crm/i18n/hu_HU.po | 6 +- addons/crm/i18n/id_ID.po | 6 +- addons/crm/i18n/it_IT.po | 6 +- addons/crm/i18n/lt_LT.po | 6 +- addons/crm/i18n/nl_BE.po | 6 +- addons/crm/i18n/nl_NL.po | 6 +- addons/crm/i18n/pl_PL.po | 8 +- addons/crm/i18n/pt_BR.po | 6 +- addons/crm/i18n/pt_PT.po | 10 +- addons/crm/i18n/ro_RO.po | 6 +- addons/crm/i18n/ru_RU.po | 6 +- addons/crm/i18n/sl_SL.po | 6 +- addons/crm/i18n/{cs_CS.po => sq_AL.po} | 12 +- addons/crm/i18n/sv_SE.po | 6 +- addons/crm/i18n/tr_TR.po | 6 +- addons/crm/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/crm/i18n/{sv_SV.po => vi_VN.po} | 46 +- addons/crm/i18n/zh_CN.po | 6 +- addons/crm/i18n/zh_TW.po | 6 +- addons/crm_configuration/i18n/ar_AR.po | 6 +- addons/crm_configuration/i18n/bg_BG.po | 6 +- addons/crm_configuration/i18n/bs_BS.po | 6 +- addons/crm_configuration/i18n/ca_ES.po | 6 +- .../i18n/crm_configuration.pot | 6 +- addons/crm_configuration/i18n/cs_CZ.po | 6 +- addons/crm_configuration/i18n/de_DE.po | 6 +- addons/crm_configuration/i18n/es_AR.po | 6 +- addons/crm_configuration/i18n/es_ES.po | 6 +- addons/crm_configuration/i18n/et_EE.po | 6 +- addons/crm_configuration/i18n/fi_FI.po | 6 +- addons/crm_configuration/i18n/fr_FR.po | 114 +-- addons/crm_configuration/i18n/hr_HR.po | 6 +- addons/crm_configuration/i18n/hu_HU.po | 6 +- addons/crm_configuration/i18n/id_ID.po | 6 +- addons/crm_configuration/i18n/it_IT.po | 6 +- addons/crm_configuration/i18n/lt_LT.po | 20 +- addons/crm_configuration/i18n/nl_BE.po | 6 +- addons/crm_configuration/i18n/nl_NL.po | 6 +- addons/crm_configuration/i18n/pl_PL.po | 12 +- addons/crm_configuration/i18n/pt_BR.po | 6 +- addons/crm_configuration/i18n/pt_PT.po | 14 +- addons/crm_configuration/i18n/ro_RO.po | 6 +- addons/crm_configuration/i18n/ru_RU.po | 6 +- addons/crm_configuration/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 8 +- addons/crm_configuration/i18n/sv_SE.po | 6 +- addons/crm_configuration/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 10 +- addons/crm_configuration/i18n/zh_CN.po | 6 +- addons/crm_configuration/i18n/zh_TW.po | 6 +- addons/crm_profiling/i18n/ar_AR.po | 6 +- addons/crm_profiling/i18n/bg_BG.po | 6 +- addons/crm_profiling/i18n/bs_BS.po | 6 +- addons/crm_profiling/i18n/ca_ES.po | 6 +- addons/crm_profiling/i18n/crm_profiling.pot | 6 +- addons/crm_profiling/i18n/cs_CZ.po | 6 +- addons/crm_profiling/i18n/de_DE.po | 6 +- addons/crm_profiling/i18n/es_AR.po | 6 +- addons/crm_profiling/i18n/es_ES.po | 6 +- addons/crm_profiling/i18n/et_EE.po | 6 +- addons/crm_profiling/i18n/fi_FI.po | 6 +- addons/crm_profiling/i18n/fr_FR.po | 8 +- addons/crm_profiling/i18n/hr_HR.po | 6 +- addons/crm_profiling/i18n/hu_HU.po | 6 +- addons/crm_profiling/i18n/id_ID.po | 6 +- addons/crm_profiling/i18n/it_IT.po | 6 +- addons/crm_profiling/i18n/lt_LT.po | 6 +- addons/crm_profiling/i18n/nl_BE.po | 6 +- addons/crm_profiling/i18n/nl_NL.po | 6 +- addons/crm_profiling/i18n/pl_PL.po | 6 +- addons/crm_profiling/i18n/pt_BR.po | 6 +- addons/crm_profiling/i18n/pt_PT.po | 6 +- addons/crm_profiling/i18n/ro_RO.po | 6 +- addons/crm_profiling/i18n/ru_RU.po | 6 +- addons/crm_profiling/i18n/sl_SL.po | 6 +- .../crm_profiling/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/crm_profiling/i18n/sv_SE.po | 6 +- addons/crm_profiling/i18n/tr_TR.po | 6 +- .../crm_profiling/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../crm_profiling/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/crm_profiling/i18n/zh_CN.po | 6 +- addons/crm_profiling/i18n/zh_TW.po | 6 +- addons/crm_vertical/i18n/ar_AR.po | 6 +- addons/crm_vertical/i18n/bg_BG.po | 6 +- addons/crm_vertical/i18n/bs_BS.po | 6 +- addons/crm_vertical/i18n/ca_ES.po | 6 +- addons/crm_vertical/i18n/crm_vertical.pot | 6 +- addons/crm_vertical/i18n/cs_CZ.po | 6 +- addons/crm_vertical/i18n/de_DE.po | 6 +- addons/crm_vertical/i18n/es_AR.po | 6 +- addons/crm_vertical/i18n/es_ES.po | 6 +- addons/crm_vertical/i18n/et_EE.po | 6 +- addons/crm_vertical/i18n/fi_FI.po | 6 +- addons/crm_vertical/i18n/fr_FR.po | 8 +- addons/crm_vertical/i18n/hr_HR.po | 6 +- addons/crm_vertical/i18n/hu_HU.po | 6 +- addons/crm_vertical/i18n/id_ID.po | 6 +- addons/crm_vertical/i18n/it_IT.po | 6 +- addons/crm_vertical/i18n/lt_LT.po | 6 +- addons/crm_vertical/i18n/nl_BE.po | 6 +- addons/crm_vertical/i18n/nl_NL.po | 6 +- addons/crm_vertical/i18n/pl_PL.po | 6 +- addons/crm_vertical/i18n/pt_BR.po | 6 +- addons/crm_vertical/i18n/pt_PT.po | 6 +- addons/crm_vertical/i18n/ro_RO.po | 6 +- addons/crm_vertical/i18n/ru_RU.po | 6 +- addons/crm_vertical/i18n/sl_SL.po | 6 +- .../crm_vertical/i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/crm_vertical/i18n/sv_SE.po | 6 +- addons/crm_vertical/i18n/tr_TR.po | 6 +- .../crm_vertical/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../crm_vertical/i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/crm_vertical/i18n/zh_CN.po | 6 +- addons/crm_vertical/i18n/zh_TW.po | 6 +- addons/delivery/i18n/ar_AR.po | 6 +- addons/delivery/i18n/bg_BG.po | 6 +- addons/delivery/i18n/bs_BS.po | 6 +- addons/delivery/i18n/ca_ES.po | 6 +- addons/delivery/i18n/cs_CZ.po | 6 +- addons/delivery/i18n/de_DE.po | 6 +- addons/delivery/i18n/delivery.pot | 6 +- addons/delivery/i18n/es_AR.po | 6 +- addons/delivery/i18n/es_ES.po | 6 +- addons/delivery/i18n/et_EE.po | 6 +- addons/delivery/i18n/fi_FI.po | 6 +- addons/delivery/i18n/fr_FR.po | 34 +- addons/delivery/i18n/hr_HR.po | 6 +- addons/delivery/i18n/hu_HU.po | 6 +- addons/delivery/i18n/id_ID.po | 6 +- addons/delivery/i18n/it_IT.po | 6 +- addons/delivery/i18n/lt_LT.po | 6 +- addons/delivery/i18n/nl_BE.po | 6 +- addons/delivery/i18n/nl_NL.po | 6 +- addons/delivery/i18n/pl_PL.po | 6 +- addons/delivery/i18n/pt_BR.po | 6 +- addons/delivery/i18n/pt_PT.po | 6 +- addons/delivery/i18n/ro_RO.po | 6 +- addons/delivery/i18n/ru_RU.po | 6 +- addons/delivery/i18n/sl_SL.po | 6 +- addons/delivery/i18n/{cs_CS.po => sq_AL.po} | 10 +- addons/delivery/i18n/sv_SE.po | 6 +- addons/delivery/i18n/tr_TR.po | 6 +- addons/delivery/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/delivery/i18n/{sv_SV.po => vi_VN.po} | 20 +- addons/delivery/i18n/zh_CN.po | 6 +- addons/delivery/i18n/zh_TW.po | 6 +- addons/document/i18n/ar_AR.po | 768 ++++++++--------- addons/document/i18n/bg_BG.po | 768 ++++++++--------- addons/document/i18n/bs_BS.po | 768 ++++++++--------- addons/document/i18n/ca_ES.po | 780 ++++++++--------- addons/document/i18n/cs_CZ.po | 768 ++++++++--------- addons/document/i18n/de_DE.po | 782 ++++++++---------- addons/document/i18n/document.pot | 6 +- addons/document/i18n/es_AR.po | 768 ++++++++--------- addons/document/i18n/es_ES.po | 780 ++++++++--------- addons/document/i18n/et_EE.po | 780 ++++++++--------- addons/document/i18n/fi_FI.po | 768 ++++++++--------- addons/document/i18n/fr_FR.po | 42 +- addons/document/i18n/hi_HI.po | 2 +- addons/document/i18n/hr_HR.po | 768 ++++++++--------- addons/document/i18n/hu_HU.po | 768 ++++++++--------- addons/document/i18n/id_ID.po | 768 ++++++++--------- addons/document/i18n/it_IT.po | 780 ++++++++--------- addons/document/i18n/lt_LT.po | 768 ++++++++--------- addons/document/i18n/nl_BE.po | 768 ++++++++--------- addons/document/i18n/nl_NL.po | 768 ++++++++--------- addons/document/i18n/pl_PL.po | 742 ++++++++--------- addons/document/i18n/pt_BR.po | 768 ++++++++--------- addons/document/i18n/pt_PT.po | 768 ++++++++--------- addons/document/i18n/ro_RO.po | 768 ++++++++--------- addons/document/i18n/ru_RU.po | 768 ++++++++--------- addons/document/i18n/sl_SL.po | 768 ++++++++--------- addons/document/i18n/{cs_CS.po => sq_AL.po} | 768 ++++++++--------- addons/document/i18n/sv_SE.po | 768 ++++++++--------- addons/document/i18n/tr_TR.po | 768 ++++++++--------- addons/document/i18n/{uk_UK.po => uk_UA.po} | 768 ++++++++--------- addons/document/i18n/{sv_SV.po => vi_VN.po} | 770 ++++++++--------- addons/document/i18n/zh_CN.po | 768 ++++++++--------- addons/document/i18n/zh_TW.po | 768 ++++++++--------- addons/document_ics/i18n/ar_AR.po | 11 +- addons/document_ics/i18n/bg_BG.po | 11 +- addons/document_ics/i18n/bs_BS.po | 11 +- addons/document_ics/i18n/ca_ES.po | 11 +- addons/document_ics/i18n/cs_CZ.po | 11 +- addons/document_ics/i18n/de_DE.po | 11 +- addons/document_ics/i18n/document_ics.pot | 6 +- addons/document_ics/i18n/es_AR.po | 11 +- addons/document_ics/i18n/es_ES.po | 11 +- addons/document_ics/i18n/et_EE.po | 11 +- addons/document_ics/i18n/fi_FI.po | 11 +- addons/document_ics/i18n/fr_FR.po | 36 +- addons/document_ics/i18n/hr_HR.po | 11 +- addons/document_ics/i18n/hu_HU.po | 11 +- addons/document_ics/i18n/id_ID.po | 11 +- addons/document_ics/i18n/it_IT.po | 11 +- addons/document_ics/i18n/lt_LT.po | 11 +- addons/document_ics/i18n/nl_BE.po | 11 +- addons/document_ics/i18n/nl_NL.po | 11 +- addons/document_ics/i18n/pl_PL.po | 11 +- addons/document_ics/i18n/pt_BR.po | 11 +- addons/document_ics/i18n/pt_PT.po | 11 +- addons/document_ics/i18n/ro_RO.po | 11 +- addons/document_ics/i18n/ru_RU.po | 11 +- addons/document_ics/i18n/sl_SL.po | 11 +- .../document_ics/i18n/{cs_CS.po => sq_AL.po} | 11 +- addons/document_ics/i18n/sv_SE.po | 11 +- addons/document_ics/i18n/tr_TR.po | 11 +- .../document_ics/i18n/{uk_UK.po => uk_UA.po} | 11 +- .../document_ics/i18n/{sv_SV.po => vi_VN.po} | 13 +- addons/document_ics/i18n/zh_CN.po | 11 +- addons/document_ics/i18n/zh_TW.po | 11 +- addons/event/i18n/ar_AR.po | 6 +- addons/event/i18n/bg_BG.po | 6 +- addons/event/i18n/bs_BS.po | 6 +- addons/event/i18n/ca_ES.po | 6 +- addons/event/i18n/cs_CZ.po | 6 +- addons/event/i18n/de_DE.po | 6 +- addons/event/i18n/es_AR.po | 6 +- addons/event/i18n/es_ES.po | 6 +- addons/event/i18n/et_EE.po | 6 +- addons/event/i18n/event.pot | 6 +- addons/event/i18n/fi_FI.po | 6 +- addons/event/i18n/fr_FR.po | 12 +- addons/event/i18n/hr_HR.po | 6 +- addons/event/i18n/hu_HU.po | 6 +- addons/event/i18n/id_ID.po | 6 +- addons/event/i18n/it_IT.po | 6 +- addons/event/i18n/lt_LT.po | 6 +- addons/event/i18n/nl_BE.po | 6 +- addons/event/i18n/nl_NL.po | 6 +- addons/event/i18n/pl_PL.po | 6 +- addons/event/i18n/pt_BR.po | 6 +- addons/event/i18n/pt_PT.po | 6 +- addons/event/i18n/ro_RO.po | 6 +- addons/event/i18n/ru_RU.po | 6 +- addons/event/i18n/sl_SL.po | 6 +- addons/event/i18n/{cs_CS.po => sq_AL.po} | 10 +- addons/event/i18n/sv_SE.po | 6 +- addons/event/i18n/tr_TR.po | 6 +- addons/event/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/event/i18n/{sv_SV.po => vi_VN.po} | 12 +- addons/event/i18n/zh_CN.po | 6 +- addons/event/i18n/zh_TW.po | 6 +- addons/event_project/i18n/ar_AR.po | 6 +- addons/event_project/i18n/bg_BG.po | 6 +- addons/event_project/i18n/bs_BS.po | 6 +- addons/event_project/i18n/ca_ES.po | 6 +- addons/event_project/i18n/cs_CZ.po | 6 +- addons/event_project/i18n/de_DE.po | 6 +- addons/event_project/i18n/es_AR.po | 6 +- addons/event_project/i18n/es_ES.po | 6 +- addons/event_project/i18n/et_EE.po | 6 +- addons/event_project/i18n/event_project.pot | 6 +- addons/event_project/i18n/fi_FI.po | 6 +- addons/event_project/i18n/fr_FR.po | 6 +- addons/event_project/i18n/hr_HR.po | 6 +- addons/event_project/i18n/hu_HU.po | 6 +- addons/event_project/i18n/id_ID.po | 6 +- addons/event_project/i18n/it_IT.po | 6 +- addons/event_project/i18n/lt_LT.po | 6 +- addons/event_project/i18n/nl_BE.po | 6 +- addons/event_project/i18n/nl_NL.po | 6 +- addons/event_project/i18n/pl_PL.po | 6 +- addons/event_project/i18n/pt_BR.po | 6 +- addons/event_project/i18n/pt_PT.po | 6 +- addons/event_project/i18n/ro_RO.po | 6 +- addons/event_project/i18n/ru_RU.po | 6 +- addons/event_project/i18n/sl_SL.po | 6 +- .../event_project/i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/event_project/i18n/sv_SE.po | 6 +- addons/event_project/i18n/tr_TR.po | 6 +- .../event_project/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../event_project/i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/event_project/i18n/zh_CN.po | 6 +- addons/event_project/i18n/zh_TW.po | 6 +- addons/google_map/i18n/ar_AR.po | 6 +- addons/google_map/i18n/bg_BG.po | 6 +- addons/google_map/i18n/bs_BS.po | 6 +- addons/google_map/i18n/ca_ES.po | 6 +- addons/google_map/i18n/cs_CZ.po | 6 +- addons/google_map/i18n/de_DE.po | 6 +- addons/google_map/i18n/es_AR.po | 6 +- addons/google_map/i18n/es_ES.po | 6 +- addons/google_map/i18n/et_EE.po | 6 +- addons/google_map/i18n/fi_FI.po | 6 +- addons/google_map/i18n/fr_FR.po | 6 +- addons/google_map/i18n/google_map.pot | 6 +- addons/google_map/i18n/hr_HR.po | 6 +- addons/google_map/i18n/hu_HU.po | 6 +- addons/google_map/i18n/id_ID.po | 6 +- addons/google_map/i18n/it_IT.po | 6 +- addons/google_map/i18n/lt_LT.po | 6 +- addons/google_map/i18n/lv_LV.po | 2 +- addons/google_map/i18n/nl_BE.po | 6 +- addons/google_map/i18n/nl_NL.po | 6 +- addons/google_map/i18n/pl_PL.po | 6 +- addons/google_map/i18n/pt_BR.po | 6 +- addons/google_map/i18n/pt_PT.po | 6 +- addons/google_map/i18n/ro_RO.po | 6 +- addons/google_map/i18n/ru_RU.po | 6 +- addons/google_map/i18n/sl_SL.po | 6 +- addons/google_map/i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/google_map/i18n/sv_SE.po | 6 +- addons/google_map/i18n/tr_TR.po | 6 +- addons/google_map/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/google_map/i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/google_map/i18n/zh_CN.po | 6 +- addons/google_map/i18n/zh_TW.po | 6 +- addons/hr/i18n/ar_AR.po | 6 +- addons/hr/i18n/bg_BG.po | 6 +- addons/hr/i18n/bs_BS.po | 6 +- addons/hr/i18n/ca_ES.po | 6 +- addons/hr/i18n/cs_CZ.po | 6 +- addons/hr/i18n/de_DE.po | 6 +- addons/hr/i18n/es_AR.po | 6 +- addons/hr/i18n/es_ES.po | 6 +- addons/hr/i18n/et_EE.po | 6 +- addons/hr/i18n/fi_FI.po | 6 +- addons/hr/i18n/fr_FR.po | 34 +- addons/hr/i18n/hr.pot | 6 +- addons/hr/i18n/hr_HR.po | 6 +- addons/hr/i18n/hu_HU.po | 6 +- addons/hr/i18n/id_ID.po | 6 +- addons/hr/i18n/it_IT.po | 6 +- addons/hr/i18n/lt_LT.po | 6 +- addons/hr/i18n/nl_BE.po | 6 +- addons/hr/i18n/nl_NL.po | 6 +- addons/hr/i18n/pl_PL.po | 6 +- addons/hr/i18n/pt_BR.po | 6 +- addons/hr/i18n/pt_PT.po | 6 +- addons/hr/i18n/ro_RO.po | 8 +- addons/hr/i18n/ru_RU.po | 6 +- addons/hr/i18n/sl_SL.po | 6 +- addons/hr/i18n/{cs_CS.po => sq_AL.po} | 8 +- addons/hr/i18n/sv_SE.po | 6 +- addons/hr/i18n/th_TH.po | 2 +- addons/hr/i18n/tr_TR.po | 6 +- addons/hr/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/hr/i18n/{sv_SV.po => vi_VN.po} | 40 +- addons/hr/i18n/zh_CN.po | 6 +- addons/hr/i18n/zh_TW.po | 6 +- addons/hr_attendance/i18n/ar_AR.po | 6 +- addons/hr_attendance/i18n/bg_BG.po | 6 +- addons/hr_attendance/i18n/bs_BS.po | 6 +- addons/hr_attendance/i18n/ca_ES.po | 6 +- addons/hr_attendance/i18n/cs_CZ.po | 6 +- addons/hr_attendance/i18n/de_DE.po | 6 +- addons/hr_attendance/i18n/es_AR.po | 6 +- addons/hr_attendance/i18n/es_ES.po | 6 +- addons/hr_attendance/i18n/et_EE.po | 6 +- addons/hr_attendance/i18n/fi_FI.po | 6 +- addons/hr_attendance/i18n/fr_FR.po | 8 +- addons/hr_attendance/i18n/hr_HR.po | 6 +- addons/hr_attendance/i18n/hr_attendance.pot | 6 +- addons/hr_attendance/i18n/hu_HU.po | 6 +- addons/hr_attendance/i18n/id_ID.po | 6 +- addons/hr_attendance/i18n/it_IT.po | 6 +- addons/hr_attendance/i18n/lt_LT.po | 6 +- addons/hr_attendance/i18n/nl_BE.po | 6 +- addons/hr_attendance/i18n/nl_NL.po | 6 +- addons/hr_attendance/i18n/pl_PL.po | 6 +- addons/hr_attendance/i18n/pt_BR.po | 6 +- addons/hr_attendance/i18n/pt_PT.po | 6 +- addons/hr_attendance/i18n/ro_RO.po | 6 +- addons/hr_attendance/i18n/ru_RU.po | 6 +- addons/hr_attendance/i18n/sl_SL.po | 6 +- .../hr_attendance/i18n/{sv_SV.po => sq_AL.po} | 16 +- addons/hr_attendance/i18n/sv_SE.po | 6 +- addons/hr_attendance/i18n/tr_TR.po | 6 +- .../hr_attendance/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../hr_attendance/i18n/{cs_CS.po => vi_VN.po} | 28 +- addons/hr_attendance/i18n/zh_CN.po | 6 +- addons/hr_attendance/i18n/zh_TW.po | 6 +- addons/hr_contract/i18n/ar_AR.po | 6 +- addons/hr_contract/i18n/bg_BG.po | 6 +- addons/hr_contract/i18n/bs_BS.po | 6 +- addons/hr_contract/i18n/ca_ES.po | 6 +- addons/hr_contract/i18n/cs_CZ.po | 6 +- addons/hr_contract/i18n/de_DE.po | 6 +- addons/hr_contract/i18n/es_AR.po | 6 +- addons/hr_contract/i18n/es_ES.po | 6 +- addons/hr_contract/i18n/et_EE.po | 6 +- addons/hr_contract/i18n/fi_FI.po | 6 +- addons/hr_contract/i18n/fr_FR.po | 8 +- addons/hr_contract/i18n/hr_HR.po | 6 +- addons/hr_contract/i18n/hr_contract.pot | 6 +- addons/hr_contract/i18n/hu_HU.po | 6 +- addons/hr_contract/i18n/id_ID.po | 6 +- addons/hr_contract/i18n/it_IT.po | 6 +- addons/hr_contract/i18n/lt_LT.po | 6 +- addons/hr_contract/i18n/nl_BE.po | 6 +- addons/hr_contract/i18n/nl_NL.po | 6 +- addons/hr_contract/i18n/pl_PL.po | 6 +- addons/hr_contract/i18n/pt_BR.po | 6 +- addons/hr_contract/i18n/pt_PT.po | 6 +- addons/hr_contract/i18n/ro_RO.po | 6 +- addons/hr_contract/i18n/ru_RU.po | 6 +- addons/hr_contract/i18n/sl_SL.po | 6 +- .../hr_contract/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/hr_contract/i18n/sv_SE.po | 6 +- addons/hr_contract/i18n/tr_TR.po | 6 +- .../hr_contract/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../hr_contract/i18n/{sv_SV.po => vi_VN.po} | 10 +- addons/hr_contract/i18n/zh_CN.po | 6 +- addons/hr_contract/i18n/zh_TW.po | 6 +- addons/hr_expense/i18n/ar_AR.po | 6 +- addons/hr_expense/i18n/bg_BG.po | 6 +- addons/hr_expense/i18n/bs_BS.po | 6 +- addons/hr_expense/i18n/ca_ES.po | 6 +- addons/hr_expense/i18n/cs_CZ.po | 6 +- addons/hr_expense/i18n/de_DE.po | 6 +- addons/hr_expense/i18n/es_AR.po | 6 +- addons/hr_expense/i18n/es_ES.po | 6 +- addons/hr_expense/i18n/et_EE.po | 6 +- addons/hr_expense/i18n/fi_FI.po | 6 +- addons/hr_expense/i18n/fr_FR.po | 8 +- addons/hr_expense/i18n/hr_HR.po | 6 +- addons/hr_expense/i18n/hr_expense.pot | 6 +- addons/hr_expense/i18n/hu_HU.po | 6 +- addons/hr_expense/i18n/id_ID.po | 6 +- addons/hr_expense/i18n/it_IT.po | 6 +- addons/hr_expense/i18n/lt_LT.po | 6 +- addons/hr_expense/i18n/nl_BE.po | 6 +- addons/hr_expense/i18n/nl_NL.po | 6 +- addons/hr_expense/i18n/pl_PL.po | 6 +- addons/hr_expense/i18n/pt_BR.po | 6 +- addons/hr_expense/i18n/pt_PT.po | 6 +- addons/hr_expense/i18n/ro_RO.po | 6 +- addons/hr_expense/i18n/ru_RU.po | 6 +- addons/hr_expense/i18n/sl_SL.po | 6 +- addons/hr_expense/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/hr_expense/i18n/sv_SE.po | 6 +- addons/hr_expense/i18n/tr_TR.po | 6 +- addons/hr_expense/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/hr_expense/i18n/{sv_SV.po => vi_VN.po} | 10 +- addons/hr_expense/i18n/zh_CN.po | 6 +- addons/hr_expense/i18n/zh_TW.po | 6 +- addons/hr_holidays/i18n/ar_AR.po | 6 +- addons/hr_holidays/i18n/bg_BG.po | 6 +- addons/hr_holidays/i18n/bs_BS.po | 6 +- addons/hr_holidays/i18n/ca_ES.po | 6 +- addons/hr_holidays/i18n/cs_CZ.po | 6 +- addons/hr_holidays/i18n/de_DE.po | 6 +- addons/hr_holidays/i18n/es_AR.po | 6 +- addons/hr_holidays/i18n/es_ES.po | 6 +- addons/hr_holidays/i18n/et_EE.po | 6 +- addons/hr_holidays/i18n/fi_FI.po | 6 +- addons/hr_holidays/i18n/fr_FR.po | 94 +-- addons/hr_holidays/i18n/hr_HR.po | 6 +- addons/hr_holidays/i18n/hr_holidays.pot | 6 +- addons/hr_holidays/i18n/hu_HU.po | 6 +- addons/hr_holidays/i18n/id_ID.po | 6 +- addons/hr_holidays/i18n/it_IT.po | 6 +- addons/hr_holidays/i18n/lt_LT.po | 6 +- addons/hr_holidays/i18n/nl_BE.po | 6 +- addons/hr_holidays/i18n/nl_NL.po | 6 +- addons/hr_holidays/i18n/pl_PL.po | 6 +- addons/hr_holidays/i18n/pt_BR.po | 6 +- addons/hr_holidays/i18n/pt_PT.po | 6 +- addons/hr_holidays/i18n/ro_RO.po | 6 +- addons/hr_holidays/i18n/ru_RU.po | 6 +- addons/hr_holidays/i18n/sl_SL.po | 6 +- .../hr_holidays/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/hr_holidays/i18n/sv_SE.po | 12 +- addons/hr_holidays/i18n/th_TH.po | 2 +- addons/hr_holidays/i18n/tr_TR.po | 6 +- .../hr_holidays/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../hr_holidays/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/hr_holidays/i18n/zh_CN.po | 6 +- addons/hr_holidays/i18n/zh_TW.po | 6 +- addons/hr_timesheet/i18n/ar_AR.po | 6 +- addons/hr_timesheet/i18n/bg_BG.po | 6 +- addons/hr_timesheet/i18n/bs_BS.po | 6 +- addons/hr_timesheet/i18n/ca_ES.po | 6 +- addons/hr_timesheet/i18n/cs_CZ.po | 6 +- addons/hr_timesheet/i18n/de_DE.po | 6 +- addons/hr_timesheet/i18n/es_AR.po | 6 +- addons/hr_timesheet/i18n/es_ES.po | 6 +- addons/hr_timesheet/i18n/et_EE.po | 6 +- addons/hr_timesheet/i18n/fi_FI.po | 6 +- addons/hr_timesheet/i18n/fr_FR.po | 12 +- addons/hr_timesheet/i18n/hr_HR.po | 6 +- addons/hr_timesheet/i18n/hr_timesheet.pot | 6 +- addons/hr_timesheet/i18n/hu_HU.po | 6 +- addons/hr_timesheet/i18n/id_ID.po | 6 +- addons/hr_timesheet/i18n/it_IT.po | 6 +- addons/hr_timesheet/i18n/lt_LT.po | 6 +- addons/hr_timesheet/i18n/nl_BE.po | 6 +- addons/hr_timesheet/i18n/nl_NL.po | 6 +- addons/hr_timesheet/i18n/pl_PL.po | 6 +- addons/hr_timesheet/i18n/pt_BR.po | 6 +- addons/hr_timesheet/i18n/pt_PT.po | 6 +- addons/hr_timesheet/i18n/ro_RO.po | 6 +- addons/hr_timesheet/i18n/ru_RU.po | 6 +- addons/hr_timesheet/i18n/sl_SL.po | 6 +- .../hr_timesheet/i18n/{sv_SV.po => sq_AL.po} | 8 +- addons/hr_timesheet/i18n/sv_SE.po | 6 +- addons/hr_timesheet/i18n/tr_TR.po | 6 +- .../hr_timesheet/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../hr_timesheet/i18n/{cs_CS.po => vi_VN.po} | 50 +- addons/hr_timesheet/i18n/zh_CN.po | 6 +- addons/hr_timesheet/i18n/zh_TW.po | 6 +- addons/hr_timesheet_invoice/i18n/ar_AR.po | 6 +- addons/hr_timesheet_invoice/i18n/bg_BG.po | 6 +- addons/hr_timesheet_invoice/i18n/bs_BS.po | 6 +- addons/hr_timesheet_invoice/i18n/ca_ES.po | 6 +- addons/hr_timesheet_invoice/i18n/cs_CZ.po | 6 +- addons/hr_timesheet_invoice/i18n/de_DE.po | 6 +- addons/hr_timesheet_invoice/i18n/es_AR.po | 6 +- addons/hr_timesheet_invoice/i18n/es_ES.po | 6 +- addons/hr_timesheet_invoice/i18n/et_EE.po | 6 +- addons/hr_timesheet_invoice/i18n/fi_FI.po | 6 +- addons/hr_timesheet_invoice/i18n/fr_FR.po | 8 +- addons/hr_timesheet_invoice/i18n/hr_HR.po | 6 +- .../i18n/hr_timesheet_invoice.pot | 6 +- addons/hr_timesheet_invoice/i18n/hu_HU.po | 6 +- addons/hr_timesheet_invoice/i18n/id_ID.po | 6 +- addons/hr_timesheet_invoice/i18n/it_IT.po | 6 +- addons/hr_timesheet_invoice/i18n/lt_LT.po | 6 +- addons/hr_timesheet_invoice/i18n/nl_BE.po | 6 +- addons/hr_timesheet_invoice/i18n/nl_NL.po | 6 +- addons/hr_timesheet_invoice/i18n/pl_PL.po | 6 +- addons/hr_timesheet_invoice/i18n/pt_BR.po | 6 +- addons/hr_timesheet_invoice/i18n/pt_PT.po | 6 +- addons/hr_timesheet_invoice/i18n/ro_RO.po | 6 +- addons/hr_timesheet_invoice/i18n/ru_RU.po | 6 +- addons/hr_timesheet_invoice/i18n/sl_SL.po | 6 +- .../i18n/{sv_SV.po => sq_AL.po} | 8 +- addons/hr_timesheet_invoice/i18n/sv_SE.po | 6 +- addons/hr_timesheet_invoice/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{cs_CS.po => vi_VN.po} | 22 +- addons/hr_timesheet_invoice/i18n/zh_CN.po | 6 +- addons/hr_timesheet_invoice/i18n/zh_TW.po | 6 +- addons/hr_timesheet_sheet/i18n/ar_AR.po | 6 +- addons/hr_timesheet_sheet/i18n/bg_BG.po | 6 +- addons/hr_timesheet_sheet/i18n/bs_BS.po | 6 +- addons/hr_timesheet_sheet/i18n/ca_ES.po | 6 +- addons/hr_timesheet_sheet/i18n/cs_CZ.po | 6 +- addons/hr_timesheet_sheet/i18n/de_DE.po | 6 +- addons/hr_timesheet_sheet/i18n/es_AR.po | 6 +- addons/hr_timesheet_sheet/i18n/es_ES.po | 6 +- addons/hr_timesheet_sheet/i18n/et_EE.po | 6 +- addons/hr_timesheet_sheet/i18n/fi_FI.po | 6 +- addons/hr_timesheet_sheet/i18n/fr_FR.po | 8 +- addons/hr_timesheet_sheet/i18n/hr_HR.po | 6 +- .../i18n/hr_timesheet_sheet.pot | 6 +- addons/hr_timesheet_sheet/i18n/hu_HU.po | 6 +- addons/hr_timesheet_sheet/i18n/id_ID.po | 6 +- addons/hr_timesheet_sheet/i18n/it_IT.po | 6 +- addons/hr_timesheet_sheet/i18n/lt_LT.po | 6 +- addons/hr_timesheet_sheet/i18n/nl_BE.po | 6 +- addons/hr_timesheet_sheet/i18n/nl_NL.po | 6 +- addons/hr_timesheet_sheet/i18n/pl_PL.po | 6 +- addons/hr_timesheet_sheet/i18n/pt_BR.po | 6 +- addons/hr_timesheet_sheet/i18n/pt_PT.po | 6 +- addons/hr_timesheet_sheet/i18n/ro_RO.po | 6 +- addons/hr_timesheet_sheet/i18n/ru_RU.po | 6 +- addons/hr_timesheet_sheet/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 8 +- addons/hr_timesheet_sheet/i18n/sv_SE.po | 6 +- addons/hr_timesheet_sheet/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 10 +- addons/hr_timesheet_sheet/i18n/zh_CN.po | 6 +- addons/hr_timesheet_sheet/i18n/zh_TW.po | 6 +- addons/idea/i18n/ar_AR.po | 6 +- addons/idea/i18n/bg_BG.po | 6 +- addons/idea/i18n/bs_BS.po | 6 +- addons/idea/i18n/ca_ES.po | 6 +- addons/idea/i18n/cs_CZ.po | 6 +- addons/idea/i18n/de_DE.po | 6 +- addons/idea/i18n/es_AR.po | 6 +- addons/idea/i18n/es_ES.po | 6 +- addons/idea/i18n/et_EE.po | 6 +- addons/idea/i18n/fi_FI.po | 6 +- addons/idea/i18n/fr_FR.po | 8 +- addons/idea/i18n/hr_HR.po | 6 +- addons/idea/i18n/hu_HU.po | 6 +- addons/idea/i18n/id_ID.po | 6 +- addons/idea/i18n/idea.pot | 6 +- addons/idea/i18n/it_IT.po | 6 +- addons/idea/i18n/lt_LT.po | 6 +- addons/idea/i18n/nl_BE.po | 6 +- addons/idea/i18n/nl_NL.po | 6 +- addons/idea/i18n/pl_PL.po | 6 +- addons/idea/i18n/pt_BR.po | 6 +- addons/idea/i18n/pt_PT.po | 6 +- addons/idea/i18n/ro_RO.po | 6 +- addons/idea/i18n/ru_RU.po | 6 +- addons/idea/i18n/sl_SL.po | 6 +- addons/idea/i18n/{cs_CS.po => sq_AL.po} | 10 +- addons/idea/i18n/sv_SE.po | 6 +- addons/idea/i18n/tr_TR.po | 6 +- addons/idea/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/idea/i18n/{sv_SV.po => vi_VN.po} | 14 +- addons/idea/i18n/zh_CN.po | 6 +- addons/idea/i18n/zh_TW.po | 6 +- addons/l10n_be/i18n/ar_AR.po | 6 +- addons/l10n_be/i18n/bg_BG.po | 6 +- addons/l10n_be/i18n/bs_BS.po | 6 +- addons/l10n_be/i18n/ca_ES.po | 6 +- addons/l10n_be/i18n/cs_CZ.po | 6 +- addons/l10n_be/i18n/de_DE.po | 6 +- addons/l10n_be/i18n/es_AR.po | 6 +- addons/l10n_be/i18n/es_ES.po | 6 +- addons/l10n_be/i18n/et_EE.po | 6 +- addons/l10n_be/i18n/fi_FI.po | 6 +- addons/l10n_be/i18n/fr_FR.po | 6 +- addons/l10n_be/i18n/hr_HR.po | 6 +- addons/l10n_be/i18n/hu_HU.po | 6 +- addons/l10n_be/i18n/id_ID.po | 6 +- addons/l10n_be/i18n/it_IT.po | 6 +- addons/l10n_be/i18n/ko_KO.po | 2 +- addons/l10n_be/i18n/l10n_be.pot | 6 +- addons/l10n_be/i18n/lt_LT.po | 6 +- addons/l10n_be/i18n/nl_BE.po | 6 +- addons/l10n_be/i18n/nl_NL.po | 6 +- addons/l10n_be/i18n/pl_PL.po | 6 +- addons/l10n_be/i18n/pt_BR.po | 6 +- addons/l10n_be/i18n/pt_PT.po | 8 +- addons/l10n_be/i18n/ro_RO.po | 6 +- addons/l10n_be/i18n/ru_RU.po | 6 +- addons/l10n_be/i18n/sl_SL.po | 6 +- addons/l10n_be/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/l10n_be/i18n/sv_SE.po | 6 +- addons/l10n_be/i18n/tr_TR.po | 6 +- addons/l10n_be/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/l10n_be/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/l10n_be/i18n/zh_CN.po | 6 +- addons/l10n_be/i18n/zh_TW.po | 6 +- addons/l10n_be/i18n/znd_ZND.po | 2 +- addons/l10n_ch/i18n/ar_AR.po | 6 +- addons/l10n_ch/i18n/bg_BG.po | 6 +- addons/l10n_ch/i18n/bs_BS.po | 6 +- addons/l10n_ch/i18n/ca_ES.po | 6 +- addons/l10n_ch/i18n/cs_CZ.po | 6 +- addons/l10n_ch/i18n/de_DE.po | 6 +- addons/l10n_ch/i18n/es_AR.po | 6 +- addons/l10n_ch/i18n/es_ES.po | 6 +- addons/l10n_ch/i18n/et_EE.po | 6 +- addons/l10n_ch/i18n/fi_FI.po | 6 +- addons/l10n_ch/i18n/fr_FR.po | 8 +- addons/l10n_ch/i18n/hr_HR.po | 6 +- addons/l10n_ch/i18n/hu_HU.po | 6 +- addons/l10n_ch/i18n/id_ID.po | 6 +- addons/l10n_ch/i18n/it_IT.po | 6 +- addons/l10n_ch/i18n/l10n_ch.pot | 6 +- addons/l10n_ch/i18n/lt_LT.po | 6 +- addons/l10n_ch/i18n/nl_BE.po | 6 +- addons/l10n_ch/i18n/nl_NL.po | 6 +- addons/l10n_ch/i18n/pl_PL.po | 6 +- addons/l10n_ch/i18n/pt_BR.po | 6 +- addons/l10n_ch/i18n/pt_PT.po | 6 +- addons/l10n_ch/i18n/ro_RO.po | 6 +- addons/l10n_ch/i18n/ru_RU.po | 6 +- addons/l10n_ch/i18n/sl_SL.po | 6 +- addons/l10n_ch/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/l10n_ch/i18n/sv_SE.po | 6 +- addons/l10n_ch/i18n/tr_TR.po | 6 +- addons/l10n_ch/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/l10n_ch/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/l10n_ch/i18n/zh_CN.po | 6 +- addons/l10n_ch/i18n/zh_TW.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/ar_AR.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/bg_BG.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/bs_BS.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/ca_ES.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/cs_CZ.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/de_DE.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/es_AR.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/es_ES.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/et_EE.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/fi_FI.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/fr_FR.po | 8 +- addons/l10n_ch_chart_c2c_pcg/i18n/hr_HR.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/hu_HU.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/id_ID.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/it_IT.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/ko_KO.po | 2 +- .../i18n/l10n_ch_chart_c2c_pcg.pot | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/lt_LT.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/nl_BE.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/nl_NL.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/pl_PL.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/pt_BR.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/pt_PT.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/ro_RO.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/ru_RU.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/sv_SE.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/l10n_ch_chart_c2c_pcg/i18n/zh_CN.po | 6 +- addons/l10n_ch_chart_c2c_pcg/i18n/zh_TW.po | 6 +- addons/l10n_chart_uk_minimal/i18n/ar_AR.po | 6 +- addons/l10n_chart_uk_minimal/i18n/bg_BG.po | 6 +- addons/l10n_chart_uk_minimal/i18n/bs_BS.po | 6 +- addons/l10n_chart_uk_minimal/i18n/ca_ES.po | 6 +- addons/l10n_chart_uk_minimal/i18n/cs_CZ.po | 6 +- addons/l10n_chart_uk_minimal/i18n/de_DE.po | 6 +- addons/l10n_chart_uk_minimal/i18n/es_AR.po | 6 +- addons/l10n_chart_uk_minimal/i18n/es_ES.po | 6 +- addons/l10n_chart_uk_minimal/i18n/et_EE.po | 6 +- addons/l10n_chart_uk_minimal/i18n/fi_FI.po | 6 +- addons/l10n_chart_uk_minimal/i18n/fr_FR.po | 6 +- addons/l10n_chart_uk_minimal/i18n/hr_HR.po | 6 +- addons/l10n_chart_uk_minimal/i18n/hu_HU.po | 6 +- addons/l10n_chart_uk_minimal/i18n/id_ID.po | 6 +- addons/l10n_chart_uk_minimal/i18n/it_IT.po | 6 +- addons/l10n_chart_uk_minimal/i18n/ko_KO.po | 2 +- .../i18n/l10n_chart_uk_minimal.pot | 6 +- addons/l10n_chart_uk_minimal/i18n/lt_LT.po | 6 +- addons/l10n_chart_uk_minimal/i18n/nl_BE.po | 6 +- addons/l10n_chart_uk_minimal/i18n/nl_NL.po | 6 +- addons/l10n_chart_uk_minimal/i18n/pl_PL.po | 6 +- addons/l10n_chart_uk_minimal/i18n/pt_BR.po | 6 +- addons/l10n_chart_uk_minimal/i18n/pt_PT.po | 6 +- addons/l10n_chart_uk_minimal/i18n/ro_RO.po | 6 +- addons/l10n_chart_uk_minimal/i18n/ru_RU.po | 6 +- addons/l10n_chart_uk_minimal/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/l10n_chart_uk_minimal/i18n/sv_SE.po | 6 +- addons/l10n_chart_uk_minimal/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 14 +- addons/l10n_chart_uk_minimal/i18n/zh_CN.po | 6 +- addons/l10n_chart_uk_minimal/i18n/zh_TW.po | 6 +- addons/l10n_fr/i18n/ar_AR.po | 6 +- addons/l10n_fr/i18n/bg_BG.po | 6 +- addons/l10n_fr/i18n/bs_BS.po | 6 +- addons/l10n_fr/i18n/ca_ES.po | 6 +- addons/l10n_fr/i18n/cs_CZ.po | 6 +- addons/l10n_fr/i18n/de_DE.po | 6 +- addons/l10n_fr/i18n/es_AR.po | 6 +- addons/l10n_fr/i18n/es_ES.po | 6 +- addons/l10n_fr/i18n/et_EE.po | 6 +- addons/l10n_fr/i18n/fi_FI.po | 6 +- addons/l10n_fr/i18n/fr_FR.po | 6 +- addons/l10n_fr/i18n/hr_HR.po | 6 +- addons/l10n_fr/i18n/hu_HU.po | 6 +- addons/l10n_fr/i18n/id_ID.po | 6 +- addons/l10n_fr/i18n/it_IT.po | 6 +- addons/l10n_fr/i18n/ko_KO.po | 2 +- addons/l10n_fr/i18n/l10n_fr.pot | 6 +- addons/l10n_fr/i18n/lt_LT.po | 6 +- addons/l10n_fr/i18n/nl_BE.po | 6 +- addons/l10n_fr/i18n/nl_NL.po | 6 +- addons/l10n_fr/i18n/pl_PL.po | 6 +- addons/l10n_fr/i18n/pt_BR.po | 6 +- addons/l10n_fr/i18n/pt_PT.po | 6 +- addons/l10n_fr/i18n/ro_RO.po | 6 +- addons/l10n_fr/i18n/ru_RU.po | 6 +- addons/l10n_fr/i18n/sl_SL.po | 6 +- addons/l10n_fr/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/l10n_fr/i18n/sv_SE.po | 6 +- addons/l10n_fr/i18n/tr_TR.po | 6 +- addons/l10n_fr/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/l10n_fr/i18n/{sv_SV.po => vi_VN.po} | 18 +- addons/l10n_fr/i18n/zh_CN.po | 6 +- addons/l10n_fr/i18n/zh_TW.po | 6 +- addons/l10n_lu/i18n/ar_AR.po | 6 +- addons/l10n_lu/i18n/bg_BG.po | 6 +- addons/l10n_lu/i18n/bs_BS.po | 6 +- addons/l10n_lu/i18n/ca_ES.po | 6 +- addons/l10n_lu/i18n/cs_CZ.po | 6 +- addons/l10n_lu/i18n/de_DE.po | 6 +- addons/l10n_lu/i18n/es_AR.po | 6 +- addons/l10n_lu/i18n/es_ES.po | 6 +- addons/l10n_lu/i18n/et_EE.po | 6 +- addons/l10n_lu/i18n/fi_FI.po | 6 +- addons/l10n_lu/i18n/fr_FR.po | 6 +- addons/l10n_lu/i18n/hr_HR.po | 6 +- addons/l10n_lu/i18n/hu_HU.po | 6 +- addons/l10n_lu/i18n/id_ID.po | 6 +- addons/l10n_lu/i18n/it_IT.po | 6 +- addons/l10n_lu/i18n/ko_KO.po | 2 +- addons/l10n_lu/i18n/l10n_lu.pot | 6 +- addons/l10n_lu/i18n/lt_LT.po | 6 +- addons/l10n_lu/i18n/nl_BE.po | 6 +- addons/l10n_lu/i18n/nl_NL.po | 6 +- addons/l10n_lu/i18n/pl_PL.po | 6 +- addons/l10n_lu/i18n/pt_BR.po | 6 +- addons/l10n_lu/i18n/pt_PT.po | 6 +- addons/l10n_lu/i18n/ro_RO.po | 6 +- addons/l10n_lu/i18n/ru_RU.po | 6 +- addons/l10n_lu/i18n/sl_SL.po | 6 +- addons/l10n_lu/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/l10n_lu/i18n/sv_SE.po | 6 +- addons/l10n_lu/i18n/tr_TR.po | 6 +- addons/l10n_lu/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/l10n_lu/i18n/{sv_SV.po => vi_VN.po} | 14 +- addons/l10n_lu/i18n/zh_CN.po | 6 +- addons/l10n_lu/i18n/zh_TW.po | 6 +- addons/membership/i18n/ar_AR.po | 6 +- addons/membership/i18n/bg_BG.po | 6 +- addons/membership/i18n/bs_BS.po | 6 +- addons/membership/i18n/ca_ES.po | 6 +- addons/membership/i18n/cs_CZ.po | 6 +- addons/membership/i18n/de_DE.po | 6 +- addons/membership/i18n/es_AR.po | 6 +- addons/membership/i18n/es_ES.po | 6 +- addons/membership/i18n/et_EE.po | 6 +- addons/membership/i18n/fi_FI.po | 6 +- addons/membership/i18n/fr_FR.po | 12 +- addons/membership/i18n/hr_HR.po | 6 +- addons/membership/i18n/hu_HU.po | 6 +- addons/membership/i18n/id_ID.po | 6 +- addons/membership/i18n/it_IT.po | 6 +- addons/membership/i18n/lt_LT.po | 6 +- addons/membership/i18n/membership.pot | 6 +- addons/membership/i18n/nl_BE.po | 6 +- addons/membership/i18n/nl_NL.po | 6 +- addons/membership/i18n/pl_PL.po | 6 +- addons/membership/i18n/pt_BR.po | 6 +- addons/membership/i18n/pt_PT.po | 6 +- addons/membership/i18n/ro_RO.po | 6 +- addons/membership/i18n/ru_RU.po | 6 +- addons/membership/i18n/sl_SL.po | 6 +- addons/membership/i18n/{cs_CS.po => sq_AL.po} | 12 +- addons/membership/i18n/sv_SE.po | 6 +- addons/membership/i18n/tr_TR.po | 6 +- addons/membership/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/membership/i18n/{sv_SV.po => vi_VN.po} | 10 +- addons/membership/i18n/zh_CN.po | 6 +- addons/membership/i18n/zh_TW.po | 6 +- addons/mrp/i18n/ar_AR.po | 6 +- addons/mrp/i18n/bg_BG.po | 6 +- addons/mrp/i18n/bs_BS.po | 6 +- addons/mrp/i18n/ca_ES.po | 6 +- addons/mrp/i18n/cs_CZ.po | 6 +- addons/mrp/i18n/de_DE.po | 6 +- addons/mrp/i18n/es_AR.po | 6 +- addons/mrp/i18n/es_ES.po | 6 +- addons/mrp/i18n/et_EE.po | 6 +- addons/mrp/i18n/fi_FI.po | 6 +- addons/mrp/i18n/fr_FR.po | 387 +++------ addons/mrp/i18n/hr_HR.po | 6 +- addons/mrp/i18n/hu_HU.po | 6 +- addons/mrp/i18n/id_ID.po | 6 +- addons/mrp/i18n/it_IT.po | 6 +- addons/mrp/i18n/lt_LT.po | 6 +- addons/mrp/i18n/mrp.pot | 6 +- addons/mrp/i18n/nl_BE.po | 6 +- addons/mrp/i18n/nl_NL.po | 6 +- addons/mrp/i18n/pl_PL.po | 6 +- addons/mrp/i18n/pt_BR.po | 6 +- addons/mrp/i18n/pt_PT.po | 6 +- addons/mrp/i18n/ro_RO.po | 6 +- addons/mrp/i18n/ru_RU.po | 6 +- addons/mrp/i18n/sl_SL.po | 6 +- addons/mrp/i18n/{cs_CS.po => sq_AL.po} | 26 +- addons/mrp/i18n/sv_SE.po | 6 +- addons/mrp/i18n/tr_TR.po | 6 +- addons/mrp/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/mrp/i18n/{sv_SV.po => vi_VN.po} | 78 +- addons/mrp/i18n/zh_CN.po | 6 +- addons/mrp/i18n/zh_TW.po | 6 +- addons/mrp_jit/i18n/ar_AR.po | 6 +- addons/mrp_jit/i18n/bg_BG.po | 6 +- addons/mrp_jit/i18n/bs_BS.po | 6 +- addons/mrp_jit/i18n/ca_ES.po | 6 +- addons/mrp_jit/i18n/cs_CZ.po | 6 +- addons/mrp_jit/i18n/de_DE.po | 6 +- addons/mrp_jit/i18n/es_AR.po | 6 +- addons/mrp_jit/i18n/es_ES.po | 6 +- addons/mrp_jit/i18n/et_EE.po | 6 +- addons/mrp_jit/i18n/fi_FI.po | 6 +- addons/mrp_jit/i18n/fr_FR.po | 6 +- addons/mrp_jit/i18n/hr_HR.po | 6 +- addons/mrp_jit/i18n/hu_HU.po | 6 +- addons/mrp_jit/i18n/id_ID.po | 6 +- addons/mrp_jit/i18n/it_IT.po | 6 +- addons/mrp_jit/i18n/ko_KO.po | 2 +- addons/mrp_jit/i18n/lt_LT.po | 6 +- addons/mrp_jit/i18n/mrp_jit.pot | 6 +- addons/mrp_jit/i18n/nl_BE.po | 6 +- addons/mrp_jit/i18n/nl_NL.po | 6 +- addons/mrp_jit/i18n/pl_PL.po | 6 +- addons/mrp_jit/i18n/pt_BR.po | 6 +- addons/mrp_jit/i18n/pt_PT.po | 6 +- addons/mrp_jit/i18n/ro_RO.po | 6 +- addons/mrp_jit/i18n/ru_RU.po | 6 +- addons/mrp_jit/i18n/sl_SL.po | 6 +- addons/mrp_jit/i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/mrp_jit/i18n/sv_SE.po | 6 +- addons/mrp_jit/i18n/tr_TR.po | 6 +- addons/mrp_jit/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/mrp_jit/i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/mrp_jit/i18n/zh_CN.po | 6 +- addons/mrp_jit/i18n/zh_TW.po | 6 +- addons/mrp_operations/i18n/ar_AR.po | 6 +- addons/mrp_operations/i18n/bg_BG.po | 6 +- addons/mrp_operations/i18n/bs_BS.po | 6 +- addons/mrp_operations/i18n/ca_ES.po | 6 +- addons/mrp_operations/i18n/cs_CZ.po | 6 +- addons/mrp_operations/i18n/de_DE.po | 6 +- addons/mrp_operations/i18n/es_AR.po | 6 +- addons/mrp_operations/i18n/es_ES.po | 6 +- addons/mrp_operations/i18n/et_EE.po | 6 +- addons/mrp_operations/i18n/fi_FI.po | 6 +- addons/mrp_operations/i18n/fr_FR.po | 8 +- addons/mrp_operations/i18n/hr_HR.po | 6 +- addons/mrp_operations/i18n/hu_HU.po | 6 +- addons/mrp_operations/i18n/id_ID.po | 6 +- addons/mrp_operations/i18n/it_IT.po | 6 +- addons/mrp_operations/i18n/lt_LT.po | 6 +- addons/mrp_operations/i18n/mrp_operations.pot | 6 +- addons/mrp_operations/i18n/nl_BE.po | 6 +- addons/mrp_operations/i18n/nl_NL.po | 6 +- addons/mrp_operations/i18n/pl_PL.po | 6 +- addons/mrp_operations/i18n/pt_BR.po | 6 +- addons/mrp_operations/i18n/pt_PT.po | 6 +- addons/mrp_operations/i18n/ro_RO.po | 6 +- addons/mrp_operations/i18n/ru_RU.po | 6 +- addons/mrp_operations/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/mrp_operations/i18n/sv_SE.po | 6 +- addons/mrp_operations/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/mrp_operations/i18n/zh_CN.po | 6 +- addons/mrp_operations/i18n/zh_TW.po | 6 +- addons/mrp_repair/i18n/ar_AR.po | 6 +- addons/mrp_repair/i18n/bg_BG.po | 6 +- addons/mrp_repair/i18n/bs_BS.po | 6 +- addons/mrp_repair/i18n/ca_ES.po | 6 +- addons/mrp_repair/i18n/cs_CZ.po | 6 +- addons/mrp_repair/i18n/de_DE.po | 6 +- addons/mrp_repair/i18n/es_AR.po | 6 +- addons/mrp_repair/i18n/es_ES.po | 6 +- addons/mrp_repair/i18n/et_EE.po | 6 +- addons/mrp_repair/i18n/fi_FI.po | 6 +- addons/mrp_repair/i18n/fr_FR.po | 8 +- addons/mrp_repair/i18n/hr_HR.po | 6 +- addons/mrp_repair/i18n/hu_HU.po | 6 +- addons/mrp_repair/i18n/id_ID.po | 6 +- addons/mrp_repair/i18n/it_IT.po | 6 +- addons/mrp_repair/i18n/lt_LT.po | 6 +- addons/mrp_repair/i18n/mrp_repair.pot | 6 +- addons/mrp_repair/i18n/nl_BE.po | 6 +- addons/mrp_repair/i18n/nl_NL.po | 6 +- addons/mrp_repair/i18n/pl_PL.po | 6 +- addons/mrp_repair/i18n/pt_BR.po | 6 +- addons/mrp_repair/i18n/pt_PT.po | 6 +- addons/mrp_repair/i18n/ro_RO.po | 6 +- addons/mrp_repair/i18n/ru_RU.po | 6 +- addons/mrp_repair/i18n/sl_SL.po | 6 +- addons/mrp_repair/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/mrp_repair/i18n/sv_SE.po | 6 +- addons/mrp_repair/i18n/tr_TR.po | 6 +- addons/mrp_repair/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/mrp_repair/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/mrp_repair/i18n/zh_CN.po | 6 +- addons/mrp_repair/i18n/zh_TW.po | 6 +- addons/mrp_subproduct/i18n/ar_AR.po | 6 +- addons/mrp_subproduct/i18n/bg_BG.po | 6 +- addons/mrp_subproduct/i18n/bs_BS.po | 6 +- addons/mrp_subproduct/i18n/ca_ES.po | 6 +- addons/mrp_subproduct/i18n/cs_CZ.po | 6 +- addons/mrp_subproduct/i18n/de_DE.po | 6 +- addons/mrp_subproduct/i18n/es_AR.po | 6 +- addons/mrp_subproduct/i18n/es_ES.po | 6 +- addons/mrp_subproduct/i18n/et_EE.po | 6 +- addons/mrp_subproduct/i18n/fi_FI.po | 6 +- addons/mrp_subproduct/i18n/fr_FR.po | 6 +- addons/mrp_subproduct/i18n/hr_HR.po | 6 +- addons/mrp_subproduct/i18n/hu_HU.po | 6 +- addons/mrp_subproduct/i18n/id_ID.po | 6 +- addons/mrp_subproduct/i18n/it_IT.po | 6 +- addons/mrp_subproduct/i18n/lt_LT.po | 6 +- addons/mrp_subproduct/i18n/mrp_subproduct.pot | 6 +- addons/mrp_subproduct/i18n/nl_BE.po | 6 +- addons/mrp_subproduct/i18n/nl_NL.po | 6 +- addons/mrp_subproduct/i18n/pl_PL.po | 6 +- addons/mrp_subproduct/i18n/pt_BR.po | 6 +- addons/mrp_subproduct/i18n/pt_PT.po | 6 +- addons/mrp_subproduct/i18n/ro_RO.po | 6 +- addons/mrp_subproduct/i18n/ru_RU.po | 6 +- addons/mrp_subproduct/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/mrp_subproduct/i18n/sv_SE.po | 6 +- addons/mrp_subproduct/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/mrp_subproduct/i18n/zh_CN.po | 6 +- addons/mrp_subproduct/i18n/zh_TW.po | 6 +- addons/point_of_sale/i18n/ar_AR.po | 66 +- addons/point_of_sale/i18n/bg_BG.po | 66 +- addons/point_of_sale/i18n/bs_BS.po | 66 +- addons/point_of_sale/i18n/ca_ES.po | 76 +- addons/point_of_sale/i18n/cs_CZ.po | 66 +- addons/point_of_sale/i18n/de_DE.po | 76 +- addons/point_of_sale/i18n/es_AR.po | 66 +- addons/point_of_sale/i18n/es_ES.po | 76 +- addons/point_of_sale/i18n/et_EE.po | 76 +- addons/point_of_sale/i18n/fi_FI.po | 66 +- addons/point_of_sale/i18n/fr_FR.po | 156 ++-- addons/point_of_sale/i18n/hr_HR.po | 66 +- addons/point_of_sale/i18n/hu_HU.po | 66 +- addons/point_of_sale/i18n/id_ID.po | 66 +- addons/point_of_sale/i18n/it_IT.po | 76 +- addons/point_of_sale/i18n/lt_LT.po | 66 +- addons/point_of_sale/i18n/nl_BE.po | 66 +- addons/point_of_sale/i18n/nl_NL.po | 66 +- addons/point_of_sale/i18n/pl_PL.po | 66 +- addons/point_of_sale/i18n/point_of_sale.pot | 66 +- addons/point_of_sale/i18n/pt_BR.po | 76 +- addons/point_of_sale/i18n/pt_PT.po | 76 +- addons/point_of_sale/i18n/ro_RO.po | 66 +- addons/point_of_sale/i18n/ru_RU.po | 76 +- addons/point_of_sale/i18n/sl_SL.po | 76 +- .../point_of_sale/i18n/{cs_CS.po => sq_AL.po} | 68 +- addons/point_of_sale/i18n/sv_SE.po | 66 +- addons/point_of_sale/i18n/tr_TR.po | 66 +- .../point_of_sale/i18n/{uk_UK.po => uk_UA.po} | 66 +- .../point_of_sale/i18n/{sv_SV.po => vi_VN.po} | 70 +- addons/point_of_sale/i18n/zh_CN.po | 66 +- addons/point_of_sale/i18n/zh_TW.po | 66 +- addons/process/i18n/ar_AR.po | 6 +- addons/process/i18n/bg_BG.po | 6 +- addons/process/i18n/bs_BS.po | 6 +- addons/process/i18n/ca_ES.po | 6 +- addons/process/i18n/cs_CZ.po | 6 +- addons/process/i18n/de_DE.po | 6 +- addons/process/i18n/es_AR.po | 6 +- addons/process/i18n/es_ES.po | 6 +- addons/process/i18n/et_EE.po | 6 +- addons/process/i18n/fi_FI.po | 6 +- addons/process/i18n/fr_FR.po | 8 +- addons/process/i18n/hi_HI.po | 2 +- addons/process/i18n/hr_HR.po | 6 +- addons/process/i18n/hu_HU.po | 6 +- addons/process/i18n/id_ID.po | 6 +- addons/process/i18n/it_IT.po | 6 +- addons/process/i18n/lt_LT.po | 6 +- addons/process/i18n/nl_BE.po | 6 +- addons/process/i18n/nl_NL.po | 6 +- addons/process/i18n/pl_PL.po | 6 +- addons/process/i18n/process.pot | 6 +- addons/process/i18n/pt_BR.po | 6 +- addons/process/i18n/pt_PT.po | 6 +- addons/process/i18n/ro_RO.po | 6 +- addons/process/i18n/ru_RU.po | 6 +- addons/process/i18n/sl_SL.po | 6 +- addons/process/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/process/i18n/sv_SE.po | 6 +- addons/process/i18n/tr_TR.po | 6 +- addons/process/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/process/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/process/i18n/zh_CN.po | 6 +- addons/process/i18n/zh_TW.po | 6 +- addons/product/i18n/ar_AR.po | 6 +- addons/product/i18n/bg_BG.po | 6 +- addons/product/i18n/bs_BS.po | 6 +- addons/product/i18n/ca_ES.po | 6 +- addons/product/i18n/cs_CZ.po | 6 +- addons/product/i18n/de_DE.po | 6 +- addons/product/i18n/es_AR.po | 6 +- addons/product/i18n/es_ES.po | 6 +- addons/product/i18n/et_EE.po | 8 +- addons/product/i18n/fi_FI.po | 6 +- addons/product/i18n/fr_FR.po | 104 +-- addons/product/i18n/hr_HR.po | 6 +- addons/product/i18n/hu_HU.po | 6 +- addons/product/i18n/id_ID.po | 6 +- addons/product/i18n/it_IT.po | 6 +- addons/product/i18n/lt_LT.po | 6 +- addons/product/i18n/nb_NB.po | 2 +- addons/product/i18n/nl_BE.po | 6 +- addons/product/i18n/nl_NL.po | 6 +- addons/product/i18n/pl_PL.po | 6 +- addons/product/i18n/product.pot | 6 +- addons/product/i18n/pt_BR.po | 6 +- addons/product/i18n/pt_PT.po | 6 +- addons/product/i18n/ro_RO.po | 6 +- addons/product/i18n/ru_RU.po | 6 +- addons/product/i18n/sl_SL.po | 6 +- addons/product/i18n/{sv_SV.po => sq_AL.po} | 68 +- addons/product/i18n/sv_SE.po | 6 +- addons/product/i18n/tr_TR.po | 6 +- addons/product/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/product/i18n/{cs_CS.po => vi_VN.po} | 140 ++-- addons/product/i18n/zh_CN.po | 6 +- addons/product/i18n/zh_TW.po | 6 +- addons/product_margin/i18n/ar_AR.po | 6 +- addons/product_margin/i18n/bg_BG.po | 6 +- addons/product_margin/i18n/bs_BS.po | 6 +- addons/product_margin/i18n/ca_ES.po | 6 +- addons/product_margin/i18n/cs_CZ.po | 6 +- addons/product_margin/i18n/de_DE.po | 6 +- addons/product_margin/i18n/es_AR.po | 6 +- addons/product_margin/i18n/es_ES.po | 6 +- addons/product_margin/i18n/et_EE.po | 6 +- addons/product_margin/i18n/fi_FI.po | 6 +- addons/product_margin/i18n/fr_FR.po | 6 +- addons/product_margin/i18n/hr_HR.po | 6 +- addons/product_margin/i18n/hu_HU.po | 6 +- addons/product_margin/i18n/id_ID.po | 6 +- addons/product_margin/i18n/it_IT.po | 6 +- addons/product_margin/i18n/lt_LT.po | 6 +- addons/product_margin/i18n/nl_BE.po | 6 +- addons/product_margin/i18n/nl_NL.po | 6 +- addons/product_margin/i18n/pl_PL.po | 6 +- addons/product_margin/i18n/product_margin.pot | 6 +- addons/product_margin/i18n/pt_BR.po | 6 +- addons/product_margin/i18n/pt_PT.po | 6 +- addons/product_margin/i18n/ro_RO.po | 6 +- addons/product_margin/i18n/ru_RU.po | 6 +- addons/product_margin/i18n/sl_SL.po | 6 +- .../i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/product_margin/i18n/sv_SE.po | 6 +- addons/product_margin/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/product_margin/i18n/zh_CN.po | 6 +- addons/product_margin/i18n/zh_TW.po | 6 +- addons/profile_accounting/i18n/ar_AR.po | 6 +- addons/profile_accounting/i18n/bg_BG.po | 6 +- addons/profile_accounting/i18n/bs_BS.po | 6 +- addons/profile_accounting/i18n/ca_ES.po | 6 +- addons/profile_accounting/i18n/cs_CZ.po | 6 +- addons/profile_accounting/i18n/de_DE.po | 6 +- addons/profile_accounting/i18n/es_AR.po | 6 +- addons/profile_accounting/i18n/es_ES.po | 6 +- addons/profile_accounting/i18n/et_EE.po | 6 +- addons/profile_accounting/i18n/fi_FI.po | 6 +- addons/profile_accounting/i18n/fr_FR.po | 8 +- addons/profile_accounting/i18n/hr_HR.po | 6 +- addons/profile_accounting/i18n/hu_HU.po | 6 +- addons/profile_accounting/i18n/id_ID.po | 6 +- addons/profile_accounting/i18n/it_IT.po | 6 +- addons/profile_accounting/i18n/lt_LT.po | 6 +- addons/profile_accounting/i18n/nl_BE.po | 6 +- addons/profile_accounting/i18n/nl_NL.po | 6 +- addons/profile_accounting/i18n/pl_PL.po | 6 +- .../i18n/profile_accounting.pot | 6 +- addons/profile_accounting/i18n/pt_BR.po | 6 +- addons/profile_accounting/i18n/pt_PT.po | 6 +- addons/profile_accounting/i18n/ro_RO.po | 6 +- addons/profile_accounting/i18n/ru_RU.po | 6 +- addons/profile_accounting/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/profile_accounting/i18n/sv_SE.po | 6 +- addons/profile_accounting/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/profile_accounting/i18n/zh_CN.po | 6 +- addons/profile_accounting/i18n/zh_TW.po | 6 +- addons/profile_association/i18n/ar_AR.po | 6 +- addons/profile_association/i18n/bg_BG.po | 6 +- addons/profile_association/i18n/bs_BS.po | 6 +- addons/profile_association/i18n/ca_ES.po | 6 +- addons/profile_association/i18n/cs_CZ.po | 6 +- addons/profile_association/i18n/de_DE.po | 6 +- addons/profile_association/i18n/es_AR.po | 6 +- addons/profile_association/i18n/es_ES.po | 6 +- addons/profile_association/i18n/et_EE.po | 6 +- addons/profile_association/i18n/fi_FI.po | 6 +- addons/profile_association/i18n/fr_FR.po | 8 +- addons/profile_association/i18n/hr_HR.po | 6 +- addons/profile_association/i18n/hu_HU.po | 6 +- addons/profile_association/i18n/id_ID.po | 6 +- addons/profile_association/i18n/it_IT.po | 6 +- addons/profile_association/i18n/lt_LT.po | 6 +- addons/profile_association/i18n/nl_BE.po | 6 +- addons/profile_association/i18n/nl_NL.po | 6 +- addons/profile_association/i18n/pl_PL.po | 6 +- .../i18n/profile_association.pot | 6 +- addons/profile_association/i18n/pt_BR.po | 6 +- addons/profile_association/i18n/pt_PT.po | 6 +- addons/profile_association/i18n/ro_RO.po | 6 +- addons/profile_association/i18n/ru_RU.po | 6 +- addons/profile_association/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/profile_association/i18n/sv_SE.po | 6 +- addons/profile_association/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/profile_association/i18n/zh_CN.po | 6 +- addons/profile_association/i18n/zh_TW.po | 6 +- addons/profile_auction/i18n/ar_AR.po | 6 +- addons/profile_auction/i18n/bg_BG.po | 6 +- addons/profile_auction/i18n/bs_BS.po | 6 +- addons/profile_auction/i18n/ca_ES.po | 6 +- addons/profile_auction/i18n/cs_CZ.po | 6 +- addons/profile_auction/i18n/de_DE.po | 6 +- addons/profile_auction/i18n/es_AR.po | 6 +- addons/profile_auction/i18n/es_ES.po | 6 +- addons/profile_auction/i18n/et_EE.po | 6 +- addons/profile_auction/i18n/fi_FI.po | 6 +- addons/profile_auction/i18n/fr_FR.po | 6 +- addons/profile_auction/i18n/hr_HR.po | 6 +- addons/profile_auction/i18n/hu_HU.po | 6 +- addons/profile_auction/i18n/id_ID.po | 6 +- addons/profile_auction/i18n/it_IT.po | 6 +- addons/profile_auction/i18n/lt_LT.po | 6 +- addons/profile_auction/i18n/nl_BE.po | 6 +- addons/profile_auction/i18n/nl_NL.po | 6 +- addons/profile_auction/i18n/pl_PL.po | 6 +- .../profile_auction/i18n/profile_auction.pot | 6 +- addons/profile_auction/i18n/pt_BR.po | 6 +- addons/profile_auction/i18n/pt_PT.po | 6 +- addons/profile_auction/i18n/ro_RO.po | 6 +- addons/profile_auction/i18n/ru_RU.po | 6 +- addons/profile_auction/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/profile_auction/i18n/sv_SE.po | 6 +- addons/profile_auction/i18n/tr_TR.po | 6 +- .../i18n/{sv_SV.po => uk_UA.po} | 6 +- .../i18n/{uk_UK.po => vi_VN.po} | 6 +- addons/profile_auction/i18n/zh_CN.po | 6 +- addons/profile_auction/i18n/zh_TW.po | 6 +- addons/profile_crm/i18n/ar_AR.po | 6 +- addons/profile_crm/i18n/bg_BG.po | 6 +- addons/profile_crm/i18n/bs_BS.po | 6 +- addons/profile_crm/i18n/ca_ES.po | 6 +- addons/profile_crm/i18n/cs_CZ.po | 6 +- addons/profile_crm/i18n/de_DE.po | 6 +- addons/profile_crm/i18n/es_AR.po | 6 +- addons/profile_crm/i18n/es_ES.po | 6 +- addons/profile_crm/i18n/et_EE.po | 6 +- addons/profile_crm/i18n/fi_FI.po | 6 +- addons/profile_crm/i18n/fr_FR.po | 6 +- addons/profile_crm/i18n/hr_HR.po | 6 +- addons/profile_crm/i18n/hu_HU.po | 6 +- addons/profile_crm/i18n/id_ID.po | 6 +- addons/profile_crm/i18n/it_IT.po | 6 +- addons/profile_crm/i18n/lt_LT.po | 6 +- addons/profile_crm/i18n/nl_BE.po | 6 +- addons/profile_crm/i18n/nl_NL.po | 6 +- addons/profile_crm/i18n/pl_PL.po | 6 +- addons/profile_crm/i18n/profile_crm.pot | 6 +- addons/profile_crm/i18n/pt_BR.po | 6 +- addons/profile_crm/i18n/pt_PT.po | 6 +- addons/profile_crm/i18n/ro_RO.po | 6 +- addons/profile_crm/i18n/ru_RU.po | 6 +- addons/profile_crm/i18n/sl_SL.po | 6 +- .../profile_crm/i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/profile_crm/i18n/sv_SE.po | 6 +- addons/profile_crm/i18n/tr_TR.po | 6 +- .../profile_crm/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../profile_crm/i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/profile_crm/i18n/zh_CN.po | 6 +- addons/profile_crm/i18n/zh_TW.po | 6 +- addons/profile_manufacturing/i18n/ar_AR.po | 6 +- addons/profile_manufacturing/i18n/bg_BG.po | 6 +- addons/profile_manufacturing/i18n/bs_BS.po | 6 +- addons/profile_manufacturing/i18n/ca_ES.po | 6 +- addons/profile_manufacturing/i18n/cs_CZ.po | 6 +- addons/profile_manufacturing/i18n/de_DE.po | 6 +- addons/profile_manufacturing/i18n/es_AR.po | 6 +- addons/profile_manufacturing/i18n/es_ES.po | 6 +- addons/profile_manufacturing/i18n/et_EE.po | 6 +- addons/profile_manufacturing/i18n/fi_FI.po | 6 +- addons/profile_manufacturing/i18n/fr_FR.po | 8 +- addons/profile_manufacturing/i18n/hr_HR.po | 6 +- addons/profile_manufacturing/i18n/hu_HU.po | 6 +- addons/profile_manufacturing/i18n/id_ID.po | 6 +- addons/profile_manufacturing/i18n/it_IT.po | 6 +- addons/profile_manufacturing/i18n/lt_LT.po | 6 +- addons/profile_manufacturing/i18n/nl_BE.po | 6 +- addons/profile_manufacturing/i18n/nl_NL.po | 6 +- addons/profile_manufacturing/i18n/pl_PL.po | 6 +- .../i18n/profile_manufacturing.pot | 6 +- addons/profile_manufacturing/i18n/pt_BR.po | 6 +- addons/profile_manufacturing/i18n/pt_PT.po | 6 +- addons/profile_manufacturing/i18n/ro_RO.po | 6 +- addons/profile_manufacturing/i18n/ru_RU.po | 6 +- addons/profile_manufacturing/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/profile_manufacturing/i18n/sv_SE.po | 6 +- addons/profile_manufacturing/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/profile_manufacturing/i18n/zh_CN.po | 6 +- addons/profile_manufacturing/i18n/zh_TW.po | 6 +- addons/profile_service/i18n/ar_AR.po | 6 +- addons/profile_service/i18n/bg_BG.po | 6 +- addons/profile_service/i18n/bs_BS.po | 6 +- addons/profile_service/i18n/ca_ES.po | 6 +- addons/profile_service/i18n/cs_CZ.po | 6 +- addons/profile_service/i18n/de_DE.po | 6 +- addons/profile_service/i18n/es_AR.po | 6 +- addons/profile_service/i18n/es_ES.po | 6 +- addons/profile_service/i18n/et_EE.po | 6 +- addons/profile_service/i18n/fi_FI.po | 6 +- addons/profile_service/i18n/fr_FR.po | 8 +- addons/profile_service/i18n/hr_HR.po | 6 +- addons/profile_service/i18n/hu_HU.po | 6 +- addons/profile_service/i18n/id_ID.po | 6 +- addons/profile_service/i18n/it_IT.po | 6 +- addons/profile_service/i18n/lt_LT.po | 6 +- addons/profile_service/i18n/nl_BE.po | 6 +- addons/profile_service/i18n/nl_NL.po | 6 +- addons/profile_service/i18n/pl_PL.po | 6 +- .../profile_service/i18n/profile_service.pot | 6 +- addons/profile_service/i18n/pt_BR.po | 6 +- addons/profile_service/i18n/pt_PT.po | 6 +- addons/profile_service/i18n/ro_RO.po | 6 +- addons/profile_service/i18n/ru_RU.po | 6 +- addons/profile_service/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/profile_service/i18n/sv_SE.po | 6 +- addons/profile_service/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/profile_service/i18n/zh_CN.po | 6 +- addons/profile_service/i18n/zh_TW.po | 6 +- addons/project/i18n/ar_AR.po | 6 +- addons/project/i18n/bg_BG.po | 6 +- addons/project/i18n/bs_BS.po | 6 +- addons/project/i18n/ca_ES.po | 6 +- addons/project/i18n/cs_CZ.po | 8 +- addons/project/i18n/de_DE.po | 6 +- addons/project/i18n/es_AR.po | 6 +- addons/project/i18n/es_ES.po | 6 +- addons/project/i18n/et_EE.po | 6 +- addons/project/i18n/fi_FI.po | 6 +- addons/project/i18n/fr_FR.po | 48 +- addons/project/i18n/hr_HR.po | 6 +- addons/project/i18n/hu_HU.po | 6 +- addons/project/i18n/id_ID.po | 6 +- addons/project/i18n/it_IT.po | 6 +- addons/project/i18n/lt_LT.po | 6 +- addons/project/i18n/nl_BE.po | 6 +- addons/project/i18n/nl_NL.po | 6 +- addons/project/i18n/pl_PL.po | 6 +- addons/project/i18n/project.pot | 6 +- addons/project/i18n/pt_BR.po | 6 +- addons/project/i18n/pt_PT.po | 10 +- addons/project/i18n/ro_RO.po | 6 +- addons/project/i18n/ru_RU.po | 6 +- addons/project/i18n/sl_SL.po | 6 +- addons/project/i18n/{cs_CS.po => sq_AL.po} | 16 +- addons/project/i18n/sv_SE.po | 6 +- addons/project/i18n/tr_TR.po | 6 +- addons/project/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/project/i18n/{sv_SV.po => vi_VN.po} | 44 +- addons/project/i18n/zh_CN.po | 6 +- addons/project/i18n/zh_TW.po | 6 +- addons/project_gtd/i18n/ar_AR.po | 6 +- addons/project_gtd/i18n/bg_BG.po | 6 +- addons/project_gtd/i18n/bs_BS.po | 6 +- addons/project_gtd/i18n/ca_ES.po | 6 +- addons/project_gtd/i18n/cs_CZ.po | 6 +- addons/project_gtd/i18n/de_DE.po | 6 +- addons/project_gtd/i18n/es_AR.po | 6 +- addons/project_gtd/i18n/es_ES.po | 6 +- addons/project_gtd/i18n/et_EE.po | 6 +- addons/project_gtd/i18n/fi_FI.po | 6 +- addons/project_gtd/i18n/fr_FR.po | 8 +- addons/project_gtd/i18n/hr_HR.po | 6 +- addons/project_gtd/i18n/hu_HU.po | 6 +- addons/project_gtd/i18n/id_ID.po | 6 +- addons/project_gtd/i18n/it_IT.po | 6 +- addons/project_gtd/i18n/ko_KO.po | 2 +- addons/project_gtd/i18n/lt_LT.po | 6 +- addons/project_gtd/i18n/nl_BE.po | 6 +- addons/project_gtd/i18n/nl_NL.po | 6 +- addons/project_gtd/i18n/pl_PL.po | 6 +- addons/project_gtd/i18n/project_gtd.pot | 6 +- addons/project_gtd/i18n/pt_BR.po | 6 +- addons/project_gtd/i18n/pt_PT.po | 6 +- addons/project_gtd/i18n/ro_RO.po | 6 +- addons/project_gtd/i18n/ru_RU.po | 6 +- addons/project_gtd/i18n/sl_SL.po | 6 +- .../project_gtd/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/project_gtd/i18n/sv_SE.po | 6 +- addons/project_gtd/i18n/tr_TR.po | 6 +- .../project_gtd/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../project_gtd/i18n/{sv_SV.po => vi_VN.po} | 10 +- addons/project_gtd/i18n/zh_CN.po | 6 +- addons/project_gtd/i18n/zh_TW.po | 6 +- addons/project_mrp/i18n/ar_AR.po | 6 +- addons/project_mrp/i18n/bg_BG.po | 6 +- addons/project_mrp/i18n/bs_BS.po | 6 +- addons/project_mrp/i18n/ca_ES.po | 6 +- addons/project_mrp/i18n/cs_CZ.po | 6 +- addons/project_mrp/i18n/de_DE.po | 6 +- addons/project_mrp/i18n/es_AR.po | 6 +- addons/project_mrp/i18n/es_ES.po | 6 +- addons/project_mrp/i18n/et_EE.po | 6 +- addons/project_mrp/i18n/fi_FI.po | 6 +- addons/project_mrp/i18n/fr_FR.po | 6 +- addons/project_mrp/i18n/hr_HR.po | 6 +- addons/project_mrp/i18n/hu_HU.po | 6 +- addons/project_mrp/i18n/id_ID.po | 6 +- addons/project_mrp/i18n/it_IT.po | 6 +- addons/project_mrp/i18n/lt_LT.po | 6 +- addons/project_mrp/i18n/nl_BE.po | 6 +- addons/project_mrp/i18n/nl_NL.po | 6 +- addons/project_mrp/i18n/pl_PL.po | 6 +- addons/project_mrp/i18n/project_mrp.pot | 6 +- addons/project_mrp/i18n/pt_BR.po | 6 +- addons/project_mrp/i18n/pt_PT.po | 6 +- addons/project_mrp/i18n/ro_RO.po | 6 +- addons/project_mrp/i18n/ru_RU.po | 6 +- addons/project_mrp/i18n/sl_SL.po | 6 +- .../project_mrp/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/project_mrp/i18n/sv_SE.po | 6 +- addons/project_mrp/i18n/tr_TR.po | 6 +- .../project_mrp/i18n/{sv_SV.po => uk_UA.po} | 6 +- .../project_mrp/i18n/{uk_UK.po => vi_VN.po} | 6 +- addons/project_mrp/i18n/zh_CN.po | 6 +- addons/project_mrp/i18n/zh_TW.po | 6 +- addons/project_retro_planning/i18n/ar_AR.po | 6 +- addons/project_retro_planning/i18n/bg_BG.po | 6 +- addons/project_retro_planning/i18n/bs_BS.po | 6 +- addons/project_retro_planning/i18n/ca_ES.po | 6 +- addons/project_retro_planning/i18n/cs_CZ.po | 6 +- addons/project_retro_planning/i18n/de_DE.po | 6 +- addons/project_retro_planning/i18n/es_AR.po | 6 +- addons/project_retro_planning/i18n/es_ES.po | 6 +- addons/project_retro_planning/i18n/et_EE.po | 6 +- addons/project_retro_planning/i18n/fi_FI.po | 6 +- addons/project_retro_planning/i18n/fr_FR.po | 6 +- addons/project_retro_planning/i18n/hr_HR.po | 6 +- addons/project_retro_planning/i18n/hu_HU.po | 6 +- addons/project_retro_planning/i18n/id_ID.po | 6 +- addons/project_retro_planning/i18n/it_IT.po | 6 +- addons/project_retro_planning/i18n/lt_LT.po | 6 +- addons/project_retro_planning/i18n/nl_BE.po | 6 +- addons/project_retro_planning/i18n/nl_NL.po | 6 +- addons/project_retro_planning/i18n/pl_PL.po | 6 +- .../i18n/project_retro_planning.pot | 6 +- addons/project_retro_planning/i18n/pt_BR.po | 6 +- addons/project_retro_planning/i18n/pt_PT.po | 6 +- addons/project_retro_planning/i18n/ro_RO.po | 6 +- addons/project_retro_planning/i18n/ru_RU.po | 6 +- addons/project_retro_planning/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/project_retro_planning/i18n/sv_SE.po | 6 +- addons/project_retro_planning/i18n/tr_TR.po | 6 +- .../i18n/{sv_SV.po => uk_UA.po} | 6 +- addons/project_retro_planning/i18n/ur_UR.po | 2 +- .../i18n/{uk_UK.po => vi_VN.po} | 6 +- addons/project_retro_planning/i18n/zh_CN.po | 6 +- addons/project_retro_planning/i18n/zh_TW.po | 6 +- addons/project_timesheet/i18n/ar_AR.po | 6 +- addons/project_timesheet/i18n/bg_BG.po | 6 +- addons/project_timesheet/i18n/bs_BS.po | 6 +- addons/project_timesheet/i18n/ca_ES.po | 6 +- addons/project_timesheet/i18n/cs_CZ.po | 6 +- addons/project_timesheet/i18n/de_DE.po | 6 +- addons/project_timesheet/i18n/es_AR.po | 6 +- addons/project_timesheet/i18n/es_ES.po | 6 +- addons/project_timesheet/i18n/et_EE.po | 6 +- addons/project_timesheet/i18n/fi_FI.po | 6 +- addons/project_timesheet/i18n/fr_FR.po | 6 +- addons/project_timesheet/i18n/hr_HR.po | 6 +- addons/project_timesheet/i18n/hu_HU.po | 6 +- addons/project_timesheet/i18n/id_ID.po | 6 +- addons/project_timesheet/i18n/it_IT.po | 6 +- addons/project_timesheet/i18n/lt_LT.po | 6 +- addons/project_timesheet/i18n/nl_BE.po | 6 +- addons/project_timesheet/i18n/nl_NL.po | 6 +- addons/project_timesheet/i18n/pl_PL.po | 6 +- .../i18n/project_timesheet.pot | 6 +- addons/project_timesheet/i18n/pt_BR.po | 6 +- addons/project_timesheet/i18n/pt_PT.po | 6 +- addons/project_timesheet/i18n/ro_RO.po | 6 +- addons/project_timesheet/i18n/ru_RU.po | 6 +- addons/project_timesheet/i18n/sl_SL.po | 6 +- .../i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/project_timesheet/i18n/sv_SE.po | 6 +- addons/project_timesheet/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/project_timesheet/i18n/zh_CN.po | 6 +- addons/project_timesheet/i18n/zh_TW.po | 6 +- addons/purchase/i18n/ar_AR.po | 6 +- addons/purchase/i18n/bg_BG.po | 6 +- addons/purchase/i18n/bs_BS.po | 6 +- addons/purchase/i18n/ca_ES.po | 6 +- addons/purchase/i18n/cs_CZ.po | 6 +- addons/purchase/i18n/de_DE.po | 6 +- addons/purchase/i18n/es_AR.po | 6 +- addons/purchase/i18n/es_ES.po | 6 +- addons/purchase/i18n/et_EE.po | 12 +- addons/purchase/i18n/fi_FI.po | 6 +- addons/purchase/i18n/fr_FR.po | 130 +-- addons/purchase/i18n/hr_HR.po | 6 +- addons/purchase/i18n/hu_HU.po | 6 +- addons/purchase/i18n/id_ID.po | 6 +- addons/purchase/i18n/it_IT.po | 6 +- addons/purchase/i18n/lt_LT.po | 6 +- addons/purchase/i18n/nl_BE.po | 6 +- addons/purchase/i18n/nl_NL.po | 6 +- addons/purchase/i18n/pl_PL.po | 6 +- addons/purchase/i18n/pt_BR.po | 6 +- addons/purchase/i18n/pt_PT.po | 6 +- addons/purchase/i18n/purchase.pot | 6 +- addons/purchase/i18n/ro_RO.po | 6 +- addons/purchase/i18n/ru_RU.po | 6 +- addons/purchase/i18n/sl_SL.po | 6 +- addons/purchase/i18n/{cs_CS.po => sq_AL.po} | 12 +- addons/purchase/i18n/sv_SE.po | 6 +- addons/purchase/i18n/tr_TR.po | 6 +- addons/purchase/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/purchase/i18n/{sv_SV.po => vi_VN.po} | 36 +- addons/purchase/i18n/zh_CN.po | 6 +- addons/purchase/i18n/zh_TW.po | 6 +- addons/purchase_analytic_plans/i18n/ar_AR.po | 6 +- addons/purchase_analytic_plans/i18n/bg_BG.po | 6 +- addons/purchase_analytic_plans/i18n/bs_BS.po | 6 +- addons/purchase_analytic_plans/i18n/ca_ES.po | 6 +- addons/purchase_analytic_plans/i18n/cs_CZ.po | 6 +- addons/purchase_analytic_plans/i18n/de_DE.po | 6 +- addons/purchase_analytic_plans/i18n/es_AR.po | 6 +- addons/purchase_analytic_plans/i18n/es_ES.po | 6 +- addons/purchase_analytic_plans/i18n/et_EE.po | 6 +- addons/purchase_analytic_plans/i18n/fi_FI.po | 6 +- addons/purchase_analytic_plans/i18n/fr_FR.po | 6 +- addons/purchase_analytic_plans/i18n/hr_HR.po | 6 +- addons/purchase_analytic_plans/i18n/hu_HU.po | 6 +- addons/purchase_analytic_plans/i18n/id_ID.po | 6 +- addons/purchase_analytic_plans/i18n/it_IT.po | 6 +- addons/purchase_analytic_plans/i18n/lt_LT.po | 6 +- addons/purchase_analytic_plans/i18n/nl_BE.po | 6 +- addons/purchase_analytic_plans/i18n/nl_NL.po | 6 +- addons/purchase_analytic_plans/i18n/pl_PL.po | 6 +- addons/purchase_analytic_plans/i18n/pt_BR.po | 6 +- addons/purchase_analytic_plans/i18n/pt_PT.po | 6 +- .../i18n/purchase_analytic_plans.pot | 6 +- addons/purchase_analytic_plans/i18n/ro_RO.po | 6 +- addons/purchase_analytic_plans/i18n/ru_RU.po | 6 +- addons/purchase_analytic_plans/i18n/sl_SL.po | 6 +- .../i18n/{sv_SV.po => sq_AL.po} | 6 +- addons/purchase_analytic_plans/i18n/sv_SE.po | 6 +- addons/purchase_analytic_plans/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/purchase_analytic_plans/i18n/ur_UR.po | 2 +- .../i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/purchase_analytic_plans/i18n/zh_CN.po | 6 +- addons/purchase_analytic_plans/i18n/zh_TW.po | 6 +- addons/report_account/i18n/ar_AR.po | 6 +- addons/report_account/i18n/bg_BG.po | 6 +- addons/report_account/i18n/bs_BS.po | 6 +- addons/report_account/i18n/ca_ES.po | 6 +- addons/report_account/i18n/cs_CZ.po | 6 +- addons/report_account/i18n/de_DE.po | 6 +- addons/report_account/i18n/es_AR.po | 6 +- addons/report_account/i18n/es_ES.po | 6 +- addons/report_account/i18n/et_EE.po | 6 +- addons/report_account/i18n/fi_FI.po | 6 +- addons/report_account/i18n/fr_FR.po | 8 +- addons/report_account/i18n/hr_HR.po | 6 +- addons/report_account/i18n/hu_HU.po | 6 +- addons/report_account/i18n/id_ID.po | 6 +- addons/report_account/i18n/it_IT.po | 6 +- addons/report_account/i18n/lt_LT.po | 6 +- addons/report_account/i18n/nl_BE.po | 6 +- addons/report_account/i18n/nl_NL.po | 6 +- addons/report_account/i18n/pl_PL.po | 6 +- addons/report_account/i18n/pt_BR.po | 6 +- addons/report_account/i18n/pt_PT.po | 6 +- addons/report_account/i18n/report_account.pot | 6 +- addons/report_account/i18n/ro_RO.po | 6 +- addons/report_account/i18n/ru_RU.po | 6 +- addons/report_account/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_account/i18n/sv_SE.po | 6 +- addons/report_account/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_account/i18n/zh_CN.po | 6 +- addons/report_account/i18n/zh_TW.po | 6 +- addons/report_analytic/i18n/ar_AR.po | 6 +- addons/report_analytic/i18n/bg_BG.po | 6 +- addons/report_analytic/i18n/bs_BS.po | 6 +- addons/report_analytic/i18n/ca_ES.po | 6 +- addons/report_analytic/i18n/cs_CZ.po | 6 +- addons/report_analytic/i18n/de_DE.po | 6 +- addons/report_analytic/i18n/es_AR.po | 6 +- addons/report_analytic/i18n/es_ES.po | 6 +- addons/report_analytic/i18n/et_EE.po | 6 +- addons/report_analytic/i18n/fi_FI.po | 6 +- addons/report_analytic/i18n/fr_FR.po | 8 +- addons/report_analytic/i18n/hr_HR.po | 6 +- addons/report_analytic/i18n/hu_HU.po | 6 +- addons/report_analytic/i18n/id_ID.po | 6 +- addons/report_analytic/i18n/it_IT.po | 6 +- addons/report_analytic/i18n/lt_LT.po | 6 +- addons/report_analytic/i18n/nl_BE.po | 6 +- addons/report_analytic/i18n/nl_NL.po | 6 +- addons/report_analytic/i18n/pl_PL.po | 6 +- addons/report_analytic/i18n/pt_BR.po | 6 +- addons/report_analytic/i18n/pt_PT.po | 6 +- .../report_analytic/i18n/report_analytic.pot | 6 +- addons/report_analytic/i18n/ro_RO.po | 6 +- addons/report_analytic/i18n/ru_RU.po | 6 +- addons/report_analytic/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_analytic/i18n/sv_SE.po | 6 +- addons/report_analytic/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_analytic/i18n/zh_CN.po | 6 +- addons/report_analytic/i18n/zh_TW.po | 6 +- addons/report_analytic_line/i18n/ar_AR.po | 6 +- addons/report_analytic_line/i18n/bg_BG.po | 6 +- addons/report_analytic_line/i18n/bs_BS.po | 6 +- addons/report_analytic_line/i18n/ca_ES.po | 6 +- addons/report_analytic_line/i18n/cs_CZ.po | 6 +- addons/report_analytic_line/i18n/de_DE.po | 6 +- addons/report_analytic_line/i18n/es_AR.po | 6 +- addons/report_analytic_line/i18n/es_ES.po | 6 +- addons/report_analytic_line/i18n/et_EE.po | 6 +- addons/report_analytic_line/i18n/fi_FI.po | 6 +- addons/report_analytic_line/i18n/fr_FR.po | 8 +- addons/report_analytic_line/i18n/hr_HR.po | 6 +- addons/report_analytic_line/i18n/hu_HU.po | 6 +- addons/report_analytic_line/i18n/id_ID.po | 6 +- addons/report_analytic_line/i18n/it_IT.po | 6 +- addons/report_analytic_line/i18n/lt_LT.po | 6 +- addons/report_analytic_line/i18n/nl_BE.po | 6 +- addons/report_analytic_line/i18n/nl_NL.po | 6 +- addons/report_analytic_line/i18n/pl_PL.po | 6 +- addons/report_analytic_line/i18n/pt_BR.po | 6 +- addons/report_analytic_line/i18n/pt_PT.po | 6 +- .../i18n/report_analytic_line.pot | 6 +- addons/report_analytic_line/i18n/ro_RO.po | 6 +- addons/report_analytic_line/i18n/ru_RU.po | 6 +- addons/report_analytic_line/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_analytic_line/i18n/sv_SE.po | 6 +- addons/report_analytic_line/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_analytic_line/i18n/zh_CN.po | 6 +- addons/report_analytic_line/i18n/zh_TW.po | 6 +- addons/report_analytic_planning/i18n/ar_AR.po | 6 +- addons/report_analytic_planning/i18n/bg_BG.po | 6 +- addons/report_analytic_planning/i18n/bs_BS.po | 6 +- addons/report_analytic_planning/i18n/ca_ES.po | 6 +- addons/report_analytic_planning/i18n/cs_CZ.po | 6 +- addons/report_analytic_planning/i18n/de_DE.po | 6 +- addons/report_analytic_planning/i18n/es_AR.po | 6 +- addons/report_analytic_planning/i18n/es_ES.po | 6 +- addons/report_analytic_planning/i18n/et_EE.po | 6 +- addons/report_analytic_planning/i18n/fi_FI.po | 6 +- addons/report_analytic_planning/i18n/fr_FR.po | 8 +- addons/report_analytic_planning/i18n/hr_HR.po | 6 +- addons/report_analytic_planning/i18n/hu_HU.po | 6 +- addons/report_analytic_planning/i18n/id_ID.po | 6 +- addons/report_analytic_planning/i18n/it_IT.po | 6 +- addons/report_analytic_planning/i18n/ko_KO.po | 2 +- addons/report_analytic_planning/i18n/lt_LT.po | 6 +- addons/report_analytic_planning/i18n/nl_BE.po | 6 +- addons/report_analytic_planning/i18n/nl_NL.po | 6 +- addons/report_analytic_planning/i18n/pl_PL.po | 6 +- addons/report_analytic_planning/i18n/pt_BR.po | 6 +- addons/report_analytic_planning/i18n/pt_PT.po | 6 +- .../i18n/report_analytic_planning.pot | 6 +- addons/report_analytic_planning/i18n/ro_RO.po | 6 +- addons/report_analytic_planning/i18n/ru_RU.po | 6 +- addons/report_analytic_planning/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_analytic_planning/i18n/sv_SE.po | 6 +- addons/report_analytic_planning/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_analytic_planning/i18n/zh_CN.po | 6 +- addons/report_analytic_planning/i18n/zh_TW.po | 6 +- addons/report_crm/i18n/ar_AR.po | 6 +- addons/report_crm/i18n/bg_BG.po | 6 +- addons/report_crm/i18n/bs_BS.po | 6 +- addons/report_crm/i18n/ca_ES.po | 6 +- addons/report_crm/i18n/cs_CZ.po | 6 +- addons/report_crm/i18n/de_DE.po | 6 +- addons/report_crm/i18n/es_AR.po | 6 +- addons/report_crm/i18n/es_ES.po | 6 +- addons/report_crm/i18n/et_EE.po | 6 +- addons/report_crm/i18n/fi_FI.po | 6 +- addons/report_crm/i18n/fr_FR.po | 8 +- addons/report_crm/i18n/hr_HR.po | 6 +- addons/report_crm/i18n/hu_HU.po | 6 +- addons/report_crm/i18n/id_ID.po | 6 +- addons/report_crm/i18n/it_IT.po | 6 +- addons/report_crm/i18n/ko_KO.po | 2 +- addons/report_crm/i18n/lt_LT.po | 6 +- addons/report_crm/i18n/nl_BE.po | 6 +- addons/report_crm/i18n/nl_NL.po | 6 +- addons/report_crm/i18n/pl_PL.po | 46 +- addons/report_crm/i18n/pt_BR.po | 6 +- addons/report_crm/i18n/pt_PT.po | 6 +- addons/report_crm/i18n/report_crm.pot | 6 +- addons/report_crm/i18n/ro_RO.po | 6 +- addons/report_crm/i18n/ru_RU.po | 6 +- addons/report_crm/i18n/sl_SL.po | 6 +- addons/report_crm/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_crm/i18n/sv_SE.po | 6 +- addons/report_crm/i18n/tr_TR.po | 6 +- addons/report_crm/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/report_crm/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_crm/i18n/zh_CN.po | 6 +- addons/report_crm/i18n/zh_TW.po | 6 +- addons/report_document/i18n/ar_AR.po | 6 +- addons/report_document/i18n/bg_BG.po | 6 +- addons/report_document/i18n/bs_BS.po | 6 +- addons/report_document/i18n/ca_ES.po | 6 +- addons/report_document/i18n/cs_CZ.po | 6 +- addons/report_document/i18n/de_DE.po | 6 +- addons/report_document/i18n/es_AR.po | 6 +- addons/report_document/i18n/es_ES.po | 6 +- addons/report_document/i18n/et_EE.po | 6 +- addons/report_document/i18n/fi_FI.po | 6 +- addons/report_document/i18n/fr_FR.po | 8 +- addons/report_document/i18n/hr_HR.po | 6 +- addons/report_document/i18n/hu_HU.po | 6 +- addons/report_document/i18n/id_ID.po | 6 +- addons/report_document/i18n/it_IT.po | 6 +- addons/report_document/i18n/ko_KO.po | 2 +- addons/report_document/i18n/lt_LT.po | 6 +- addons/report_document/i18n/nl_BE.po | 6 +- addons/report_document/i18n/nl_NL.po | 6 +- addons/report_document/i18n/pl_PL.po | 6 +- addons/report_document/i18n/pt_BR.po | 6 +- addons/report_document/i18n/pt_PT.po | 6 +- .../report_document/i18n/report_document.pot | 6 +- addons/report_document/i18n/ro_RO.po | 6 +- addons/report_document/i18n/ru_RU.po | 6 +- addons/report_document/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_document/i18n/sv_SE.po | 6 +- addons/report_document/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_document/i18n/zh_CN.po | 6 +- addons/report_document/i18n/zh_TW.po | 6 +- addons/report_intrastat/i18n/ar_AR.po | 6 +- addons/report_intrastat/i18n/bg_BG.po | 6 +- addons/report_intrastat/i18n/bs_BS.po | 6 +- addons/report_intrastat/i18n/ca_ES.po | 6 +- addons/report_intrastat/i18n/cs_CZ.po | 6 +- addons/report_intrastat/i18n/de_DE.po | 6 +- addons/report_intrastat/i18n/es_AR.po | 6 +- addons/report_intrastat/i18n/es_ES.po | 6 +- addons/report_intrastat/i18n/et_EE.po | 6 +- addons/report_intrastat/i18n/fi_FI.po | 6 +- addons/report_intrastat/i18n/fr_FR.po | 8 +- addons/report_intrastat/i18n/hr_HR.po | 6 +- addons/report_intrastat/i18n/hu_HU.po | 6 +- addons/report_intrastat/i18n/id_ID.po | 6 +- addons/report_intrastat/i18n/it_IT.po | 6 +- addons/report_intrastat/i18n/ko_KO.po | 2 +- addons/report_intrastat/i18n/lt_LT.po | 6 +- addons/report_intrastat/i18n/nl_BE.po | 6 +- addons/report_intrastat/i18n/nl_NL.po | 6 +- addons/report_intrastat/i18n/pl_PL.po | 6 +- addons/report_intrastat/i18n/pt_BR.po | 6 +- addons/report_intrastat/i18n/pt_PT.po | 6 +- .../i18n/report_intrastat.pot | 6 +- addons/report_intrastat/i18n/ro_RO.po | 6 +- addons/report_intrastat/i18n/ru_RU.po | 6 +- addons/report_intrastat/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_intrastat/i18n/sv_SE.po | 6 +- addons/report_intrastat/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_intrastat/i18n/zh_CN.po | 6 +- addons/report_intrastat/i18n/zh_TW.po | 6 +- addons/report_mrp/i18n/ar_AR.po | 6 +- addons/report_mrp/i18n/bg_BG.po | 6 +- addons/report_mrp/i18n/bs_BS.po | 6 +- addons/report_mrp/i18n/ca_ES.po | 6 +- addons/report_mrp/i18n/cs_CZ.po | 6 +- addons/report_mrp/i18n/de_DE.po | 6 +- addons/report_mrp/i18n/es_AR.po | 6 +- addons/report_mrp/i18n/es_ES.po | 6 +- addons/report_mrp/i18n/et_EE.po | 6 +- addons/report_mrp/i18n/fi_FI.po | 6 +- addons/report_mrp/i18n/fr_FR.po | 8 +- addons/report_mrp/i18n/hr_HR.po | 6 +- addons/report_mrp/i18n/hu_HU.po | 6 +- addons/report_mrp/i18n/id_ID.po | 6 +- addons/report_mrp/i18n/it_IT.po | 6 +- addons/report_mrp/i18n/ko_KO.po | 2 +- addons/report_mrp/i18n/lt_LT.po | 6 +- addons/report_mrp/i18n/nl_BE.po | 6 +- addons/report_mrp/i18n/nl_NL.po | 6 +- addons/report_mrp/i18n/pl_PL.po | 6 +- addons/report_mrp/i18n/pt_BR.po | 6 +- addons/report_mrp/i18n/pt_PT.po | 6 +- addons/report_mrp/i18n/report_mrp.pot | 6 +- addons/report_mrp/i18n/ro_RO.po | 6 +- addons/report_mrp/i18n/ru_RU.po | 6 +- addons/report_mrp/i18n/sl_SL.po | 6 +- addons/report_mrp/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_mrp/i18n/sv_SE.po | 6 +- addons/report_mrp/i18n/tr_TR.po | 6 +- addons/report_mrp/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/report_mrp/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_mrp/i18n/zh_CN.po | 6 +- addons/report_mrp/i18n/zh_TW.po | 6 +- addons/report_project/i18n/ar_AR.po | 6 +- addons/report_project/i18n/bg_BG.po | 6 +- addons/report_project/i18n/bs_BS.po | 6 +- addons/report_project/i18n/ca_ES.po | 6 +- addons/report_project/i18n/cs_CZ.po | 6 +- addons/report_project/i18n/de_DE.po | 6 +- addons/report_project/i18n/es_AR.po | 6 +- addons/report_project/i18n/es_ES.po | 6 +- addons/report_project/i18n/et_EE.po | 6 +- addons/report_project/i18n/fi_FI.po | 6 +- addons/report_project/i18n/fr_FR.po | 8 +- addons/report_project/i18n/hr_HR.po | 6 +- addons/report_project/i18n/hu_HU.po | 6 +- addons/report_project/i18n/id_ID.po | 6 +- addons/report_project/i18n/it_IT.po | 6 +- addons/report_project/i18n/ko_KO.po | 2 +- addons/report_project/i18n/lt_LT.po | 6 +- addons/report_project/i18n/nl_BE.po | 6 +- addons/report_project/i18n/nl_NL.po | 6 +- addons/report_project/i18n/pl_PL.po | 6 +- addons/report_project/i18n/pt_BR.po | 6 +- addons/report_project/i18n/pt_PT.po | 6 +- addons/report_project/i18n/report_project.pot | 6 +- addons/report_project/i18n/ro_RO.po | 6 +- addons/report_project/i18n/ru_RU.po | 6 +- addons/report_project/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_project/i18n/sv_SE.po | 6 +- addons/report_project/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_project/i18n/zh_CN.po | 6 +- addons/report_project/i18n/zh_TW.po | 6 +- addons/report_purchase/i18n/ar_AR.po | 6 +- addons/report_purchase/i18n/bg_BG.po | 6 +- addons/report_purchase/i18n/bs_BS.po | 6 +- addons/report_purchase/i18n/ca_ES.po | 6 +- addons/report_purchase/i18n/cs_CZ.po | 6 +- addons/report_purchase/i18n/de_DE.po | 6 +- addons/report_purchase/i18n/es_AR.po | 6 +- addons/report_purchase/i18n/es_ES.po | 6 +- addons/report_purchase/i18n/et_EE.po | 6 +- addons/report_purchase/i18n/fi_FI.po | 6 +- addons/report_purchase/i18n/fr_FR.po | 8 +- addons/report_purchase/i18n/hr_HR.po | 6 +- addons/report_purchase/i18n/hu_HU.po | 6 +- addons/report_purchase/i18n/id_ID.po | 6 +- addons/report_purchase/i18n/it_IT.po | 6 +- addons/report_purchase/i18n/lt_LT.po | 6 +- addons/report_purchase/i18n/nl_BE.po | 6 +- addons/report_purchase/i18n/nl_NL.po | 6 +- addons/report_purchase/i18n/pl_PL.po | 6 +- addons/report_purchase/i18n/pt_BR.po | 6 +- addons/report_purchase/i18n/pt_PT.po | 6 +- .../report_purchase/i18n/report_purchase.pot | 6 +- addons/report_purchase/i18n/ro_RO.po | 6 +- addons/report_purchase/i18n/ru_RU.po | 6 +- addons/report_purchase/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_purchase/i18n/sv_SE.po | 6 +- addons/report_purchase/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_purchase/i18n/zh_CN.po | 6 +- addons/report_purchase/i18n/zh_TW.po | 6 +- addons/report_sale/i18n/ar_AR.po | 6 +- addons/report_sale/i18n/bg_BG.po | 6 +- addons/report_sale/i18n/bs_BS.po | 6 +- addons/report_sale/i18n/ca_ES.po | 6 +- addons/report_sale/i18n/cs_CZ.po | 6 +- addons/report_sale/i18n/de_DE.po | 6 +- addons/report_sale/i18n/es_AR.po | 6 +- addons/report_sale/i18n/es_ES.po | 6 +- addons/report_sale/i18n/et_EE.po | 6 +- addons/report_sale/i18n/fi_FI.po | 6 +- addons/report_sale/i18n/fr_FR.po | 8 +- addons/report_sale/i18n/hr_HR.po | 6 +- addons/report_sale/i18n/hu_HU.po | 6 +- addons/report_sale/i18n/id_ID.po | 6 +- addons/report_sale/i18n/it_IT.po | 6 +- addons/report_sale/i18n/lt_LT.po | 6 +- addons/report_sale/i18n/nl_BE.po | 6 +- addons/report_sale/i18n/nl_NL.po | 6 +- addons/report_sale/i18n/pl_PL.po | 6 +- addons/report_sale/i18n/pt_BR.po | 6 +- addons/report_sale/i18n/pt_PT.po | 6 +- addons/report_sale/i18n/report_sale.pot | 6 +- addons/report_sale/i18n/ro_RO.po | 6 +- addons/report_sale/i18n/ru_RU.po | 6 +- addons/report_sale/i18n/sl_SL.po | 6 +- .../report_sale/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_sale/i18n/sv_SE.po | 6 +- addons/report_sale/i18n/tr_TR.po | 6 +- .../report_sale/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../report_sale/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_sale/i18n/zh_CN.po | 6 +- addons/report_sale/i18n/zh_TW.po | 6 +- addons/report_task/i18n/ar_AR.po | 6 +- addons/report_task/i18n/bg_BG.po | 12 +- addons/report_task/i18n/bs_BS.po | 6 +- addons/report_task/i18n/ca_ES.po | 14 +- addons/report_task/i18n/cs_CZ.po | 6 +- addons/report_task/i18n/de_DE.po | 14 +- addons/report_task/i18n/es_AR.po | 6 +- addons/report_task/i18n/es_ES.po | 8 +- addons/report_task/i18n/et_EE.po | 8 +- addons/report_task/i18n/fi_FI.po | 6 +- addons/report_task/i18n/fr_FR.po | 8 +- addons/report_task/i18n/hr_HR.po | 6 +- addons/report_task/i18n/hu_HU.po | 6 +- addons/report_task/i18n/id_ID.po | 6 +- addons/report_task/i18n/it_IT.po | 8 +- addons/report_task/i18n/lt_LT.po | 6 +- addons/report_task/i18n/nl_BE.po | 6 +- addons/report_task/i18n/nl_NL.po | 12 +- addons/report_task/i18n/pl_PL.po | 6 +- addons/report_task/i18n/pt_BR.po | 12 +- addons/report_task/i18n/pt_PT.po | 14 +- addons/report_task/i18n/report_task.pot | 6 +- addons/report_task/i18n/ro_RO.po | 6 +- addons/report_task/i18n/ru_RU.po | 14 +- addons/report_task/i18n/sl_SL.po | 12 +- .../report_task/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_task/i18n/sv_SE.po | 6 +- addons/report_task/i18n/tr_TR.po | 6 +- .../report_task/i18n/{sv_SV.po => uk_UA.po} | 12 +- .../report_task/i18n/{uk_UK.po => vi_VN.po} | 6 +- addons/report_task/i18n/zh_CN.po | 6 +- addons/report_task/i18n/zh_TW.po | 6 +- addons/report_timesheet/i18n/ar_AR.po | 6 +- addons/report_timesheet/i18n/bg_BG.po | 6 +- addons/report_timesheet/i18n/bs_BS.po | 6 +- addons/report_timesheet/i18n/ca_ES.po | 6 +- addons/report_timesheet/i18n/cs_CZ.po | 6 +- addons/report_timesheet/i18n/de_DE.po | 6 +- addons/report_timesheet/i18n/es_AR.po | 6 +- addons/report_timesheet/i18n/es_ES.po | 6 +- addons/report_timesheet/i18n/et_EE.po | 6 +- addons/report_timesheet/i18n/fi_FI.po | 6 +- addons/report_timesheet/i18n/fr_FR.po | 8 +- addons/report_timesheet/i18n/hr_HR.po | 6 +- addons/report_timesheet/i18n/hu_HU.po | 6 +- addons/report_timesheet/i18n/id_ID.po | 6 +- addons/report_timesheet/i18n/it_IT.po | 6 +- addons/report_timesheet/i18n/lt_LT.po | 6 +- addons/report_timesheet/i18n/nl_BE.po | 6 +- addons/report_timesheet/i18n/nl_NL.po | 6 +- addons/report_timesheet/i18n/pl_PL.po | 6 +- addons/report_timesheet/i18n/pt_BR.po | 6 +- addons/report_timesheet/i18n/pt_PT.po | 6 +- .../i18n/report_timesheet.pot | 6 +- addons/report_timesheet/i18n/ro_RO.po | 6 +- addons/report_timesheet/i18n/ru_RU.po | 6 +- addons/report_timesheet/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/report_timesheet/i18n/sv_SE.po | 6 +- addons/report_timesheet/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/report_timesheet/i18n/zh_CN.po | 6 +- addons/report_timesheet/i18n/zh_TW.po | 6 +- addons/sale/i18n/ar_AR.po | 6 +- addons/sale/i18n/bg_BG.po | 6 +- addons/sale/i18n/bs_BS.po | 6 +- addons/sale/i18n/ca_ES.po | 6 +- addons/sale/i18n/cs_CZ.po | 6 +- addons/sale/i18n/de_DE.po | 6 +- addons/sale/i18n/es_AR.po | 6 +- addons/sale/i18n/es_ES.po | 6 +- addons/sale/i18n/et_EE.po | 68 +- addons/sale/i18n/fi_FI.po | 6 +- addons/sale/i18n/fr_FR.po | 122 +-- addons/sale/i18n/hr_HR.po | 6 +- addons/sale/i18n/hu_HU.po | 6 +- addons/sale/i18n/id_ID.po | 6 +- addons/sale/i18n/it_IT.po | 6 +- addons/sale/i18n/lt_LT.po | 6 +- addons/sale/i18n/nl_BE.po | 6 +- addons/sale/i18n/nl_NL.po | 6 +- addons/sale/i18n/pl_PL.po | 6 +- addons/sale/i18n/pt_BR.po | 6 +- addons/sale/i18n/pt_PT.po | 6 +- addons/sale/i18n/ro_RO.po | 6 +- addons/sale/i18n/ru_RU.po | 6 +- addons/sale/i18n/sale.pot | 6 +- addons/sale/i18n/sl_SL.po | 6 +- addons/sale/i18n/{cs_CS.po => sq_AL.po} | 16 +- addons/sale/i18n/sv_SE.po | 6 +- addons/sale/i18n/tr_TR.po | 6 +- addons/sale/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/sale/i18n/{sv_SV.po => vi_VN.po} | 54 +- addons/sale/i18n/zh_CN.po | 6 +- addons/sale/i18n/zh_TW.po | 6 +- addons/sale_analytic_plans/i18n/ar_AR.po | 6 +- addons/sale_analytic_plans/i18n/bg_BG.po | 6 +- addons/sale_analytic_plans/i18n/bs_BS.po | 6 +- addons/sale_analytic_plans/i18n/ca_ES.po | 6 +- addons/sale_analytic_plans/i18n/cs_CZ.po | 6 +- addons/sale_analytic_plans/i18n/de_DE.po | 6 +- addons/sale_analytic_plans/i18n/es_AR.po | 6 +- addons/sale_analytic_plans/i18n/es_ES.po | 6 +- addons/sale_analytic_plans/i18n/et_EE.po | 6 +- addons/sale_analytic_plans/i18n/fi_FI.po | 6 +- addons/sale_analytic_plans/i18n/fr_FR.po | 6 +- addons/sale_analytic_plans/i18n/hr_HR.po | 6 +- addons/sale_analytic_plans/i18n/hu_HU.po | 6 +- addons/sale_analytic_plans/i18n/id_ID.po | 6 +- addons/sale_analytic_plans/i18n/it_IT.po | 6 +- addons/sale_analytic_plans/i18n/lt_LT.po | 6 +- addons/sale_analytic_plans/i18n/nl_BE.po | 6 +- addons/sale_analytic_plans/i18n/nl_NL.po | 6 +- addons/sale_analytic_plans/i18n/pl_PL.po | 6 +- addons/sale_analytic_plans/i18n/pt_BR.po | 6 +- addons/sale_analytic_plans/i18n/pt_PT.po | 6 +- addons/sale_analytic_plans/i18n/ro_RO.po | 6 +- addons/sale_analytic_plans/i18n/ru_RU.po | 6 +- .../i18n/sale_analytic_plans.pot | 6 +- addons/sale_analytic_plans/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/sale_analytic_plans/i18n/sv_SE.po | 6 +- addons/sale_analytic_plans/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 6 +- addons/sale_analytic_plans/i18n/zh_CN.po | 6 +- addons/sale_analytic_plans/i18n/zh_TW.po | 6 +- addons/sale_crm/i18n/ar_AR.po | 6 +- addons/sale_crm/i18n/bg_BG.po | 6 +- addons/sale_crm/i18n/bs_BS.po | 6 +- addons/sale_crm/i18n/ca_ES.po | 6 +- addons/sale_crm/i18n/cs_CZ.po | 6 +- addons/sale_crm/i18n/de_DE.po | 6 +- addons/sale_crm/i18n/es_AR.po | 6 +- addons/sale_crm/i18n/es_ES.po | 6 +- addons/sale_crm/i18n/et_EE.po | 6 +- addons/sale_crm/i18n/fi_FI.po | 6 +- addons/sale_crm/i18n/fr_FR.po | 6 +- addons/sale_crm/i18n/hr_HR.po | 6 +- addons/sale_crm/i18n/hu_HU.po | 6 +- addons/sale_crm/i18n/id_ID.po | 6 +- addons/sale_crm/i18n/it_IT.po | 6 +- addons/sale_crm/i18n/lt_LT.po | 6 +- addons/sale_crm/i18n/nl_BE.po | 6 +- addons/sale_crm/i18n/nl_NL.po | 6 +- addons/sale_crm/i18n/pl_PL.po | 6 +- addons/sale_crm/i18n/pt_BR.po | 6 +- addons/sale_crm/i18n/pt_PT.po | 6 +- addons/sale_crm/i18n/ro_RO.po | 6 +- addons/sale_crm/i18n/ru_RU.po | 6 +- addons/sale_crm/i18n/sale_crm.pot | 6 +- addons/sale_crm/i18n/sl_SL.po | 6 +- addons/sale_crm/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/sale_crm/i18n/sv_SE.po | 6 +- addons/sale_crm/i18n/tr_TR.po | 6 +- addons/sale_crm/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/sale_crm/i18n/{sv_SV.po => vi_VN.po} | 6 +- addons/sale_crm/i18n/zh_CN.po | 6 +- addons/sale_crm/i18n/zh_TW.po | 6 +- addons/sale_delivery_report/i18n/ar_AR.po | 6 +- addons/sale_delivery_report/i18n/bg_BG.po | 6 +- addons/sale_delivery_report/i18n/bs_BS.po | 6 +- addons/sale_delivery_report/i18n/ca_ES.po | 6 +- addons/sale_delivery_report/i18n/cs_CZ.po | 6 +- addons/sale_delivery_report/i18n/de_DE.po | 6 +- addons/sale_delivery_report/i18n/es_AR.po | 6 +- addons/sale_delivery_report/i18n/es_ES.po | 6 +- addons/sale_delivery_report/i18n/et_EE.po | 6 +- addons/sale_delivery_report/i18n/fi_FI.po | 6 +- addons/sale_delivery_report/i18n/fr_FR.po | 6 +- addons/sale_delivery_report/i18n/hr_HR.po | 6 +- addons/sale_delivery_report/i18n/hu_HU.po | 6 +- addons/sale_delivery_report/i18n/id_ID.po | 6 +- addons/sale_delivery_report/i18n/it_IT.po | 6 +- addons/sale_delivery_report/i18n/lt_LT.po | 6 +- addons/sale_delivery_report/i18n/nl_BE.po | 6 +- addons/sale_delivery_report/i18n/nl_NL.po | 6 +- addons/sale_delivery_report/i18n/pl_PL.po | 6 +- addons/sale_delivery_report/i18n/pt_BR.po | 6 +- addons/sale_delivery_report/i18n/pt_PT.po | 6 +- addons/sale_delivery_report/i18n/ro_RO.po | 6 +- addons/sale_delivery_report/i18n/ru_RU.po | 6 +- .../i18n/sale_delivery_report.pot | 6 +- addons/sale_delivery_report/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/sale_delivery_report/i18n/sv_SE.po | 6 +- addons/sale_delivery_report/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 6 +- addons/sale_delivery_report/i18n/zh_CN.po | 6 +- addons/sale_delivery_report/i18n/zh_TW.po | 6 +- addons/sale_journal/i18n/ar_AR.po | 6 +- addons/sale_journal/i18n/bg_BG.po | 6 +- addons/sale_journal/i18n/bs_BS.po | 6 +- addons/sale_journal/i18n/ca_ES.po | 6 +- addons/sale_journal/i18n/cs_CZ.po | 6 +- addons/sale_journal/i18n/de_DE.po | 6 +- addons/sale_journal/i18n/es_AR.po | 6 +- addons/sale_journal/i18n/es_ES.po | 6 +- addons/sale_journal/i18n/et_EE.po | 6 +- addons/sale_journal/i18n/fi_FI.po | 6 +- addons/sale_journal/i18n/fr_FR.po | 8 +- addons/sale_journal/i18n/hr_HR.po | 6 +- addons/sale_journal/i18n/hu_HU.po | 6 +- addons/sale_journal/i18n/id_ID.po | 6 +- addons/sale_journal/i18n/it_IT.po | 6 +- addons/sale_journal/i18n/lt_LT.po | 6 +- addons/sale_journal/i18n/nl_BE.po | 6 +- addons/sale_journal/i18n/nl_NL.po | 6 +- addons/sale_journal/i18n/pl_PL.po | 6 +- addons/sale_journal/i18n/pt_BR.po | 6 +- addons/sale_journal/i18n/pt_PT.po | 6 +- addons/sale_journal/i18n/ro_RO.po | 6 +- addons/sale_journal/i18n/ru_RU.po | 6 +- addons/sale_journal/i18n/sale_journal.pot | 6 +- addons/sale_journal/i18n/sl_SL.po | 6 +- .../sale_journal/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/sale_journal/i18n/sv_SE.po | 6 +- addons/sale_journal/i18n/tr_TR.po | 6 +- .../sale_journal/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../sale_journal/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/sale_journal/i18n/zh_CN.po | 6 +- addons/sale_journal/i18n/zh_TW.po | 6 +- addons/scrum/i18n/ar_AR.po | 6 +- addons/scrum/i18n/bg_BG.po | 6 +- addons/scrum/i18n/bs_BS.po | 6 +- addons/scrum/i18n/ca_ES.po | 6 +- addons/scrum/i18n/cs_CZ.po | 6 +- addons/scrum/i18n/de_DE.po | 6 +- addons/scrum/i18n/es_AR.po | 6 +- addons/scrum/i18n/es_ES.po | 6 +- addons/scrum/i18n/et_EE.po | 6 +- addons/scrum/i18n/fi_FI.po | 6 +- addons/scrum/i18n/fr_FR.po | 8 +- addons/scrum/i18n/hr_HR.po | 6 +- addons/scrum/i18n/hu_HU.po | 6 +- addons/scrum/i18n/id_ID.po | 6 +- addons/scrum/i18n/it_IT.po | 6 +- addons/scrum/i18n/lt_LT.po | 6 +- addons/scrum/i18n/nl_BE.po | 6 +- addons/scrum/i18n/nl_NL.po | 6 +- addons/scrum/i18n/pl_PL.po | 6 +- addons/scrum/i18n/pt_BR.po | 6 +- addons/scrum/i18n/pt_PT.po | 6 +- addons/scrum/i18n/ro_RO.po | 6 +- addons/scrum/i18n/ru_RU.po | 6 +- addons/scrum/i18n/scrum.pot | 6 +- addons/scrum/i18n/sl_SL.po | 6 +- addons/scrum/i18n/{cs_CS.po => sq_AL.po} | 8 +- addons/scrum/i18n/sv_SE.po | 6 +- addons/scrum/i18n/tr_TR.po | 6 +- addons/scrum/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/scrum/i18n/{sv_SV.po => vi_VN.po} | 44 +- addons/scrum/i18n/zh_CN.po | 6 +- addons/scrum/i18n/zh_TW.po | 6 +- addons/stock/i18n/ar_AR.po | 6 +- addons/stock/i18n/bg_BG.po | 6 +- addons/stock/i18n/bs_BS.po | 6 +- addons/stock/i18n/ca_ES.po | 6 +- addons/stock/i18n/cs_CZ.po | 6 +- addons/stock/i18n/de_DE.po | 6 +- addons/stock/i18n/es_AR.po | 6 +- addons/stock/i18n/es_ES.po | 6 +- addons/stock/i18n/et_EE.po | 10 +- addons/stock/i18n/fi_FI.po | 6 +- addons/stock/i18n/fr_FR.po | 14 +- addons/stock/i18n/hr_HR.po | 6 +- addons/stock/i18n/hu_HU.po | 6 +- addons/stock/i18n/id_ID.po | 6 +- addons/stock/i18n/it_IT.po | 6 +- addons/stock/i18n/lt_LT.po | 6 +- addons/stock/i18n/nl_BE.po | 6 +- addons/stock/i18n/nl_NL.po | 6 +- addons/stock/i18n/pl_PL.po | 6 +- addons/stock/i18n/pt_BR.po | 6 +- addons/stock/i18n/pt_PT.po | 6 +- addons/stock/i18n/ro_RO.po | 6 +- addons/stock/i18n/ru_RU.po | 6 +- addons/stock/i18n/sl_SL.po | 6 +- addons/stock/i18n/{cs_CS.po => sq_AL.po} | 22 +- addons/stock/i18n/stock.pot | 6 +- addons/stock/i18n/sv_SE.po | 6 +- addons/stock/i18n/th_TH.po | 2 +- addons/stock/i18n/tr_TR.po | 6 +- addons/stock/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/stock/i18n/{sv_SV.po => vi_VN.po} | 40 +- addons/stock/i18n/zh_CN.po | 6 +- addons/stock/i18n/zh_TW.po | 6 +- addons/stock_invoice_directly/i18n/ar_AR.po | 6 +- addons/stock_invoice_directly/i18n/bg_BG.po | 6 +- addons/stock_invoice_directly/i18n/bs_BS.po | 6 +- addons/stock_invoice_directly/i18n/ca_ES.po | 6 +- addons/stock_invoice_directly/i18n/cs_CZ.po | 6 +- addons/stock_invoice_directly/i18n/de_DE.po | 6 +- addons/stock_invoice_directly/i18n/es_AR.po | 6 +- addons/stock_invoice_directly/i18n/es_ES.po | 6 +- addons/stock_invoice_directly/i18n/et_EE.po | 6 +- addons/stock_invoice_directly/i18n/fi_FI.po | 6 +- addons/stock_invoice_directly/i18n/fr_FR.po | 6 +- addons/stock_invoice_directly/i18n/hr_HR.po | 6 +- addons/stock_invoice_directly/i18n/hu_HU.po | 6 +- addons/stock_invoice_directly/i18n/id_ID.po | 6 +- addons/stock_invoice_directly/i18n/it_IT.po | 6 +- addons/stock_invoice_directly/i18n/lt_LT.po | 6 +- addons/stock_invoice_directly/i18n/nl_BE.po | 6 +- addons/stock_invoice_directly/i18n/nl_NL.po | 6 +- addons/stock_invoice_directly/i18n/pl_PL.po | 6 +- addons/stock_invoice_directly/i18n/pt_BR.po | 6 +- addons/stock_invoice_directly/i18n/pt_PT.po | 6 +- addons/stock_invoice_directly/i18n/ro_RO.po | 6 +- addons/stock_invoice_directly/i18n/ru_RU.po | 6 +- addons/stock_invoice_directly/i18n/sl_SL.po | 6 +- .../i18n/{sv_SV.po => sq_AL.po} | 6 +- .../i18n/stock_invoice_directly.pot | 6 +- addons/stock_invoice_directly/i18n/sv_SE.po | 6 +- addons/stock_invoice_directly/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{cs_CS.po => vi_VN.po} | 6 +- addons/stock_invoice_directly/i18n/zh_CN.po | 6 +- addons/stock_invoice_directly/i18n/zh_TW.po | 6 +- addons/stock_location/i18n/ar_AR.po | 6 +- addons/stock_location/i18n/bg_BG.po | 6 +- addons/stock_location/i18n/bs_BS.po | 6 +- addons/stock_location/i18n/ca_ES.po | 6 +- addons/stock_location/i18n/cs_CZ.po | 6 +- addons/stock_location/i18n/de_DE.po | 6 +- addons/stock_location/i18n/es_AR.po | 6 +- addons/stock_location/i18n/es_ES.po | 6 +- addons/stock_location/i18n/et_EE.po | 6 +- addons/stock_location/i18n/fi_FI.po | 6 +- addons/stock_location/i18n/fr_FR.po | 6 +- addons/stock_location/i18n/hr_HR.po | 6 +- addons/stock_location/i18n/hu_HU.po | 6 +- addons/stock_location/i18n/id_ID.po | 6 +- addons/stock_location/i18n/it_IT.po | 6 +- addons/stock_location/i18n/lt_LT.po | 6 +- addons/stock_location/i18n/nl_BE.po | 6 +- addons/stock_location/i18n/nl_NL.po | 6 +- addons/stock_location/i18n/pl_PL.po | 6 +- addons/stock_location/i18n/pt_BR.po | 6 +- addons/stock_location/i18n/pt_PT.po | 6 +- addons/stock_location/i18n/ro_RO.po | 6 +- addons/stock_location/i18n/ru_RU.po | 6 +- addons/stock_location/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/stock_location/i18n/stock_location.pot | 6 +- addons/stock_location/i18n/sv_SE.po | 6 +- addons/stock_location/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/stock_location/i18n/zh_CN.po | 6 +- addons/stock_location/i18n/zh_TW.po | 6 +- addons/stock_no_autopicking/i18n/ar_AR.po | 6 +- addons/stock_no_autopicking/i18n/bg_BG.po | 6 +- addons/stock_no_autopicking/i18n/bs_BS.po | 6 +- addons/stock_no_autopicking/i18n/ca_ES.po | 6 +- addons/stock_no_autopicking/i18n/cs_CZ.po | 6 +- addons/stock_no_autopicking/i18n/de_DE.po | 6 +- addons/stock_no_autopicking/i18n/es_AR.po | 6 +- addons/stock_no_autopicking/i18n/es_ES.po | 6 +- addons/stock_no_autopicking/i18n/et_EE.po | 6 +- addons/stock_no_autopicking/i18n/fi_FI.po | 6 +- addons/stock_no_autopicking/i18n/fr_FR.po | 6 +- addons/stock_no_autopicking/i18n/hr_HR.po | 6 +- addons/stock_no_autopicking/i18n/hu_HU.po | 6 +- addons/stock_no_autopicking/i18n/id_ID.po | 6 +- addons/stock_no_autopicking/i18n/it_IT.po | 6 +- addons/stock_no_autopicking/i18n/lt_LT.po | 6 +- addons/stock_no_autopicking/i18n/nl_BE.po | 6 +- addons/stock_no_autopicking/i18n/nl_NL.po | 6 +- addons/stock_no_autopicking/i18n/pl_PL.po | 6 +- addons/stock_no_autopicking/i18n/pt_BR.po | 6 +- addons/stock_no_autopicking/i18n/pt_PT.po | 6 +- addons/stock_no_autopicking/i18n/ro_RO.po | 6 +- addons/stock_no_autopicking/i18n/ru_RU.po | 6 +- addons/stock_no_autopicking/i18n/sl_SL.po | 6 +- .../i18n/{cs_CS.po => sq_AL.po} | 6 +- .../i18n/stock_no_autopicking.pot | 6 +- addons/stock_no_autopicking/i18n/sv_SE.po | 6 +- addons/stock_no_autopicking/i18n/tr_TR.po | 6 +- .../i18n/{uk_UK.po => uk_UA.po} | 6 +- .../i18n/{sv_SV.po => vi_VN.po} | 6 +- addons/stock_no_autopicking/i18n/zh_CN.po | 6 +- addons/stock_no_autopicking/i18n/zh_TW.po | 6 +- addons/subscription/i18n/ar_AR.po | 6 +- addons/subscription/i18n/bg_BG.po | 6 +- addons/subscription/i18n/bs_BS.po | 6 +- addons/subscription/i18n/ca_ES.po | 6 +- addons/subscription/i18n/cs_CZ.po | 6 +- addons/subscription/i18n/de_DE.po | 6 +- addons/subscription/i18n/es_AR.po | 6 +- addons/subscription/i18n/es_ES.po | 6 +- addons/subscription/i18n/et_EE.po | 6 +- addons/subscription/i18n/fi_FI.po | 6 +- addons/subscription/i18n/fr_FR.po | 8 +- addons/subscription/i18n/hr_HR.po | 6 +- addons/subscription/i18n/hu_HU.po | 6 +- addons/subscription/i18n/id_ID.po | 6 +- addons/subscription/i18n/it_IT.po | 6 +- addons/subscription/i18n/lt_LT.po | 6 +- addons/subscription/i18n/nl_BE.po | 6 +- addons/subscription/i18n/nl_NL.po | 6 +- addons/subscription/i18n/pl_PL.po | 6 +- addons/subscription/i18n/pt_BR.po | 6 +- addons/subscription/i18n/pt_PT.po | 6 +- addons/subscription/i18n/ro_RO.po | 6 +- addons/subscription/i18n/ru_RU.po | 6 +- addons/subscription/i18n/sl_SL.po | 6 +- .../subscription/i18n/{cs_CS.po => sq_AL.po} | 8 +- addons/subscription/i18n/subscription.pot | 6 +- addons/subscription/i18n/sv_SE.po | 6 +- addons/subscription/i18n/tr_TR.po | 6 +- .../subscription/i18n/{uk_UK.po => uk_UA.po} | 6 +- .../subscription/i18n/{sv_SV.po => vi_VN.po} | 38 +- addons/subscription/i18n/zh_CN.po | 6 +- addons/subscription/i18n/zh_TW.po | 6 +- addons/warning/i18n/ar_AR.po | 6 +- addons/warning/i18n/bg_BG.po | 18 +- addons/warning/i18n/bs_BS.po | 6 +- addons/warning/i18n/ca_ES.po | 6 +- addons/warning/i18n/cs_CZ.po | 6 +- addons/warning/i18n/de_DE.po | 6 +- addons/warning/i18n/es_AR.po | 6 +- addons/warning/i18n/es_ES.po | 6 +- addons/warning/i18n/et_EE.po | 6 +- addons/warning/i18n/fi_FI.po | 6 +- addons/warning/i18n/fr_FR.po | 6 +- addons/warning/i18n/hr_HR.po | 6 +- addons/warning/i18n/hu_HU.po | 6 +- addons/warning/i18n/id_ID.po | 6 +- addons/warning/i18n/it_IT.po | 6 +- addons/warning/i18n/lt_LT.po | 6 +- addons/warning/i18n/nl_BE.po | 6 +- addons/warning/i18n/nl_NL.po | 6 +- addons/warning/i18n/pl_PL.po | 6 +- addons/warning/i18n/pt_BR.po | 6 +- addons/warning/i18n/pt_PT.po | 6 +- addons/warning/i18n/ro_RO.po | 6 +- addons/warning/i18n/ru_RU.po | 6 +- addons/warning/i18n/sl_SL.po | 6 +- addons/warning/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/warning/i18n/sv_SE.po | 6 +- addons/warning/i18n/tr_TR.po | 6 +- addons/warning/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/warning/i18n/{sv_SV.po => vi_VN.po} | 6 +- addons/warning/i18n/warning.pot | 6 +- addons/warning/i18n/zh_CN.po | 6 +- addons/warning/i18n/zh_TW.po | 6 +- addons/wiki/i18n/ar_AR.po | 6 +- addons/wiki/i18n/bg_BG.po | 6 +- addons/wiki/i18n/bs_BS.po | 6 +- addons/wiki/i18n/ca_ES.po | 6 +- addons/wiki/i18n/cs_CZ.po | 6 +- addons/wiki/i18n/de_DE.po | 6 +- addons/wiki/i18n/es_AR.po | 6 +- addons/wiki/i18n/es_ES.po | 6 +- addons/wiki/i18n/et_EE.po | 6 +- addons/wiki/i18n/fi_FI.po | 6 +- addons/wiki/i18n/fr_FR.po | 8 +- addons/wiki/i18n/hr_HR.po | 6 +- addons/wiki/i18n/hu_HU.po | 6 +- addons/wiki/i18n/id_ID.po | 6 +- addons/wiki/i18n/it_IT.po | 6 +- addons/wiki/i18n/lt_LT.po | 6 +- addons/wiki/i18n/nl_BE.po | 6 +- addons/wiki/i18n/nl_NL.po | 6 +- addons/wiki/i18n/pl_PL.po | 6 +- addons/wiki/i18n/pt_BR.po | 6 +- addons/wiki/i18n/pt_PT.po | 6 +- addons/wiki/i18n/ro_RO.po | 6 +- addons/wiki/i18n/ru_RU.po | 6 +- addons/wiki/i18n/sl_SL.po | 6 +- addons/wiki/i18n/{cs_CS.po => sq_AL.po} | 6 +- addons/wiki/i18n/sv_SE.po | 6 +- addons/wiki/i18n/tr_TR.po | 6 +- addons/wiki/i18n/{uk_UK.po => uk_UA.po} | 6 +- addons/wiki/i18n/{sv_SV.po => vi_VN.po} | 8 +- addons/wiki/i18n/wiki.pot | 6 +- addons/wiki/i18n/zh_CN.po | 6 +- addons/wiki/i18n/zh_TW.po | 6 +- 3615 files changed, 28146 insertions(+), 26986 deletions(-) rename addons/account/i18n/{sv_SV.po => sq_AL.po} (99%) rename addons/account/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/account/i18n/{cs_CS.po => vi_VN.po} (99%) rename addons/account_analytic_analysis/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/account_analytic_analysis/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/account_analytic_analysis/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/account_analytic_default/i18n/{cs_CS.po => sq_AL.po} (95%) rename addons/account_analytic_default/i18n/{uk_UK.po => uk_UA.po} (95%) rename addons/account_analytic_default/i18n/{sv_SV.po => vi_VN.po} (92%) rename addons/account_analytic_plans/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/account_analytic_plans/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/account_analytic_plans/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/account_balance/i18n/{sv_SV.po => sq_AL.po} (98%) rename addons/account_balance/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/account_balance/i18n/{cs_CS.po => vi_VN.po} (98%) rename addons/account_budget/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/account_budget/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/account_budget/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/account_chart/i18n/{cs_CS.po => sq_AL.po} (77%) rename addons/account_chart/i18n/{sv_SV.po => uk_UA.po} (77%) rename addons/account_chart/i18n/{uk_UK.po => vi_VN.po} (77%) rename addons/account_date_check/i18n/{sv_SV.po => sq_AL.po} (83%) rename addons/account_date_check/i18n/{uk_UK.po => uk_UA.po} (85%) rename addons/account_date_check/i18n/{cs_CS.po => vi_VN.po} (83%) rename addons/account_followup/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/account_followup/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/account_followup/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/account_invoice_layout/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/account_invoice_layout/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/account_invoice_layout/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/account_payment/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/account_payment/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/account_payment/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/account_report/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/account_report/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/account_report/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/account_reporting/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/account_reporting/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/account_reporting/i18n/{sv_SV.po => vi_VN.po} (95%) rename addons/account_tax_include/i18n/{sv_SV.po => sq_AL.po} (89%) rename addons/account_tax_include/i18n/{uk_UK.po => uk_UA.po} (89%) rename addons/account_tax_include/i18n/{cs_CS.po => vi_VN.po} (89%) rename addons/account_voucher/i18n/{cs_CS.po => sq_AL.po} (99%) rename addons/account_voucher/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/account_voucher/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/analytic_journal_billing_rate/i18n/{cs_CS.po => sq_AL.po} (92%) rename addons/analytic_journal_billing_rate/i18n/{uk_UK.po => uk_UA.po} (93%) rename addons/analytic_journal_billing_rate/i18n/{sv_SV.po => vi_VN.po} (87%) rename addons/analytic_user_function/i18n/{cs_CS.po => sq_AL.po} (91%) rename addons/analytic_user_function/i18n/{uk_UK.po => uk_UA.po} (92%) rename addons/analytic_user_function/i18n/{sv_SV.po => vi_VN.po} (87%) rename addons/auction/i18n/{cs_CS.po => sq_AL.po} (99%) rename addons/auction/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/auction/i18n/{sv_SV.po => vi_VN.po} (99%) rename addons/audittrail/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/audittrail/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/audittrail/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/base_contact/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/base_contact/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/base_contact/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/base_iban/i18n/{sv_SV.po => sq_AL.po} (90%) rename addons/base_iban/i18n/{uk_UK.po => uk_UA.po} (91%) rename addons/base_iban/i18n/{cs_CS.po => vi_VN.po} (90%) rename addons/base_module_merge/i18n/{uk_UK.po => sq_AL.po} (96%) rename addons/base_module_merge/i18n/{sv_SV.po => uk_UA.po} (96%) rename addons/base_module_merge/i18n/{cs_CS.po => vi_VN.po} (96%) rename addons/base_module_publish/i18n/{sv_SV.po => sq_AL.po} (98%) rename addons/base_module_publish/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/base_module_publish/i18n/{cs_CS.po => vi_VN.po} (90%) create mode 100644 addons/base_module_quality/i18n/sq_AL.po create mode 100644 addons/base_module_quality/i18n/uk_UA.po delete mode 100644 addons/base_module_quality/i18n/uk_UK.po create mode 100644 addons/base_module_quality/i18n/vi_VN.po rename addons/base_module_record/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/base_module_record/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/base_module_record/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/base_report_creator/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/base_report_creator/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/base_report_creator/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/base_report_designer/i18n/{sv_SV.po => sq_AL.po} (96%) rename addons/base_report_designer/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/base_report_designer/i18n/{cs_CS.po => vi_VN.po} (96%) rename addons/base_setup/i18n/{sv_SV.po => sq_AL.po} (98%) rename addons/base_setup/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/base_setup/i18n/{cs_CS.po => vi_VN.po} (92%) rename addons/base_vat/i18n/{sv_SV.po => sq_AL.po} (85%) rename addons/base_vat/i18n/{uk_UK.po => uk_UA.po} (86%) rename addons/base_vat/i18n/{cs_CS.po => vi_VN.po} (85%) rename addons/board/i18n/{cs_CS.po => sq_AL.po} (96%) rename addons/board/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/board/i18n/{sv_SV.po => vi_VN.po} (94%) rename addons/board_account/i18n/{cs_CS.po => sq_AL.po} (93%) rename addons/board_account/i18n/{uk_UK.po => uk_UA.po} (94%) rename addons/board_account/i18n/{sv_SV.po => vi_VN.po} (93%) rename addons/board_association/i18n/{cs_CS.po => sq_AL.po} (91%) rename addons/board_association/i18n/{uk_UK.po => uk_UA.po} (91%) rename addons/board_association/i18n/{sv_SV.po => vi_VN.po} (91%) rename addons/board_auction/i18n/{cs_CS.po => sq_AL.po} (94%) rename addons/board_auction/i18n/{uk_UK.po => uk_UA.po} (94%) rename addons/board_auction/i18n/{sv_SV.po => vi_VN.po} (94%) rename addons/board_crm_configuration/i18n/{sv_SV.po => sq_AL.po} (95%) rename addons/board_crm_configuration/i18n/{uk_UK.po => uk_UA.po} (95%) rename addons/board_crm_configuration/i18n/{cs_CS.po => vi_VN.po} (95%) rename addons/board_document/i18n/{cs_CS.po => sq_AL.po} (93%) rename addons/board_document/i18n/{uk_UK.po => uk_UA.po} (93%) rename addons/board_document/i18n/{sv_SV.po => vi_VN.po} (93%) rename addons/board_manufacturing/i18n/{cs_CS.po => sq_AL.po} (92%) rename addons/board_manufacturing/i18n/{uk_UK.po => uk_UA.po} (93%) rename addons/board_manufacturing/i18n/{sv_SV.po => vi_VN.po} (91%) rename addons/board_project/i18n/{cs_CS.po => sq_AL.po} (95%) rename addons/board_project/i18n/{uk_UK.po => uk_UA.po} (96%) rename addons/board_project/i18n/{sv_SV.po => vi_VN.po} (95%) rename addons/board_sale/i18n/{sv_SV.po => sq_AL.po} (91%) rename addons/board_sale/i18n/{uk_UK.po => uk_UA.po} (91%) rename addons/board_sale/i18n/{cs_CS.po => vi_VN.po} (91%) rename addons/crm/i18n/{cs_CS.po => sq_AL.po} (99%) rename addons/crm/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/crm/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/crm_configuration/i18n/{cs_CS.po => sq_AL.po} (99%) rename addons/crm_configuration/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/crm_configuration/i18n/{sv_SV.po => vi_VN.po} (99%) rename addons/crm_profiling/i18n/{cs_CS.po => sq_AL.po} (96%) rename addons/crm_profiling/i18n/{uk_UK.po => uk_UA.po} (96%) rename addons/crm_profiling/i18n/{sv_SV.po => vi_VN.po} (94%) rename addons/crm_vertical/i18n/{sv_SV.po => sq_AL.po} (78%) rename addons/crm_vertical/i18n/{uk_UK.po => uk_UA.po} (78%) rename addons/crm_vertical/i18n/{cs_CS.po => vi_VN.po} (78%) rename addons/delivery/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/delivery/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/delivery/i18n/{sv_SV.po => vi_VN.po} (95%) rename addons/document/i18n/{cs_CS.po => sq_AL.po} (88%) rename addons/document/i18n/{uk_UK.po => uk_UA.po} (89%) rename addons/document/i18n/{sv_SV.po => vi_VN.po} (88%) rename addons/document_ics/i18n/{cs_CS.po => sq_AL.po} (96%) rename addons/document_ics/i18n/{uk_UK.po => uk_UA.po} (96%) rename addons/document_ics/i18n/{sv_SV.po => vi_VN.po} (95%) rename addons/event/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/event/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/event/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/event_project/i18n/{sv_SV.po => sq_AL.po} (92%) rename addons/event_project/i18n/{uk_UK.po => uk_UA.po} (92%) rename addons/event_project/i18n/{cs_CS.po => vi_VN.po} (92%) rename addons/google_map/i18n/{sv_SV.po => sq_AL.po} (87%) rename addons/google_map/i18n/{uk_UK.po => uk_UA.po} (88%) rename addons/google_map/i18n/{cs_CS.po => vi_VN.po} (87%) rename addons/hr/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/hr/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/hr/i18n/{sv_SV.po => vi_VN.po} (94%) rename addons/hr_attendance/i18n/{sv_SV.po => sq_AL.po} (96%) rename addons/hr_attendance/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/hr_attendance/i18n/{cs_CS.po => vi_VN.po} (92%) rename addons/hr_contract/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/hr_contract/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/hr_contract/i18n/{sv_SV.po => vi_VN.po} (95%) rename addons/hr_expense/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/hr_expense/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/hr_expense/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/hr_holidays/i18n/{cs_CS.po => sq_AL.po} (99%) rename addons/hr_holidays/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/hr_holidays/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/hr_timesheet/i18n/{sv_SV.po => sq_AL.po} (98%) rename addons/hr_timesheet/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/hr_timesheet/i18n/{cs_CS.po => vi_VN.po} (94%) rename addons/hr_timesheet_invoice/i18n/{sv_SV.po => sq_AL.po} (98%) rename addons/hr_timesheet_invoice/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/hr_timesheet_invoice/i18n/{cs_CS.po => vi_VN.po} (97%) rename addons/hr_timesheet_sheet/i18n/{cs_CS.po => sq_AL.po} (99%) rename addons/hr_timesheet_sheet/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/hr_timesheet_sheet/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/idea/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/idea/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/idea/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/l10n_be/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/l10n_be/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/l10n_be/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/l10n_ch/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/l10n_ch/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/l10n_ch/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/l10n_ch_chart_c2c_pcg/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/l10n_ch_chart_c2c_pcg/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/l10n_ch_chart_c2c_pcg/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/l10n_chart_uk_minimal/i18n/{cs_CS.po => sq_AL.po} (95%) rename addons/l10n_chart_uk_minimal/i18n/{uk_UK.po => uk_UA.po} (95%) rename addons/l10n_chart_uk_minimal/i18n/{sv_SV.po => vi_VN.po} (92%) rename addons/l10n_fr/i18n/{cs_CS.po => sq_AL.po} (99%) rename addons/l10n_fr/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/l10n_fr/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/l10n_lu/i18n/{cs_CS.po => sq_AL.po} (95%) rename addons/l10n_lu/i18n/{uk_UK.po => uk_UA.po} (95%) rename addons/l10n_lu/i18n/{sv_SV.po => vi_VN.po} (93%) rename addons/membership/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/membership/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/membership/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/mrp/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/mrp/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/mrp/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/mrp_jit/i18n/{sv_SV.po => sq_AL.po} (76%) rename addons/mrp_jit/i18n/{uk_UK.po => uk_UA.po} (76%) rename addons/mrp_jit/i18n/{cs_CS.po => vi_VN.po} (76%) rename addons/mrp_operations/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/mrp_operations/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/mrp_operations/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/mrp_repair/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/mrp_repair/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/mrp_repair/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/mrp_subproduct/i18n/{cs_CS.po => sq_AL.po} (92%) rename addons/mrp_subproduct/i18n/{uk_UK.po => uk_UA.po} (93%) rename addons/mrp_subproduct/i18n/{sv_SV.po => vi_VN.po} (88%) rename addons/point_of_sale/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/point_of_sale/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/point_of_sale/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/process/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/process/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/process/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/product/i18n/{sv_SV.po => sq_AL.po} (97%) rename addons/product/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/product/i18n/{cs_CS.po => vi_VN.po} (95%) rename addons/product_margin/i18n/{sv_SV.po => sq_AL.po} (97%) rename addons/product_margin/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/product_margin/i18n/{cs_CS.po => vi_VN.po} (97%) rename addons/profile_accounting/i18n/{cs_CS.po => sq_AL.po} (96%) rename addons/profile_accounting/i18n/{uk_UK.po => uk_UA.po} (96%) rename addons/profile_accounting/i18n/{sv_SV.po => vi_VN.po} (94%) rename addons/profile_association/i18n/{cs_CS.po => sq_AL.po} (96%) rename addons/profile_association/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/profile_association/i18n/{sv_SV.po => vi_VN.po} (94%) rename addons/profile_auction/i18n/{cs_CS.po => sq_AL.po} (77%) rename addons/profile_auction/i18n/{sv_SV.po => uk_UA.po} (77%) rename addons/profile_auction/i18n/{uk_UK.po => vi_VN.po} (77%) rename addons/profile_crm/i18n/{sv_SV.po => sq_AL.po} (77%) rename addons/profile_crm/i18n/{uk_UK.po => uk_UA.po} (77%) rename addons/profile_crm/i18n/{cs_CS.po => vi_VN.po} (77%) rename addons/profile_manufacturing/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/profile_manufacturing/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/profile_manufacturing/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/profile_service/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/profile_service/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/profile_service/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/project/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/project/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/project/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/project_gtd/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/project_gtd/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/project_gtd/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/project_mrp/i18n/{cs_CS.po => sq_AL.po} (94%) rename addons/project_mrp/i18n/{sv_SV.po => uk_UA.po} (94%) rename addons/project_mrp/i18n/{uk_UK.po => vi_VN.po} (94%) rename addons/project_retro_planning/i18n/{cs_CS.po => sq_AL.po} (78%) rename addons/project_retro_planning/i18n/{sv_SV.po => uk_UA.po} (78%) rename addons/project_retro_planning/i18n/{uk_UK.po => vi_VN.po} (78%) rename addons/project_timesheet/i18n/{sv_SV.po => sq_AL.po} (81%) rename addons/project_timesheet/i18n/{uk_UK.po => uk_UA.po} (81%) rename addons/project_timesheet/i18n/{cs_CS.po => vi_VN.po} (81%) rename addons/purchase/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/purchase/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/purchase/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/purchase_analytic_plans/i18n/{sv_SV.po => sq_AL.po} (84%) rename addons/purchase_analytic_plans/i18n/{uk_UK.po => uk_UA.po} (85%) rename addons/purchase_analytic_plans/i18n/{cs_CS.po => vi_VN.po} (84%) rename addons/report_account/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/report_account/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/report_account/i18n/{sv_SV.po => vi_VN.po} (95%) rename addons/report_analytic/i18n/{cs_CS.po => sq_AL.po} (93%) rename addons/report_analytic/i18n/{uk_UK.po => uk_UA.po} (94%) rename addons/report_analytic/i18n/{sv_SV.po => vi_VN.po} (89%) rename addons/report_analytic_line/i18n/{cs_CS.po => sq_AL.po} (94%) rename addons/report_analytic_line/i18n/{uk_UK.po => uk_UA.po} (95%) rename addons/report_analytic_line/i18n/{sv_SV.po => vi_VN.po} (91%) rename addons/report_analytic_planning/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/report_analytic_planning/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/report_analytic_planning/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/report_crm/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/report_crm/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/report_crm/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/report_document/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/report_document/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/report_document/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/report_intrastat/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/report_intrastat/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/report_intrastat/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/report_mrp/i18n/{cs_CS.po => sq_AL.po} (94%) rename addons/report_mrp/i18n/{uk_UK.po => uk_UA.po} (95%) rename addons/report_mrp/i18n/{sv_SV.po => vi_VN.po} (90%) rename addons/report_project/i18n/{cs_CS.po => sq_AL.po} (96%) rename addons/report_project/i18n/{uk_UK.po => uk_UA.po} (96%) rename addons/report_project/i18n/{sv_SV.po => vi_VN.po} (94%) rename addons/report_purchase/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/report_purchase/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/report_purchase/i18n/{sv_SV.po => vi_VN.po} (95%) rename addons/report_sale/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/report_sale/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/report_sale/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/report_task/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/report_task/i18n/{sv_SV.po => uk_UA.po} (93%) rename addons/report_task/i18n/{uk_UK.po => vi_VN.po} (97%) rename addons/report_timesheet/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/report_timesheet/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/report_timesheet/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/sale/i18n/{cs_CS.po => sq_AL.po} (98%) rename addons/sale/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/sale/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/sale_analytic_plans/i18n/{cs_CS.po => sq_AL.po} (84%) rename addons/sale_analytic_plans/i18n/{uk_UK.po => uk_UA.po} (85%) rename addons/sale_analytic_plans/i18n/{sv_SV.po => vi_VN.po} (84%) rename addons/sale_crm/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/sale_crm/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/sale_crm/i18n/{sv_SV.po => vi_VN.po} (97%) rename addons/sale_delivery_report/i18n/{cs_CS.po => sq_AL.po} (91%) rename addons/sale_delivery_report/i18n/{uk_UK.po => uk_UA.po} (91%) rename addons/sale_delivery_report/i18n/{sv_SV.po => vi_VN.po} (91%) rename addons/sale_journal/i18n/{cs_CS.po => sq_AL.po} (99%) rename addons/sale_journal/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/sale_journal/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/scrum/i18n/{cs_CS.po => sq_AL.po} (99%) rename addons/scrum/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/scrum/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/stock/i18n/{cs_CS.po => sq_AL.po} (99%) rename addons/stock/i18n/{uk_UK.po => uk_UA.po} (99%) rename addons/stock/i18n/{sv_SV.po => vi_VN.po} (98%) rename addons/stock_invoice_directly/i18n/{sv_SV.po => sq_AL.po} (78%) rename addons/stock_invoice_directly/i18n/{uk_UK.po => uk_UA.po} (78%) rename addons/stock_invoice_directly/i18n/{cs_CS.po => vi_VN.po} (78%) rename addons/stock_location/i18n/{cs_CS.po => sq_AL.po} (95%) rename addons/stock_location/i18n/{uk_UK.po => uk_UA.po} (95%) rename addons/stock_location/i18n/{sv_SV.po => vi_VN.po} (92%) rename addons/stock_no_autopicking/i18n/{cs_CS.po => sq_AL.po} (85%) rename addons/stock_no_autopicking/i18n/{uk_UK.po => uk_UA.po} (86%) rename addons/stock_no_autopicking/i18n/{sv_SV.po => vi_VN.po} (85%) rename addons/subscription/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/subscription/i18n/{uk_UK.po => uk_UA.po} (97%) rename addons/subscription/i18n/{sv_SV.po => vi_VN.po} (92%) rename addons/warning/i18n/{cs_CS.po => sq_AL.po} (96%) rename addons/warning/i18n/{uk_UK.po => uk_UA.po} (96%) rename addons/warning/i18n/{sv_SV.po => vi_VN.po} (96%) rename addons/wiki/i18n/{cs_CS.po => sq_AL.po} (97%) rename addons/wiki/i18n/{uk_UK.po => uk_UA.po} (98%) rename addons/wiki/i18n/{sv_SV.po => vi_VN.po} (96%) diff --git a/addons/account/i18n/account.pot b/addons/account/i18n/account.pot index 35649793254..a777acb9c5c 100644 --- a/addons/account/i18n/account.pot +++ b/addons/account/i18n/account.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/ar_AR.po b/addons/account/i18n/ar_AR.po index 93fdba1ad6a..2b476f74f33 100644 --- a/addons/account/i18n/ar_AR.po +++ b/addons/account/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/bg_BG.po b/addons/account/i18n/bg_BG.po index 2e5c34f52e7..16306e36668 100644 --- a/addons/account/i18n/bg_BG.po +++ b/addons/account/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "Отстъпка (%)" msgid "Write-Off amount" msgstr "Сума за отписване" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "Видове сметки" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,9 +2379,9 @@ msgid "Applicable Code (if type=code)" msgstr "Приложим код (if type=code)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Отваряне на дневник" #. module: account #: rml:account.analytic.account.journal:0 @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,9 +3585,9 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Стандартни записи" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/bs_BS.po b/addons/account/i18n/bs_BS.po index a318daa9d6d..6b0251672ef 100644 --- a/addons/account/i18n/bs_BS.po +++ b/addons/account/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/ca_ES.po b/addons/account/i18n/ca_ES.po index 0b52e2b479f..5b60aad9d3f 100644 --- a/addons/account/i18n/ca_ES.po +++ b/addons/account/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "Descompte (%)" msgid "Write-Off amount" msgstr "Import desajustat" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "Deixeu-lo buit si l'exercici fiscal pertany a varie companyies" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "Factura analítica" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "Tipus de comptes" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2375,9 +2380,9 @@ msgid "Applicable Code (if type=code)" msgstr "Codi aplicable (si tipus=codi)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Obre diari" #. module: account #: rml:account.analytic.account.journal:0 @@ -2465,7 +2470,7 @@ msgstr "Des de comptes analítics, crea factura." #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3581,9 +3586,9 @@ msgid "3 Months" msgstr "3 mesos" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Assentaments estàndars" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/cs_CZ.po b/addons/account/i18n/cs_CZ.po index dee26cf55d3..6cdbd05b53d 100644 --- a/addons/account/i18n/cs_CZ.po +++ b/addons/account/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,9 +2379,9 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Otevřít deník(Open Journal)" #. module: account #: rml:account.analytic.account.journal:0 @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,9 +3585,9 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Standartní položky" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/de_DE.po b/addons/account/i18n/de_DE.po index 16564631906..5928fde24f4 100644 --- a/addons/account/i18n/de_DE.po +++ b/addons/account/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -629,6 +629,11 @@ msgstr "Rabatt (%)" msgid "Write-Off amount" msgstr "Abschreibungsbetrag" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "Leer lassen wenn Wirtschaftsjahr durch mehrere Unternehmen verwendet werden soll" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -949,7 +954,7 @@ msgstr "Rechnung (Analyse)" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1369,7 +1374,7 @@ msgstr "Kontoart" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2378,9 +2383,9 @@ msgid "Applicable Code (if type=code)" msgstr "Anzuwendender Typ (if type=code)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Öffne Journal" #. module: account #: rml:account.analytic.account.journal:0 @@ -2468,7 +2473,7 @@ msgstr "Erzeuge Rechnung aus dem Analysekonto" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3584,9 +3589,9 @@ msgid "3 Months" msgstr "3 Monate" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Standard Buchung" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po index 73e91d5f8f6..f47bfb37a0d 100644 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,9 +2379,9 @@ msgid "Applicable Code (if type=code)" msgstr "Código de Aplicación" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Abrir Libro" #. module: account #: rml:account.analytic.account.journal:0 @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/es_ES.po b/addons/account/i18n/es_ES.po index 970252ed07d..8af30b54176 100644 --- a/addons/account/i18n/es_ES.po +++ b/addons/account/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "Descuento (%)" msgid "Write-Off amount" msgstr "Importe desajuste" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "Dejarlo vacío si el ejercicio fiscal pertenece a varias compañías" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "Factura analítica" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "Tipos de cuentas" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,9 +2379,9 @@ msgid "Applicable Code (if type=code)" msgstr "Código aplicable (si tipo=código)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Abrir diario" #. module: account #: rml:account.analytic.account.journal:0 @@ -2464,7 +2469,7 @@ msgstr "Desde cuentas analíticas, crear factura." #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,9 +3585,9 @@ msgid "3 Months" msgstr "3 meses" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Asientos estándares" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/et_EE.po b/addons/account/i18n/et_EE.po index f3e1cb96829..ecf4e9611e8 100644 --- a/addons/account/i18n/et_EE.po +++ b/addons/account/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -102,7 +102,7 @@ msgstr "Konto statistika" #: model:ir.actions.wizard,name:account.wizard_vat_declaration #: model:ir.ui.menu,name:account.menu_wizard_vat_declaration msgid "Print Taxes Report" -msgstr "Trüki maksude aruanne" +msgstr "Prindi maksuaruanne" #. module: account #: field:account.account,parent_id:0 @@ -625,6 +625,11 @@ msgstr "Allahindlus (%)" msgid "Write-Off amount" msgstr "Mahakandmise summa" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "Jäta tühjaks kui majandusaasta kuulub mitmele firmale." + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "Analüütiline arve" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1120,7 +1125,7 @@ msgstr "" #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 msgid "Fiscal Position Template" -msgstr "" +msgstr "Finantspositsiooni mall" #. module: account #: field:account.payment.term,line_ids:0 @@ -1365,7 +1370,7 @@ msgstr "Konto tüübid" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -2711,7 +2716,7 @@ msgstr "" #. module: account #: wizard_button:populate_statement_from_inv,init,go:0 msgid "_Go" -msgstr "" +msgstr "_Mine" #. module: account #: field:res.partner,ref_companies:0 @@ -3551,7 +3556,7 @@ msgstr "Järjekord" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template msgid "Template for Fiscal Position" -msgstr "" +msgstr "Mall finantspositsioonile" #. module: account #: view:account.bank.statement:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "3 kuud" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" @@ -3632,7 +3637,7 @@ msgstr "" #: field:account.fiscalyear,date_start:0 #: field:account.subscription,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Alguskuupäev" #. module: account #: wizard_view:account.general.ledger.report,account_selection:0 @@ -3918,7 +3923,7 @@ msgstr "" #. module: account #: field:account.invoice.line,price_subtotal:0 msgid "Subtotal w/o tax" -msgstr "" +msgstr "Vahesumma maksuta" #. module: account #: field:account.invoice.line,invoice_id:0 @@ -5133,7 +5138,7 @@ msgstr "" #. module: account #: wizard_view:account.period.close,init:0 msgid "Are you sure ?" -msgstr "Oled sa kindel=" +msgstr "Oled sa kindel?" #. module: account #: rml:account.invoice:0 @@ -5741,7 +5746,7 @@ msgstr "Maksetingimus" #: model:ir.actions.act_window,name:account.action_account_fiscal_position_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form msgid "Fiscal Positions" -msgstr "" +msgstr "Finantspositsioonid" #. module: account #: model:process.process,name:account.process_process_statementprocess0 diff --git a/addons/account/i18n/fi_FI.po b/addons/account/i18n/fi_FI.po index c0184913e3b..432aef399fd 100644 --- a/addons/account/i18n/fi_FI.po +++ b/addons/account/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/fr_FR.po b/addons/account/i18n/fr_FR.po index f9611706ad9..b526b0d5cb0 100644 --- a/addons/account/i18n/fr_FR.po +++ b/addons/account/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Actifs" #. module: account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: account #: help:account.journal,currency:0 @@ -74,7 +74,7 @@ msgstr "Ce compte sera utilisé pour valoriser le stock entrant pour cette caté #. module: account #: help:account.invoice,period_id:0 msgid "Keep empty to use the period of the validation(invoice) date." -msgstr "Laissez vide pour utiliser la période de la date de validation (facture)" +msgstr "Laisser vide pour utiliser la période de la date de validation (facture)." #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 @@ -102,7 +102,7 @@ msgstr "Statistiques du compte" #: model:ir.actions.wizard,name:account.wizard_vat_declaration #: model:ir.ui.menu,name:account.menu_wizard_vat_declaration msgid "Print Taxes Report" -msgstr "Imprimer le rapport des taxes" +msgstr "Imprimer le rapport de taxes" #. module: account #: field:account.account,parent_id:0 @@ -112,7 +112,7 @@ msgstr "Parent" #. module: account #: selection:account.move,type:0 msgid "Journal Voucher" -msgstr "Journal des écritures" +msgstr "Pièce justificative" #. module: account #: field:account.invoice,residual:0 @@ -131,7 +131,7 @@ msgstr "Coefficient multiplicateur" #: model:ir.actions.wizard,name:account.wizard_unreconcile_select #: model:ir.ui.menu,name:account.menu_unreconcile_select msgid "Unreconcile entries" -msgstr "Dé-lettrer les écritures" +msgstr "Ecritures non-lettrées" #. module: account #: constraint:account.period:0 @@ -200,7 +200,7 @@ msgstr "Montant total de la période" #: view:account.tax:0 #: view:account.tax.template:0 msgid "Compute Code (if type=code)" -msgstr "Code de Calcul (si type=code)" +msgstr "Mode de Calcul (si type=code)" #. module: account #: view:account.move:0 @@ -296,7 +296,7 @@ msgstr "Origine" #. module: account #: rml:account.analytic.account.journal:0 msgid "Move Name" -msgstr "Nom écriture" +msgstr "" #. module: account #: xsl:account.transfer:0 @@ -306,12 +306,12 @@ msgstr "Référence" #. module: account #: wizard_view:account.subscription.generate,init:0 msgid "Subscription Compute" -msgstr "Calcul de l'abonnement" +msgstr "Calcul de la souscription" #. module: account #: rml:account.central.journal:0 msgid "Account Num." -msgstr "N° de compte" +msgstr "N° du compte" #. module: account #: rml:account.analytic.account.analytic.check:0 @@ -342,7 +342,7 @@ msgstr "Centre de coûts" #: field:account.tax,child_depend:0 #: field:account.tax.template,child_depend:0 msgid "Tax on Children" -msgstr "Taxe sur les fils" +msgstr "Taxe sur les objets fils" #. module: account #: rml:account.central.journal:0 @@ -359,7 +359,7 @@ msgstr "Commentaires dans les factures" #. module: account #: constraint:account.analytic.account:0 msgid "Error! You can not create recursive analytic accounts." -msgstr "Erreur! Vous ne pouvez pas créer de comptes analytiques récursifs." +msgstr "Erreur ! Vous ne pouvez pas créer de comptes analytiques récursivement." #. module: account #: field:account.bank.statement.reconcile,total_entry:0 @@ -396,7 +396,7 @@ msgstr "Toutes les écritures analytiques" #. module: account #: rml:account.overdue:0 msgid "Date:" -msgstr "Date:" +msgstr "Date :" #. module: account #: selection:account.account.type,sign:0 @@ -433,7 +433,7 @@ msgstr "Avoirs fournisseurs en attente de déduction" #: view:account.tax:0 #: view:account.tax.template:0 msgid "Special Computation" -msgstr "Calcul spécifique" +msgstr "Calcul particulier" #. module: account #: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 @@ -450,7 +450,7 @@ msgstr "Rapprochement bancaire" #. module: account #: rml:account.invoice:0 msgid "Disc.(%)" -msgstr "Rist. (%)" +msgstr "" #. module: account #: rml:account.general.ledger:0 @@ -464,7 +464,7 @@ msgstr "Réf." #. module: account #: field:account.tax.template,type_tax_use:0 msgid "Tax Use In" -msgstr "Taxe utilisée dans" +msgstr "Usage de la Taxe" #. module: account #: help:account.tax.template,include_base_amount:0 @@ -501,7 +501,7 @@ msgstr "Payé et lettré" #. module: account #: wizard_field:account.chart,init,target_move:0 msgid "Target Moves" -msgstr "Écritures Cibles" +msgstr "Mouvements Cibles" #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_template_form @@ -522,7 +522,7 @@ msgstr "Méthode de report à nouveau" #. module: account #: field:account.tax.template,include_base_amount:0 msgid "Include in Base Amount" -msgstr "Inclus dans le montant de base" +msgstr "Inclure dans le Montant de Base" #. module: account #: field:account.tax,ref_base_code_id:0 @@ -559,7 +559,7 @@ msgstr "Taxes" #. module: account #: rml:account.central.journal:0 msgid "Printing Date" -msgstr "Date d'impression" +msgstr "Imprimer la date" #. module: account #: rml:account.general.ledger:0 @@ -602,7 +602,7 @@ msgstr "Contact" #: selection:account.model.line,date:0 #: selection:account.model.line,date_maturity:0 msgid "Partner Payment Term" -msgstr "Conditions de paiement" +msgstr "Condition de règlement" #. module: account #: view:account.move.reconcile:0 @@ -625,6 +625,11 @@ msgstr "Remise (%)" msgid "Write-Off amount" msgstr "Montant de l'ajustement" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "Laissez ce champ vide pour pour une sélection de plusieurs entreprises." + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -646,12 +651,12 @@ msgstr "Ecritures analytiques" #. module: account #: selection:account.subscription,period_type:0 msgid "month" -msgstr "mois" +msgstr "Mois" #. module: account #: field:account.analytic.account,partner_id:0 msgid "Associated Partner" -msgstr "Partenaire associé" +msgstr "Partenaire Associé" #. module: account #: field:account.invoice,comment:0 @@ -689,7 +694,7 @@ msgstr "Ext." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_line_open msgid "account.move.line" -msgstr "Ligne d'écriture" +msgstr "Ligne de mouvement de compte" #. module: account #: model:process.transition,name:account.process_transition_supplieranalyticcost0 @@ -716,7 +721,7 @@ msgstr "Journal des opérations de fin d'année" #: view:product.product:0 #: view:product.template:0 msgid "Purchase Properties" -msgstr "Propriétés d'achat" +msgstr "Propriétés de l'Achat" #. module: account #: model:process.node,note:account.process_node_paymententries0 @@ -747,7 +752,7 @@ msgstr "État" #: rml:account.analytic.account.cost_ledger:0 #: rml:account.analytic.account.quantity_cost_ledger:0 msgid "Period to" -msgstr "Fin de période" +msgstr "Depuis" #. module: account #: field:account.account.type,partner_account:0 @@ -778,7 +783,7 @@ msgstr "(laisser vide pour toutes les années fiscales ouvertes)" #. module: account #: field:account.invoice,move_lines:0 msgid "Move Lines" -msgstr "Lignes d'écritures" +msgstr "Lignes de mouvements" #. module: account #: model:ir.model,name:account.model_account_config_wizard @@ -917,7 +922,7 @@ msgstr "Montant Hors Taxe" #. module: account #: help:account.journal,user_id:0 msgid "The user responsible for this journal" -msgstr "L'utilisateur responsable de ce journal" +msgstr "L'utilisateur responsable pour ce journal" #. module: account #: field:account.journal,default_debit_account_id:0 @@ -928,7 +933,7 @@ msgstr "Compte de débit par défaut" #: model:ir.actions.act_window,name:account.action_bank_statement_tree #: model:ir.ui.menu,name:account.menu_bank_statement_tree msgid "Entries by Statements" -msgstr "Ecritures par extrait" +msgstr "Ecritures par état" #. module: account #: model:process.transition,name:account.process_transition_analyticinvoice0 @@ -945,7 +950,7 @@ msgstr "Facturation analytique" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1042,7 +1047,7 @@ msgstr "Imprimer les journaux analytiques" #. module: account #: rml:account.tax.code.entries:0 msgid "Voucher Nb" -msgstr "Chèque N°" +msgstr "Numéro de pièce" #. module: account #: help:account.payment.term.line,sequence:0 @@ -1141,7 +1146,7 @@ msgstr "Ouvrir le plan de comptes" #. module: account #: wizard_view:account.fiscalyear.close.state,init:0 msgid "Are you sure you want to close the fiscal year ?" -msgstr "Êtes vous sûr de vouloir cloturer cette année fiscale ?" +msgstr "Etes vous sûr de clôture l'exercice fiscal ?" #. module: account #: selection:account.move,type:0 @@ -1186,7 +1191,7 @@ msgstr "Mapping du Compte Modèle de la Position Fiscale" #. module: account #: field:account.analytic.account,parent_id:0 msgid "Parent Analytic Account" -msgstr "Compte analytique parent" +msgstr "Compte Analytique Parent" #. module: account #: wizard_button:account.move.line.reconcile,init_partial,addendum:0 @@ -1244,7 +1249,7 @@ msgstr "Transaction non-lettrée" #: field:account.fiscal.position,tax_ids:0 #: field:account.fiscal.position.template,tax_ids:0 msgid "Tax Mapping" -msgstr "Correspondance des taxes" +msgstr "Mapping des taxes" #. module: account #: view:account.config.wizard:0 @@ -1365,7 +1370,7 @@ msgstr "Types de compte" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -1408,7 +1413,7 @@ msgstr "Ligne d'extrait lettré" #: view:account.tax:0 #: view:account.tax.template:0 msgid "Keep empty to use the income account" -msgstr "Laisser vide pour utiliser le compte de revenus" +msgstr "Laisser vide pour utiliser le compte de revenu" #. module: account #: view:account.bank.statement.reconcile:0 @@ -1438,7 +1443,7 @@ msgstr "Clôturer l'état" #. module: account #: model:ir.model,name:account.model_wizard_company_setup msgid "wizard.company.setup" -msgstr "wizard.company.setup" +msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form @@ -1530,13 +1535,13 @@ msgstr "TVA" #. module: account #: rml:account.analytic.account.journal:0 msgid "Account n°" -msgstr "Compte N°" +msgstr "Compte n°" #. module: account #: view:account.tax:0 #: view:account.tax.template:0 msgid "Keep empty to use the expense account" -msgstr "Laisser vide pour utiliser le compte de dépenses" +msgstr "Laisser vide pour utiliser le compte de dépense" #. module: account #: wizard_field:account.automatic.reconcile,init,account_ids:0 @@ -1589,7 +1594,7 @@ msgstr "Clôturer la période" #. module: account #: rml:account.overdue:0 msgid "Due" -msgstr "Échance" +msgstr "Due" #. module: account #: rml:account.journal.period.print:0 @@ -1669,7 +1674,7 @@ msgstr "Ré-Ouvrir" #. module: account #: wizard_view:account.fiscalyear.close,init:0 msgid "Are you sure you want to create entries?" -msgstr "Êtes vous sûr de vouloir créer ces écritures?" +msgstr "Etes vous sûr de vouloir saisir des écritures ?" #. module: account #: field:account.tax,include_base_amount:0 @@ -1701,7 +1706,7 @@ msgstr "Grand livre par période" #: model:ir.actions.act_window,name:account.action_bank_statement_tree2 #: model:ir.ui.menu,name:account.menu_bank_statement_tree2 msgid "New Statement" -msgstr "Nouvel extrait" +msgstr "Nouvelle déclaration" #. module: account #: wizard_field:account.analytic.account.chart,init,from_date:0 @@ -1771,7 +1776,7 @@ msgstr "Comptable" #. module: account #: rml:account.analytic.account.journal:0 msgid "to :" -msgstr "à :" +msgstr "" #. module: account #: wizard_field:account.move.line.reconcile,init_full,debit:0 @@ -1782,7 +1787,7 @@ msgstr "Montant Débit" #. module: account #: selection:account.subscription,period_type:0 msgid "year" -msgstr "année" +msgstr "Année" #. module: account #: wizard_button:account.account.balance.report,checktype,report:0 @@ -1830,7 +1835,7 @@ msgstr "Comptes autorisés" #. module: account #: view:account.invoice:0 msgid "Untaxed amount" -msgstr "Montant hors-taxes" +msgstr "Montant hors-taxe" #. module: account #: field:account.tax,account_collected_id:0 @@ -1953,12 +1958,12 @@ msgstr "Avoir client" #. module: account #: rml:account.vat.declaration:0 msgid "Tax Amount" -msgstr "Montant de la taxe" +msgstr "Montant de la Taxe" #. module: account #: rml:account.analytic.account.quantity_cost_ledger:0 msgid "J.C./Move name" -msgstr "J.C./Nom du mouvement" +msgstr "J.C. / nom du Mouvement" #. module: account #: field:account.journal.period,name:0 @@ -1974,7 +1979,7 @@ msgstr "Case de la déclaration fiscale" #. module: account #: help:account.journal,entry_posted:0 msgid "Check this box if you don't want new account moves to pass through the 'draft' state and instead goes directly to the 'posted state' without any manual validation." -msgstr "Cochez cette case si vous ne voulez pas que les nouvelles écritures comptables ne passent par l'état 'brouillon', et qu'elles passent directement à l'état 'validé' sans validation manuelle." +msgstr "Cochez cette case si vous ne voulez pas que les nouvelles écritures comptables passent par l'état 'Brouillon', mais qu'elles passent directement à l'état 'Validé' sans validation manuelle." #. module: account #: field:account.bank.statement.line,partner_id:0 @@ -1996,7 +2001,7 @@ msgstr "Numéro unique de la facture, calculé automatiquement lorsque la factur #. module: account #: rml:account.invoice:0 msgid "Draft Invoice" -msgstr "Facture en brouillon" +msgstr "Facture Brouillon" #. module: account #: model:account.account.type,name:account.account_type_expense @@ -2011,7 +2016,7 @@ msgstr "Séquence de facture" #. module: account #: wizard_view:account.automatic.reconcile,init:0 msgid "Options" -msgstr "Options" +msgstr "Réglages" #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 @@ -2021,7 +2026,7 @@ msgstr "Processus de la facture client" #. module: account #: rml:account.invoice:0 msgid "Fiscal Position Remark :" -msgstr "Remarque sur position fiscale :" +msgstr "" #. module: account #: wizard_field:account.fiscalyear.close,init,period_id:0 @@ -2033,12 +2038,12 @@ msgstr "Période des écritures d'ouvertures" #: model:ir.actions.wizard,name:account.wizard_validate_account_moves_line #: model:ir.ui.menu,name:account.menu_validate_account_moves msgid "Validate Account Moves" -msgstr "Valider les écritures" +msgstr "Valider les mouvements de compte" #. module: account #: selection:account.subscription,period_type:0 msgid "days" -msgstr "jours" +msgstr "Jours" #. module: account #: selection:account.aged.trial.balance,init,direction_selection:0 @@ -2089,7 +2094,7 @@ msgstr "Calcul" #. module: account #: view:account.analytic.line:0 msgid "Analytic Entry" -msgstr "Écriture analytique" +msgstr "Ecriture analytique" #. module: account #: view:res.company:0 @@ -2163,7 +2168,7 @@ msgstr "Sauf erreur de notre part, il semble que les factures suivantes demeuren #. module: account #: rml:account.invoice:0 msgid "VAT :" -msgstr "TVA :" +msgstr "TVA" #. module: account #: wizard_field:account.general.ledger.report,account_selection,Account_list:0 @@ -2274,7 +2279,7 @@ msgstr "Type de Taxe" #. module: account #: model:process.transition,name:account.process_transition_statemententries0 msgid "Statement Entries" -msgstr "Relevé d'écritures" +msgstr "Entrées du relevé" #. module: account #: field:account.analytic.line,user_id:0 @@ -2322,12 +2327,12 @@ msgstr "et journaux" #. module: account #: view:account.tax:0 msgid "Account Tax" -msgstr "Compte Taxe" +msgstr "Taxe" #. module: account #: field:account.analytic.line,move_id:0 msgid "Move Line" -msgstr "Ligne d'écriture" +msgstr "Ligne de mouvement" #. module: account #: field:account.bank.accounts.wizard,acc_no:0 @@ -2342,7 +2347,7 @@ msgstr "Cochez si le calcul de la taxe est basé sur le calcul des taxes filles #. module: account #: rml:account.central.journal:0 msgid "Journal Code" -msgstr "Code journal" +msgstr "Code du journal" #. module: account #: help:account.tax,applicable_type:0 @@ -2375,14 +2380,14 @@ msgid "Applicable Code (if type=code)" msgstr "Code applicable (si type=code)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "Ouvrir journal" #. module: account #: rml:account.analytic.account.journal:0 msgid "KI" -msgstr "KI" +msgstr "" #. module: account #: model:ir.actions.wizard,name:account.action_account_analytic_line @@ -2401,14 +2406,14 @@ msgstr "Liste des taxes installées via l'assistant" #: rml:account.analytic.account.cost_ledger:0 #: rml:account.analytic.account.quantity_cost_ledger:0 msgid "Period from" -msgstr "Début période" +msgstr "Période du" #. module: account #: model:ir.model,name:account.model_account_bank_statement #: model:process.node,name:account.process_node_bankstatement0 #: model:process.node,name:account.process_node_supplierbankstatement0 msgid "Bank Statement" -msgstr "Extrait bancaire" +msgstr "Relevé bancaire" #. module: account #: wizard_view:account.invoice.pay,addendum:0 @@ -2465,7 +2470,7 @@ msgstr "Depuis un compte analytique, créer une facture" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -2529,7 +2534,7 @@ msgstr "Compte de fournisseur" #. module: account #: wizard_view:populate_statement_from_inv,init:0 msgid "Import Invoices in Statement" -msgstr "Importer les factures depuis les relevés" +msgstr "Importer les factures dans la Déclaration" #. module: account #: view:account.invoice:0 @@ -2549,7 +2554,7 @@ msgstr "Ordre de Paiement" #. module: account #: help:account.account.template,reconcile:0 msgid "Check this option if you want the user to reconcile entries in this account." -msgstr "Cocher cette option si vous souhaitez que l'utilisateur réconcilie les écritures dans ce compte." +msgstr "Cochez cette case si vous voulez que l'utilisateur réconcilie les entrées dans ce compte." #. module: account #: rml:account.analytic.account.journal:0 @@ -2572,7 +2577,7 @@ msgstr "Capitaux propres" #. module: account #: field:wizard.company.setup,overdue_msg:0 msgid "Overdue Payment Message" -msgstr "Message pour paiements échus" +msgstr "" #. module: account #: model:ir.model,name:account.model_account_tax_code_template @@ -2643,7 +2648,7 @@ msgstr "Voir les lignes de compte analytique" #. module: account #: wizard_view:account.move.validate,init:0 msgid "Select Period and Journal for Validation" -msgstr "Sélectionner la période et le journal pour validation" +msgstr "Sélectionnez la période et le journal pour la validation" #. module: account #: field:account.invoice,number:0 @@ -2653,7 +2658,7 @@ msgstr "Numéro de facture" #. module: account #: field:account.period,date_stop:0 msgid "End of Period" -msgstr "Fin de la période" +msgstr "Fin de Période" #. module: account #: wizard_button:populate_statement_from_inv,go,finish:0 @@ -2745,7 +2750,7 @@ msgstr "Centralisation crédit" #. module: account #: rml:account.overdue:0 msgid "Customer Ref:" -msgstr "Réf client:" +msgstr "Référence Client:" #. module: account #: xsl:account.transfer:0 @@ -2785,7 +2790,7 @@ msgstr "Rapprocher" #. module: account #: rml:account.overdue:0 msgid "Best regards." -msgstr "Sincères salutations." +msgstr "Nous vous prions d'agréer, Madame, Monsieur, l'expression de nos sentiments distingués." #. module: account #: model:ir.model,name:account.model_report_hr_timesheet_invoice_journal @@ -2950,12 +2955,12 @@ msgstr "Situation" #: rml:account.invoice:0 #: xsl:account.transfer:0 msgid "Document" -msgstr "Document" +msgstr "Ref. document" #. module: account #: help:account.move.line,move_id:0 msgid "The move of this entry line." -msgstr "Le mouvement de cette ligne d'écriture." +msgstr "Le mouvement de cette ligne d'entrée." #. module: account #: field:account.invoice.line,uos_id:0 @@ -2965,7 +2970,7 @@ msgstr "Unité de mesure" #. module: account #: field:account.chart.template,property_account_receivable:0 msgid "Receivable Account" -msgstr "Compte client" +msgstr "Compte clients" #. module: account #: help:account.journal,group_invoice_lines:0 @@ -3117,7 +3122,7 @@ msgstr "Notes" #. module: account #: help:account.invoice,reconciled:0 msgid "The account moves of the invoice have been reconciled with account moves of the payment(s)." -msgstr "Les écritures générés par cette facture ont fait l'objet d'un lettrage." +msgstr "Les mouvements générés par cette facture ont fait l'objet d'un lettrage." #. module: account #: rml:account.invoice:0 @@ -3195,7 +3200,7 @@ msgstr "(Une facture ne doit pas être lettrée si vous voulez l'ouvrir)" #. module: account #: view:account.invoice:0 msgid "Additionnal Information" -msgstr "Commentaires additionnels" +msgstr "Commentaire" #. module: account #: field:account.tax,name:0 @@ -3255,12 +3260,12 @@ msgstr "Total débit" #. module: account #: selection:account.analytic.account,state:0 msgid "Pending" -msgstr "En attente" +msgstr "En suspend" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Bank Information" -msgstr "Information bancaire" +msgstr "Information sur banque(s)" #. module: account #: rml:account.invoice:0 @@ -3435,7 +3440,7 @@ msgstr "Balance :" #: selection:account.account.balance.report,checktype,display_account:0 #: selection:account.general.ledger.report,checktype,display_account:0 msgid "With balance is not equal to 0" -msgstr "Avec une balance non égale à 0" +msgstr "Avec la balance qui n'est pas égal à 0" #. module: account #: selection:account.automatic.reconcile,init,power:0 @@ -3557,7 +3562,7 @@ msgstr "Modèle de position fiscale" #. module: account #: view:account.bank.statement:0 msgid "Entry encoding" -msgstr "Saisie d'écritures" +msgstr "Saisie d'écriture" #. module: account #: wizard_view:account.invoice.refund,init:0 @@ -3581,7 +3586,7 @@ msgid "3 Months" msgstr "3 mois" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "Ecritures standards" @@ -3593,7 +3598,7 @@ msgstr "Cochez cette case si vous souhaitez imprimer toutes les écritures avec #. module: account #: model:ir.model,name:account.model_account_payment_term_line msgid "Payment Term Line" -msgstr "" +msgstr "Détail des conditions de règlement" #. module: account #: selection:account.config.wizard,period:0 @@ -3633,7 +3638,7 @@ msgstr "Assistant de configuration de compte " #: field:account.fiscalyear,date_start:0 #: field:account.subscription,date_start:0 msgid "Start Date" -msgstr "Date de début" +msgstr "Date de Début" #. module: account #: wizard_view:account.general.ledger.report,account_selection:0 @@ -3665,7 +3670,7 @@ msgstr "Date de facture" #. module: account #: selection:account.account.type,close_method:0 msgid "Unreconciled" -msgstr "Non lettré" +msgstr "Non-lettré" #. module: account #: field:account.account,note:0 @@ -3697,7 +3702,7 @@ msgstr "Module Financier et Comptable couvrant:\n" #. module: account #: field:account.journal,sequence_id:0 msgid "Entry Sequence" -msgstr "Séquence des écritures" +msgstr "Séquence d'écriture" #. module: account #: selection:account.account,type:0 @@ -3724,7 +3729,7 @@ msgstr "Si le compte n'est pas spécifié, le lettrage pourrait être accepté s #: model:ir.actions.act_window,name:account.action_wizard_company_setup_form #: view:wizard.company.setup:0 msgid "Overdue Payment Report Message" -msgstr "Message pour le rapport des échéances" +msgstr "" #. module: account #: selection:account.tax,tax_group:0 @@ -3782,7 +3787,7 @@ msgstr "Par période" #. module: account #: help:account.invoice,date_invoice:0 msgid "Keep empty to use the current date" -msgstr "Laisser vide pour utiliser la date courante" +msgstr "Laissez vide pour utiliser la date courante" #. module: account #: rml:account.overdue:0 @@ -3792,7 +3797,7 @@ msgstr "," #. module: account #: field:account.analytic.account,quantity_max:0 msgid "Maximum Quantity" -msgstr "Quantité maximale" +msgstr "Quantité Maximale" #. module: account #: field:account.period,name:0 @@ -3848,7 +3853,7 @@ msgstr "Sélectionner les écritures" #. module: account #: selection:account.chart,init,target_move:0 msgid "All Posted Entries" -msgstr "Toutes les écritures validées" +msgstr "Toutes les écritures passées" #. module: account #: wizard_field:account.vat.declaration,init,based_on:0 @@ -3911,7 +3916,7 @@ msgstr "Codes fils" #. module: account #: field:account.invoice,move_name:0 msgid "Account Move" -msgstr "Écriture comptable" +msgstr "Mouvement de compte" #. module: account #: view:account.bank.statement:0 @@ -3989,7 +3994,7 @@ msgstr "Crédit trans." #. module: account #: field:wizard.multi.charts.accounts,seq_journal:0 msgid "Separated Journal Sequences" -msgstr "Numérotation de Journaux Séparées" +msgstr "Séquences de journaux séparées" #. module: account #: help:account.bank.statement.reconcile,total_second_currency:0 @@ -4170,7 +4175,7 @@ msgstr "Facture annulée" #. module: account #: view:account.subscription:0 msgid "Remove Lines" -msgstr "Supprimer des lignes" +msgstr "Supprimer lignes" #. module: account #: wizard_field:account.general.ledger.report,checktype,soldeinit:0 @@ -4231,7 +4236,7 @@ msgstr "Avoirs" #: field:account.config.wizard,date2:0 #: field:account.fiscalyear,date_stop:0 msgid "End Date" -msgstr "Date de fin" +msgstr "Date de Fin" #. module: account #: model:ir.actions.wizard,name:account.wizard_open_closed_fiscalyear @@ -4258,7 +4263,7 @@ msgstr "Lignes" #. module: account #: rml:account.overdue:0 msgid "Dear Sir/Madam," -msgstr "Chèr Monsieur/Madame," +msgstr "Chère Madame, Cher Monsieur," #. module: account #: help:account.tax,sequence:0 @@ -4279,7 +4284,7 @@ msgstr "Fichier de relevé" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequences" -msgstr "Séquence des années fiscales" +msgstr "Séquences des exercices" #. module: account #: view:account.model.line:0 @@ -4299,7 +4304,7 @@ msgstr "Ceci est un modèle pour des entrées comptable récurrentes" #. module: account #: wizard_view:account.wizard_paid_open,init:0 msgid "Open Invoice" -msgstr "Ouvrir la facture" +msgstr "Facture ouverte" #. module: account #: model:process.node,note:account.process_node_draftstatement0 @@ -4449,7 +4454,7 @@ msgstr "Déclaration" #: model:ir.actions.act_window,name:account.action_move_line_form_encode_by_move #: model:ir.ui.menu,name:account.menu_encode_entries_by_move msgid "Entries Encoding by Move" -msgstr "Entrées saisies par écritures" +msgstr "Écritures par mouvement" #. module: account #: wizard_view:account.analytic.account.chart,init:0 @@ -4476,7 +4481,7 @@ msgstr "Entrées analytiques par journal" #: model:process.transition,note:account.process_transition_suppliervalidentries0 #: model:process.transition,note:account.process_transition_validentries0 msgid "Valid entries from invoice" -msgstr "Valider les écritures depuis la facture" +msgstr "Entrées valides de la Facture" #. module: account #: field:account.account,company_id:0 @@ -4575,7 +4580,7 @@ msgstr "Montant du crédit" #. module: account #: view:account.fiscalyear:0 msgid "Create Monthly Periods" -msgstr "Créer les périodes mensuelles" +msgstr "Créer des périodes mensuelles" #. module: account #: wizard_button:account.aged.trial.balance,init,print:0 @@ -4674,7 +4679,7 @@ msgstr "Créditeurs" #: model:ir.actions.wizard,name:account.wizard_balance_report #: model:ir.ui.menu,name:account.menu_account_balance_report msgid "Account Balance" -msgstr "Balance des comptes" +msgstr "Solde du compte" #. module: account #: model:ir.actions.report.xml,name:account.account_analytic_account_analytic_check @@ -4706,7 +4711,7 @@ msgstr "Journal analytique" #: field:account.fiscal.position,account_ids:0 #: field:account.fiscal.position.template,account_ids:0 msgid "Account Mapping" -msgstr "Correspondance des comptes" +msgstr "Mapping de Compte" #. module: account #: view:product.product:0 @@ -4722,7 +4727,7 @@ msgstr "Lettrage de compte" #: view:account.bank.statement:0 #: selection:account.bank.statement,state:0 msgid "Confirm" -msgstr "Confirmer" +msgstr "Confirmé" #. module: account #: wizard_view:account.account.balance.report,account_selection:0 @@ -4827,7 +4832,7 @@ msgstr "Nom de la taxe" #. module: account #: help:account.invoice,move_id:0 msgid "Link to the automatically generated account moves." -msgstr "Lien vers les écritures de comptes générés automatiquement." +msgstr "Lien vers les mouvements de comptes générés automatiquement." #. module: account #: wizard_field:account.automatic.reconcile,reconcile,reconciled:0 @@ -4896,7 +4901,7 @@ msgstr "Modèle d'imputation des charges" #: help:account.account,currency_id:0 #: help:account.account.template,currency_id:0 msgid "Force all moves for this account to have this secondary currency." -msgstr "Force tous les écritures pour ce compte à disposer de cette devise secondaire." +msgstr "Force tous les mouvements pour ce compte à disposer de cette devise secondaire." #. module: account #: wizard_button:populate_statement_from_inv,go,end:0 @@ -4943,7 +4948,7 @@ msgstr "Nouvel avoir client" #. module: account #: help:wizard.multi.charts.accounts,seq_journal:0 msgid "Check this box if you want to use a different sequence for each created journal. Otherwise, all will use the same sequence." -msgstr "Cocher cette case si vous voulez utiliser des numérotations différentes pour chaque journal créé. Sans cela, ils utiliseront tous la même numérotation." +msgstr "Cocher cette case si vous voulez utiliser des séquences différentes pour la numérotation de chaque journal créé. Sans cela, tous utiliseront la même numérotation." #. module: account #: model:ir.actions.wizard,name:account.wizard_populate_statement_from_inv @@ -4966,7 +4971,7 @@ msgstr "Assure la numérotation des factures par exercice" #: selection:account.account.balance.report,checktype,display_account:0 #: selection:account.general.ledger.report,checktype,display_account:0 msgid "With movements" -msgstr "Avec écritures" +msgstr "avec mouvements" #. module: account #: field:account.tax,domain:0 @@ -4982,7 +4987,7 @@ msgstr "Données du compte" #. module: account #: view:account.tax.code.template:0 msgid "Account Tax Code Template" -msgstr "Modèle de plan de taxes" +msgstr "Modèle de Code de Taxe Comptable" #. module: account #: view:account.subscription:0 @@ -5011,7 +5016,7 @@ msgstr "Factures" #: selection:account.partner.balance.report,init,result_selection:0 #: selection:account.third_party_ledger.report,init,result_selection:0 msgid "Payable Accounts" -msgstr "Comptes à payer" +msgstr "Comptes payables" #. module: account #: view:account.invoice.line:0 @@ -5032,7 +5037,7 @@ msgstr "Paiement total" #. module: account #: selection:account.move,type:0 msgid "Journal Purchase" -msgstr "Journal des achats" +msgstr "Journal d'Achat" #. module: account #: selection:account.move,type:0 @@ -5043,7 +5048,7 @@ msgstr "Reçu de caisse" #: field:account.fiscal.position.tax,tax_dest_id:0 #: field:account.fiscal.position.tax.template,tax_dest_id:0 msgid "Replacement Tax" -msgstr "Taxe de substitution" +msgstr "Taxe de Remplacement" #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 @@ -5103,7 +5108,7 @@ msgstr "La base de taxe de la déclaration fiscale." #: wizard_view:account.partner.balance.report,init:0 #: wizard_view:account.third_party_ledger.report,init:0 msgid "Date Filter" -msgstr "Filtrer sur les dates" +msgstr "Filtre de Date" #. module: account #: wizard_view:populate_statement_from_inv,init:0 @@ -5148,7 +5153,7 @@ msgstr "Êtes-vous sûr ?" #: rml:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "PROFORMA" +msgstr "PRO-FORMA" #. module: account #: field:account.move.reconcile,line_partial_ids:0 @@ -5163,12 +5168,12 @@ msgstr "Le relevé banquaire utilisé pour la réconciliation banquaire" #. module: account #: view:account.fiscalyear:0 msgid "Fiscalyear" -msgstr "Année fiscale" +msgstr "Exercice" #. module: account #: wizard_button:account.analytic.line,init,open:0 msgid "Open Entries" -msgstr "Ecritures ouvertes" +msgstr "Entrées Ouvertes" #. module: account #: selection:account.analytic.account,type:0 @@ -5179,7 +5184,7 @@ msgstr "Normal" #. module: account #: model:process.process,name:account.process_process_supplierinvoiceprocess0 msgid "Supplier Invoice Process" -msgstr "Processus de facturation fournisseur" +msgstr "Processus des Factures Fournisseurs" #. module: account #: rml:account.account.balance:0 @@ -5210,7 +5215,7 @@ msgstr "Conditions de Paiement" #. module: account #: selection:account.aged.trial.balance,init,result_selection:0 msgid "Receivable and Payable" -msgstr "Comptes créditeurs et débiteurs" +msgstr "Recevable et Payable" #. module: account #: rml:account.account.balance:0 @@ -5221,12 +5226,12 @@ msgstr ":" #. module: account #: field:account.bank.statement.line,reconcile_amount:0 msgid "Amount reconciled" -msgstr "Montant lettré" +msgstr "Montant réconcilié" #. module: account #: selection:account.account,currency_mode:0 msgid "At Date" -msgstr "À date" +msgstr "À la Date" #. module: account #: help:account.move.line,tax_amount:0 @@ -5248,7 +5253,7 @@ msgstr "Le compte de revenu ou de dépense associé au produit sélectionné." #. module: account #: field:account.tax,type_tax_use:0 msgid "Tax Application" -msgstr "Application de la taxe" +msgstr "Application de la Taxe" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form @@ -5265,7 +5270,7 @@ msgstr "Facture client Pro-Forma" #. module: account #: field:account.subscription,period_total:0 msgid "Number of Periods" -msgstr "Nombre de période" +msgstr "Nombre de Périodes" #. module: account #: wizard_field:account.analytic.account.analytic.check.report,init,date2:0 @@ -5308,12 +5313,12 @@ msgstr "Journal Général" #: rml:account.third_party_ledger:0 #: rml:account.third_party_ledger_other:0 msgid "Balance" -msgstr "Balance" +msgstr "Solde de la balance" #. module: account #: rml:account.invoice:0 msgid "Refund" -msgstr "Avoir" +msgstr "Note de crédit" #. module: account #: model:ir.model,name:account.model_account_invoice_tax @@ -5363,7 +5368,7 @@ msgstr "Ce champ permet de choisir les journaux comptables que vous désirez pou #. module: account #: constraint:account.fiscalyear:0 msgid "Error ! The duration of the Fiscal Year is invalid. " -msgstr "Erreur ! La durée de l'année fiscale est incorrecte." +msgstr "Erreur ! La durée de l'Année Fiscale n'est pas valide. " #. module: account #: selection:account.analytic.account,state:0 @@ -5373,12 +5378,12 @@ msgstr "Clôturé" #. module: account #: field:account.bank.statement.line,move_ids:0 msgid "Moves" -msgstr "Écritures" +msgstr "Mouvements" #. module: account #: selection:account.invoice,state:0 msgid "Pro-forma" -msgstr "Proforma" +msgstr "Pro-forma" #. module: account #: model:ir.actions.act_window,name:account.action_account_form @@ -5390,7 +5395,7 @@ msgstr "Liste des Comptes" #: view:product.product:0 #: view:product.template:0 msgid "Sales Properties" -msgstr "Propriétés de ventes" +msgstr "Propriétés des Ventes" #. module: account #: rml:account.general.journal:0 @@ -5406,7 +5411,7 @@ msgstr "Grand Livre (quantités uniquement)" #. module: account #: wizard_view:account.move.validate,init:0 msgid "Validate Account Entries" -msgstr "Valider les écritures comptables" +msgstr "Valider les Entrées du Compte" #. module: account #: selection:account.print.journal.report,init,sort_selection:0 @@ -5427,7 +5432,7 @@ msgstr "au" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form msgid "Entries of Open Analytic Journals" -msgstr "Écritures dans les journaux analytiques ouverts" +msgstr "Entrées des Journaux Analytiques Ouverts" #. module: account #: view:account.invoice.tax:0 @@ -5442,7 +5447,7 @@ msgstr "Date courante" #. module: account #: selection:account.move,type:0 msgid "Journal Sale" -msgstr "Journal des ventes" +msgstr "Journal de Vente" #. module: account #: wizard_field:account.fiscalyear.close,init,fy_id:0 @@ -5501,7 +5506,7 @@ msgstr "Ce compte sera utilisé à la place de celui par défaut pour valoriser #. module: account #: field:account.tax,child_ids:0 msgid "Child Tax Accounts" -msgstr "Compte de taxe fils" +msgstr "Comptes de Taxes Fils" #. module: account #: field:account.account,parent_right:0 @@ -5553,7 +5558,7 @@ msgstr "Ouverture/clôture d'exercice" #. module: account #: rml:account.analytic.account.balance:0 msgid "Analytic Balance -" -msgstr "Balance analytique -" +msgstr "Balance Analytique -" #. module: account #: wizard_field:account_use_models,init_form,model:0 @@ -5595,7 +5600,7 @@ msgstr "Entrées triées par" #. module: account #: rml:account.journal.period.print:0 msgid "Print Journal -" -msgstr "Imprimer le journal -" +msgstr "Journal d'Impression -" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -5656,13 +5661,13 @@ msgstr "Laisser vide pour toutes les années fiscales ouvertes" #: rml:account.invoice:0 #: selection:account.invoice,type:0 msgid "Supplier Refund" -msgstr "Avoir fournisseur" +msgstr "Note de Crédit Fournisseur" #. module: account #: model:process.transition,note:account.process_transition_entriesreconcile0 #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Reconcile Entries." -msgstr "Lettrer les écritures." +msgstr "Réconcilier les Entrées." #. module: account #: field:account.subscription.line,move_id:0 @@ -5675,7 +5680,7 @@ msgstr "Entrée" #: model:process.transition,note:account.process_transition_reconcilepaid0 #: model:process.transition,note:account.process_transition_supplierreconcilepaid0 msgid "Paid invoice when reconciled." -msgstr "Facture payée lors du lettrage." +msgstr "Facture payée lorsque réconciliée." #. module: account #: field:account.tax,python_compute_inv:0 @@ -5691,7 +5696,7 @@ msgstr "Gestion Comptable et Financière" #. module: account #: view:account.fiscal.position.template:0 msgid "Accounts Mapping" -msgstr "Correspondance des comptes" +msgstr "Correspondance de comptes" #. module: account #: help:product.category,property_account_expense_categ:0 @@ -5713,7 +5718,7 @@ msgstr "Couramment 1 ou -1." #. module: account #: view:res.partner:0 msgid "Bank Details" -msgstr "Détails bancaire" +msgstr "Détails de banque" #. module: account #: field:account.chart.template,property_account_expense:0 @@ -5728,7 +5733,7 @@ msgstr "Débit général" #. module: account #: field:account.analytic.account,code:0 msgid "Account Code" -msgstr "Code du compte" +msgstr "Code du Compte" #. module: account #: help:account.config.wizard,name:0 @@ -5755,12 +5760,12 @@ msgstr "Positions fiscales" #. module: account #: model:process.process,name:account.process_process_statementprocess0 msgid "Statement Process" -msgstr "Processus de traitement des extraits" +msgstr "Processus des Déclaration" #. module: account #: model:ir.model,name:account.model_account_bank_statement_reconcile msgid "Statement reconcile" -msgstr "Lettrage d'extraits" +msgstr "Réconciliation d'extraits" #. module: account #: wizard_field:account.fiscalyear.close,init,sure:0 @@ -5795,7 +5800,7 @@ msgstr "Oui" #. module: account #: help:account.account,reconcile:0 msgid "Check this if the user is allowed to reconcile entries in this account." -msgstr "Cocher ceci si l'utilisateur est autorisé à lettré les écritures pour ce compte." +msgstr "Cochez cette case si l'utilisateur peut réconcilier les entrées dans ce compte." #. module: account #: wizard_button:account.subscription.generate,init,generate:0 diff --git a/addons/account/i18n/hr_HR.po b/addons/account/i18n/hr_HR.po index ea67629b2bb..c758c4cb83a 100644 --- a/addons/account/i18n/hr_HR.po +++ b/addons/account/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/hu_HU.po b/addons/account/i18n/hu_HU.po index c8112f4fa39..e7168d40396 100644 --- a/addons/account/i18n/hu_HU.po +++ b/addons/account/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/id_ID.po b/addons/account/i18n/id_ID.po index 608fc42eaf4..6bf373d80a3 100644 --- a/addons/account/i18n/id_ID.po +++ b/addons/account/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "Potongan (%)" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "Tipe Akun" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,9 +2379,9 @@ msgid "Applicable Code (if type=code)" msgstr "Kode Terapan (if type=code)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Buka Jurnal" #. module: account #: rml:account.analytic.account.journal:0 @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/it_IT.po b/addons/account/i18n/it_IT.po index 1684f5d8ecd..575ba1ae584 100644 --- a/addons/account/i18n/it_IT.po +++ b/addons/account/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "Sconto (%)" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "fattura analitica" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "Tipi di conto" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,9 +2379,9 @@ msgid "Applicable Code (if type=code)" msgstr "Codice applicabile (se tipo=codice)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Apri Libro Giornale" #. module: account #: rml:account.analytic.account.journal:0 @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,9 +3585,9 @@ msgid "3 Months" msgstr "Trimestri" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Registrazioni standard" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/kab_KAB.po b/addons/account/i18n/kab_KAB.po index 4ad513e4734..74b148ba562 100644 --- a/addons/account/i18n/kab_KAB.po +++ b/addons/account/i18n/kab_KAB.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:07+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/ko_KO.po b/addons/account/i18n/ko_KO.po index ea8f702e1a2..9cbcdd68fe1 100644 --- a/addons/account/i18n/ko_KO.po +++ b/addons/account/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:07+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/lt_LT.po b/addons/account/i18n/lt_LT.po index 97cd2a09a8d..8de172101dd 100644 --- a/addons/account/i18n/lt_LT.po +++ b/addons/account/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po index f028c08ab4a..ec830642741 100644 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/nl_NL.po b/addons/account/i18n/nl_NL.po index 1ec4247129e..44e4d0b7f08 100644 --- a/addons/account/i18n/nl_NL.po +++ b/addons/account/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "Korting (%)" msgid "Write-Off amount" msgstr "Af te boeken bedrag" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "Leeg laten wanneer het boekjaar door meerdere bedrijven wordt gebruikt." + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "Kostenplaats factuur" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "Categoriën grootboekrekeningen" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,9 +2379,9 @@ msgid "Applicable Code (if type=code)" msgstr "Van Toepassing zijnde Code (IF type=code)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Open dagboek" #. module: account #: rml:account.analytic.account.journal:0 @@ -2464,7 +2469,7 @@ msgstr "Van analytische rekeningen, Maak factuur." #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,9 +3585,9 @@ msgid "3 Months" msgstr "3 maanden" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Standaard boekingen" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/pl_PL.po b/addons/account/i18n/pl_PL.po index 61a49c14ef0..fade93594b2 100644 --- a/addons/account/i18n/pl_PL.po +++ b/addons/account/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index 1a54f692056..8014edb433c 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "Desconto (%)" msgid "Write-Off amount" msgstr "Quantidade da amortização" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "Fatura analítica" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "Tipos de Conta" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "De contas analíticas, criar fatura." #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,9 +3585,9 @@ msgid "3 Months" msgstr "3 meses" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Lançamentos padrões" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/pt_PT.po b/addons/account/i18n/pt_PT.po index bc2b04b5096..389942ee8c8 100644 --- a/addons/account/i18n/pt_PT.po +++ b/addons/account/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "Desconto (%)" msgid "Write-Off amount" msgstr "Fechar montante" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "Factura analítica" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "Tipos de conta" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,9 +2379,9 @@ msgid "Applicable Code (if type=code)" msgstr "Código Aplicavel (se tipo=código)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Diário aberto" #. module: account #: rml:account.analytic.account.journal:0 @@ -2464,7 +2469,7 @@ msgstr "De contas analíticas, criar factura." #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,9 +3585,9 @@ msgid "3 Months" msgstr "3 Meses" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Entradas padrão" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/ro_RO.po b/addons/account/i18n/ro_RO.po index 59e1ac2a30d..b9612724899 100644 --- a/addons/account/i18n/ro_RO.po +++ b/addons/account/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/ru_RU.po b/addons/account/i18n/ru_RU.po index f865f76e213..025f0b93586 100644 --- a/addons/account/i18n/ru_RU.po +++ b/addons/account/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "Скидка (%)" msgid "Write-Off amount" msgstr "Количество к списанию" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1114,7 +1119,7 @@ msgstr "" #. module: account #: help:account.model.line,amount_currency:0 msgid "The amount expressed in an optional other currency." -msgstr "" +msgstr "Сумма выраженная в дополнительной другой валюте." #. module: account #: view:account.fiscal.position.template:0 @@ -1365,7 +1370,7 @@ msgstr "Типы счетов" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,9 +2379,9 @@ msgid "Applicable Code (if type=code)" msgstr "Применимый код (если тип=код)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Открыть журнал" #. module: account #: rml:account.analytic.account.journal:0 @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,9 +3585,9 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Стандартные проводки" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/si_SI.po b/addons/account/i18n/si_SI.po index 3c8d3d9290f..873a7cb454f 100644 --- a/addons/account/i18n/si_SI.po +++ b/addons/account/i18n/si_SI.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:07+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/sl_SL.po b/addons/account/i18n/sl_SL.po index 451d2be3503..a6054ab7582 100644 --- a/addons/account/i18n/sl_SL.po +++ b/addons/account/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "Popust (%)" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "Vrste kontov" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,9 +2379,9 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Odpri dnevnik" #. module: account #: rml:account.analytic.account.journal:0 @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,9 +3585,9 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Običane vknjižbe" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/sv_SV.po b/addons/account/i18n/sq_AL.po similarity index 99% rename from addons/account/i18n/sv_SV.po rename to addons/account/i18n/sq_AL.po index ce1001ea340..c13eb9469f1 100644 --- a/addons/account/i18n/sv_SV.po +++ b/addons/account/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.account_type_asset msgid "Asset" -msgstr "Tillgång" +msgstr "" #. module: account #: constraint:ir.actions.act_window:0 @@ -146,7 +146,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_move_line_form #: model:ir.ui.menu,name:account.menu_action_move_line_form msgid "Entries" -msgstr "Poster" +msgstr "" #. module: account #: selection:account.move.line,centralisation:0 @@ -291,7 +291,7 @@ msgstr "" #: field:account.invoice,origin:0 #: field:account.invoice.line,origin:0 msgid "Origin" -msgstr "Ursprung" +msgstr "" #. module: account #: rml:account.analytic.account.journal:0 @@ -301,7 +301,7 @@ msgstr "" #. module: account #: xsl:account.transfer:0 msgid "Reference" -msgstr "Referens" +msgstr "" #. module: account #: wizard_view:account.subscription.generate,init:0 @@ -323,7 +323,7 @@ msgstr "" #: field:account.invoice,amount_tax:0 #: field:account.move.line,account_tax_id:0 msgid "Tax" -msgstr "Skatt" +msgstr "" #. module: account #: rml:account.general.journal:0 @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -699,7 +704,7 @@ msgstr "" #. module: account #: field:account.journal.column,field:0 msgid "Field Name" -msgstr "Fältnamn" +msgstr "" #. module: account #: field:account.tax.code,sign:0 @@ -844,7 +849,7 @@ msgstr "" #. module: account #: field:account.journal.column,required:0 msgid "Required" -msgstr "Krävs" +msgstr "" #. module: account #: field:product.category,property_account_expense_categ:0 @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1125,7 +1130,7 @@ msgstr "" #. module: account #: field:account.payment.term,line_ids:0 msgid "Terms" -msgstr "Villkor" +msgstr "" #. module: account #: rml:account.vat.declaration:0 @@ -1254,7 +1259,7 @@ msgstr "" #. module: account #: field:account.payment.term.line,value:0 msgid "Value" -msgstr "Värde" +msgstr "" #. module: account #: wizard_field:account.invoice.pay,addendum,writeoff_acc_id:0 @@ -1266,7 +1271,7 @@ msgstr "" #: field:account.model.line,model_id:0 #: field:account.subscription,model_id:0 msgid "Model" -msgstr "Modell" +msgstr "" #. module: account #: model:ir.actions.wizard,name:account.wizard_fiscalyear_close_state @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -1452,7 +1457,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.account_type_income msgid "Income" -msgstr "Inkomst" +msgstr "" #. module: account #: selection:account.bank.statement.line,type:0 @@ -1736,7 +1741,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_charts msgid "Charts" -msgstr "Grafer" +msgstr "" #. module: account #: selection:account.analytic.journal,type:0 @@ -1819,7 +1824,7 @@ msgstr "" #: field:account.move.reconcile,type:0 #: xsl:account.transfer:0 msgid "Type" -msgstr "Typ" +msgstr "" #. module: account #: view:account.journal:0 @@ -1875,7 +1880,7 @@ msgstr "" #. module: account #: field:account.payment.term.line,days:0 msgid "Number of Days" -msgstr "Antal dagar" +msgstr "" #. module: account #: help:account.invoice,reference:0 @@ -1905,7 +1910,7 @@ msgstr "" #. module: account #: model:ir.actions.report.xml,name:account.account_transfers msgid "Transfers" -msgstr "Överföringar" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -2000,7 +2005,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.account_type_expense msgid "Expense" -msgstr "Utgift" +msgstr "" #. module: account #: field:account.journal,invoice_sequence_id:0 @@ -2083,7 +2088,7 @@ msgstr "" #. module: account #: view:account.payment.term:0 msgid "Computation" -msgstr "Beräkning" +msgstr "" #. module: account #: view:account.analytic.line:0 @@ -2197,7 +2202,7 @@ msgstr "" #. module: account #: field:product.template,taxes_id:0 msgid "Customer Taxes" -msgstr "Produktskatter" +msgstr "" #. module: account #: field:account.invoice,date_invoice:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -2695,7 +2700,7 @@ msgstr "" #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 msgid "Name" -msgstr "Namn" +msgstr "" #. module: account #: wizard_view:account.move.line.reconcile,init_full:0 @@ -2932,7 +2937,7 @@ msgstr "" #. module: account #: field:account.journal.column,readonly:0 msgid "Readonly" -msgstr "Skrivskyddad" +msgstr "" #. module: account #: help:account.model.line,date_maturity:0 @@ -3166,14 +3171,14 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance msgid "Financial Management" -msgstr "Finansiell hantering" +msgstr "" #. module: account #: selection:account.account.type,close_method:0 #: selection:account.tax,type:0 #: selection:account.tax.template,type:0 msgid "None" -msgstr "Ingen" +msgstr "" #. module: account #: model:ir.actions.wizard,name:account.wizard_fiscalyear_close @@ -3337,13 +3342,13 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_invoice_line msgid "Invoice line" -msgstr "Fakturarad" +msgstr "" #. module: account #: field:account.account,shortcut:0 #: field:account.account.template,shortcut:0 msgid "Shortcut" -msgstr "Genväg" +msgstr "" #. module: account #: wizard_view:account.move.validate,init:0 @@ -3501,7 +3506,7 @@ msgstr "" #. module: account #: field:account.invoice.tax,manual:0 msgid "Manual" -msgstr "Manuell" +msgstr "" #. module: account #: view:account.invoice:0 @@ -3546,7 +3551,7 @@ msgstr "" #: field:account.tax.template,sequence:0 #: field:fiscalyear.seq,sequence_id:0 msgid "Sequence" -msgstr "Sekvens" +msgstr "" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" @@ -3670,7 +3675,7 @@ msgstr "" #: field:account.account,note:0 #: field:account.account.template,note:0 msgid "Note" -msgstr "Anteckning" +msgstr "" #. module: account #: model:ir.module.module,description:account.module_meta_information @@ -3734,7 +3739,7 @@ msgstr "" #. module: account #: field:account.journal.view,columns_id:0 msgid "Columns" -msgstr "Kolumner" +msgstr "" #. module: account #: selection:account.general.ledger.report,checktype,sortbydate:0 @@ -3798,7 +3803,7 @@ msgstr "" #. module: account #: field:account.journal,groups_id:0 msgid "Groups" -msgstr "Grupper" +msgstr "" #. module: account #: rml:account.analytic.account.quantity_cost_ledger:0 @@ -3814,7 +3819,7 @@ msgstr "" #: field:account.payment.term,active:0 #: field:account.tax,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: account #: model:process.node,note:account.process_node_electronicfile0 @@ -3860,7 +3865,7 @@ msgstr "" #: field:account.account,currency_id:0 #: field:account.account.template,currency_id:0 msgid "Secondary Currency" -msgstr "Valuta" +msgstr "" #. module: account #: field:account.account,credit:0 @@ -4000,7 +4005,7 @@ msgstr "" #: selection:account.period,state:0 #: selection:account.subscription,state:0 msgid "Done" -msgstr "Klar" +msgstr "" #. module: account #: wizard_field:account.account.balance.report,checktype,periods:0 @@ -4054,7 +4059,7 @@ msgstr "" #. module: account #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: account #: help:account.account.type,sign:0 @@ -4550,7 +4555,7 @@ msgstr "" #. module: account #: field:account.journal.period,icon:0 msgid "Icon" -msgstr "Ikon" +msgstr "" #. module: account #: model:ir.model,name:account.model_account_journal_period @@ -4860,7 +4865,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_configuration msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: account #: view:account.analytic.line:0 @@ -4963,7 +4968,7 @@ msgstr "" #: field:account.tax,domain:0 #: field:account.tax.template,domain:0 msgid "Domain" -msgstr "Domän" +msgstr "" #. module: account #: view:account.analytic.account:0 @@ -5309,7 +5314,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_invoice_tax msgid "Invoice Tax" -msgstr "Fakturaskatt" +msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_journal_form @@ -5428,7 +5433,7 @@ msgstr "" #. module: account #: field:account.model.line,date:0 msgid "Current Date" -msgstr "Aktuellt datum" +msgstr "" #. module: account #: selection:account.move,type:0 @@ -5606,7 +5611,7 @@ msgstr "" #: selection:account.analytic.journal,type:0 #: selection:account.journal,type:0 msgid "Cash" -msgstr "Kontant" +msgstr "" #. module: account #: field:account.fiscal.position.account,account_dest_id:0 diff --git a/addons/account/i18n/sv_SE.po b/addons/account/i18n/sv_SE.po index 728de64f10a..5e6abb2016e 100644 --- a/addons/account/i18n/sv_SE.po +++ b/addons/account/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/tr_TR.po b/addons/account/i18n/tr_TR.po index 1ec7e5ff4cb..7bbfa0ce64a 100644 --- a/addons/account/i18n/tr_TR.po +++ b/addons/account/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/uk_UK.po b/addons/account/i18n/uk_UA.po similarity index 99% rename from addons/account/i18n/uk_UK.po rename to addons/account/i18n/uk_UA.po index 6343eb8b37d..006c575f19d 100644 --- a/addons/account/i18n/uk_UK.po +++ b/addons/account/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "Знижка (%)" msgid "Write-Off amount" msgstr "Сума списання" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "Залишити пустим, якщо податковий рік належить кільком компаніям." + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "Типи рахунків" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,9 +2379,9 @@ msgid "Applicable Code (if type=code)" msgstr "Придатний код (якщо тип=код)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" -msgstr "" +msgstr "Відкрити журнал" #. module: account #: rml:account.analytic.account.journal:0 @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,9 +3585,9 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" -msgstr "" +msgstr "Стандартні записи" #. module: account #: help:account.account,check_history:0 diff --git a/addons/account/i18n/cs_CS.po b/addons/account/i18n/vi_VN.po similarity index 99% rename from addons/account/i18n/cs_CS.po rename to addons/account/i18n/vi_VN.po index 01bde045206..a1bc6fc94b6 100644 --- a/addons/account/i18n/cs_CS.po +++ b/addons/account/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,reconcile:0 msgid "Reconciliation result" -msgstr "Výsledek vyrovnání(Reconciliation result)" +msgstr "" #. module: account #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled @@ -306,7 +306,7 @@ msgstr "" #. module: account #: wizard_view:account.subscription.generate,init:0 msgid "Subscription Compute" -msgstr "Vypočítat předpaltné(Subscription Compute)" +msgstr "" #. module: account #: rml:account.central.journal:0 @@ -445,7 +445,7 @@ msgstr "" #: model:ir.actions.wizard,name:account.action_account_bank_reconcile_tree #: model:ir.ui.menu,name:account.menu_action_account_bank_reconcile_check_tree msgid "Bank reconciliation" -msgstr "Bankovní vyrovnání(Bank reconciliation)" +msgstr "" #. module: account #: rml:account.invoice:0 @@ -612,7 +612,7 @@ msgstr "" #. module: account #: wizard_button:account.move.bank.reconcile,init,open:0 msgid "Open for bank reconciliation" -msgstr "Otevřeno pro bankovní vyrovnání(Open for bank reconciliation)" +msgstr "" #. module: account #: field:account.invoice.line,discount:0 @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -757,7 +762,7 @@ msgstr "" #. module: account #: wizard_view:account.subscription.generate,init:0 msgid "Generate entries before:" -msgstr "Generovat položky před:" +msgstr "" #. module: account #: rml:account.analytic.account.cost_ledger:0 @@ -871,7 +876,7 @@ msgstr "" #. module: account #: wizard_field:account.fiscalyear.close,init,fy2_id:0 msgid "New Fiscal Year" -msgstr "Fiskální rok" +msgstr "" #. module: account #: help:account.tax,tax_group:0 @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1151,7 +1156,7 @@ msgstr "" #. module: account #: view:res.partner:0 msgid "Bank account" -msgstr "Bankovní účet" +msgstr "" #. module: account #: field:account.chart.template,tax_template_ids:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -1513,7 +1518,7 @@ msgstr "" #. module: account #: wizard_button:account.move.line.reconcile.select,init,open:0 msgid "Open for reconciliation" -msgstr "Otevřeno pro vyrovnání(Open for reconciliation)" +msgstr "" #. module: account #: model:account.journal,name:account.bilan_journal @@ -1724,7 +1729,7 @@ msgstr "" #. module: account #: wizard_field:account.aged.trial.balance,init,period_length:0 msgid "Period length (days)" -msgstr "Délka období (dny)" +msgstr "" #. module: account #: selection:account.payment.term.line,value:0 @@ -1846,7 +1851,7 @@ msgstr "" #: wizard_view:account.invoice.pay,init:0 #: model:ir.actions.wizard,name:account.wizard_invoice_pay msgid "Pay invoice" -msgstr "Zaplatit fakturu" +msgstr "" #. module: account #: constraint:account.invoice:0 @@ -2010,7 +2015,7 @@ msgstr "" #. module: account #: wizard_view:account.automatic.reconcile,init:0 msgid "Options" -msgstr "Možnosti(Options)" +msgstr "" #. module: account #: model:process.process,name:account.process_process_invoiceprocess0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -2601,7 +2606,7 @@ msgstr "" #. module: account #: wizard_field:account.automatic.reconcile,init,power:0 msgid "Power" -msgstr "Power(Power)" +msgstr "" #. module: account #: wizard_view:account.analytic.line,init:0 @@ -2756,7 +2761,7 @@ msgstr "" #: wizard_view:account.invoice.pay,addendum:0 #: wizard_view:account.move.line.reconcile,addendum:0 msgid "Write-Off Move" -msgstr "Přesun odpisu(Write-Off Move)" +msgstr "" #. module: account #: view:account.move.line:0 @@ -2779,7 +2784,7 @@ msgstr "" #: wizard_button:account.move.line.reconcile,addendum,reconcile:0 #: wizard_button:account.move.line.reconcile,init_full,reconcile:0 msgid "Reconcile" -msgstr "Vyrovnání(Reconcile)" +msgstr "" #. module: account #: rml:account.overdue:0 @@ -2892,7 +2897,7 @@ msgstr "" #: model:process.node,name:account.process_node_reconciliation0 #: model:process.node,name:account.process_node_supplierreconciliation0 msgid "Reconciliation" -msgstr "Vyrovnanost(Reconciliation)" +msgstr "" #. module: account #: field:account.move.line,centralisation:0 @@ -3166,7 +3171,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance msgid "Financial Management" -msgstr "Finanční hospodaření" +msgstr "" #. module: account #: selection:account.account.type,close_method:0 @@ -3379,7 +3384,7 @@ msgstr "" #. module: account #: view:res.partner:0 msgid "Bank account owner" -msgstr "Majitel bankovního účtu" +msgstr "" #. module: account #: wizard_view:account.account.balance.report,checktype:0 @@ -3496,7 +3501,7 @@ msgstr "" #. module: account #: wizard_field:account.automatic.reconcile,init,max_amount:0 msgid "Maximum write-off amount" -msgstr "Max.množství odpisu(Maximum write-off amount)" +msgstr "" #. module: account #: field:account.invoice.tax,manual:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" @@ -4634,7 +4639,7 @@ msgstr "" #. module: account #: wizard_button:account.move.line.unreconcile.select,init,open:0 msgid "Open for unreconciliation" -msgstr "Open za nevyrovnání(Open for unreconciliation)" +msgstr "" #. module: account #: field:account.bank.statement.reconcile,statement_line:0 @@ -4645,7 +4650,7 @@ msgstr "" #. module: account #: wizard_button:account.automatic.reconcile,reconcile,end:0 msgid "OK" -msgstr "OK(OK)" +msgstr "" #. module: account #: model:process.node,name:account.process_node_supplierinvoiceinvoice0 @@ -4823,7 +4828,7 @@ msgstr "" #. module: account #: wizard_field:account.automatic.reconcile,reconcile,reconciled:0 msgid "Reconciled transactions" -msgstr "Transakce na vyrovnání(Reconciled transactions)" +msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reporting @@ -4860,7 +4865,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_configuration msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: account #: view:account.analytic.line:0 @@ -5133,7 +5138,7 @@ msgstr "" #. module: account #: wizard_view:account.period.close,init:0 msgid "Are you sure ?" -msgstr "Jste si jisti?" +msgstr "" #. module: account #: rml:account.invoice:0 @@ -5627,7 +5632,7 @@ msgstr "" #: field:fiscalyear.seq,fiscalyear_id:0 #: model:ir.model,name:account.model_account_fiscalyear msgid "Fiscal Year" -msgstr "Přestupný rok(Fiscal Year)" +msgstr "" #. module: account #: selection:account.aged.trial.balance,init,direction_selection:0 @@ -5704,7 +5709,7 @@ msgstr "" #. module: account #: view:res.partner:0 msgid "Bank Details" -msgstr "Detaily o bance" +msgstr "" #. module: account #: field:account.chart.template,property_account_expense:0 diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po index 5a0d381b9f8..1a15e282176 100644 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po index 5646bc68789..5f8b1b4bd0f 100644 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -625,6 +625,11 @@ msgstr "" msgid "Write-Off amount" msgstr "" +#. module: account +#: help:account.fiscalyear,company_id:0 +msgid "Keep empty if the fiscal year belongs to several companies." +msgstr "" + #. module: account #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" @@ -945,7 +950,7 @@ msgstr "" #: wizard_field:account.invoice.pay,init,period_id:0 #: field:account.journal.period,period_id:0 #: field:account.move,period_id:0 -#: wizard_field:account.move.journal.multicompany,init,period_id:0 +#: wizard_field:account.move.journal,init,period_id:0 #: field:account.move.line,period_id:0 #: wizard_field:account.move.validate,init,period_id:0 #: view:account.period:0 @@ -1365,7 +1370,7 @@ msgstr "" #: field:account.model,journal_id:0 #: field:account.move,journal_id:0 #: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal.multicompany,init,journal_id:0 +#: wizard_field:account.move.journal,init,journal_id:0 #: field:account.move.line,journal_id:0 #: wizard_field:account.move.validate,init,journal_id:0 #: wizard_field:account.print.journal.report,init,journal_id:0 @@ -2374,7 +2379,7 @@ msgid "Applicable Code (if type=code)" msgstr "适用编码(如果类型=编码)" #. module: account -#: wizard_button:account.move.journal.multicompany,init,open:0 +#: wizard_button:account.move.journal,init,open:0 msgid "Open Journal" msgstr "" @@ -2464,7 +2469,7 @@ msgstr "" #: wizard_button:account.invoice.refund,init,end:0 #: view:account.move:0 #: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal.multicompany,init,end:0 +#: wizard_button:account.move.journal,init,end:0 #: wizard_button:account.move.line.reconcile,addendum,end:0 #: wizard_button:account.move.line.reconcile,init_full,end:0 #: wizard_button:account.move.line.reconcile,init_partial,end:0 @@ -3580,7 +3585,7 @@ msgid "3 Months" msgstr "" #. module: account -#: wizard_view:account.move.journal.multicompany,init:0 +#: wizard_view:account.move.journal,init:0 msgid "Standard entries" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot b/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot index 46a5e86f7bb..4ef6d197f18 100644 --- a/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot +++ b/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/ar_AR.po b/addons/account_analytic_analysis/i18n/ar_AR.po index ccb5369fe7e..d34961fbfdc 100644 --- a/addons/account_analytic_analysis/i18n/ar_AR.po +++ b/addons/account_analytic_analysis/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/bg_BG.po b/addons/account_analytic_analysis/i18n/bg_BG.po index 9178e473c2a..ac5a827e0a9 100644 --- a/addons/account_analytic_analysis/i18n/bg_BG.po +++ b/addons/account_analytic_analysis/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/bs_BS.po b/addons/account_analytic_analysis/i18n/bs_BS.po index c9032c1155d..155954f0373 100644 --- a/addons/account_analytic_analysis/i18n/bs_BS.po +++ b/addons/account_analytic_analysis/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/ca_ES.po b/addons/account_analytic_analysis/i18n/ca_ES.po index 20c0ec7f3ed..583edd63c7f 100644 --- a/addons/account_analytic_analysis/i18n/ca_ES.po +++ b/addons/account_analytic_analysis/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/cs_CZ.po b/addons/account_analytic_analysis/i18n/cs_CZ.po index f93661ab2aa..41964cf1a13 100644 --- a/addons/account_analytic_analysis/i18n/cs_CZ.po +++ b/addons/account_analytic_analysis/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/de_DE.po b/addons/account_analytic_analysis/i18n/de_DE.po index 76f89631d46..51c2bb2f4e6 100644 --- a/addons/account_analytic_analysis/i18n/de_DE.po +++ b/addons/account_analytic_analysis/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/es_AR.po b/addons/account_analytic_analysis/i18n/es_AR.po index 23830dc5493..4400061ef2f 100644 --- a/addons/account_analytic_analysis/i18n/es_AR.po +++ b/addons/account_analytic_analysis/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/es_ES.po b/addons/account_analytic_analysis/i18n/es_ES.po index 6dc3a4407b8..65150631fc3 100644 --- a/addons/account_analytic_analysis/i18n/es_ES.po +++ b/addons/account_analytic_analysis/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/et_EE.po b/addons/account_analytic_analysis/i18n/et_EE.po index 75237621a13..6c889e54acf 100644 --- a/addons/account_analytic_analysis/i18n/et_EE.po +++ b/addons/account_analytic_analysis/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/fi_FI.po b/addons/account_analytic_analysis/i18n/fi_FI.po index a217c575079..311c247f134 100644 --- a/addons/account_analytic_analysis/i18n/fi_FI.po +++ b/addons/account_analytic_analysis/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/fr_FR.po b/addons/account_analytic_analysis/i18n/fr_FR.po index a32eac851fb..0445bf10dce 100644 --- a/addons/account_analytic_analysis/i18n/fr_FR.po +++ b/addons/account_analytic_analysis/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "Revenu théorique" #. module: account_analytic_analysis #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 diff --git a/addons/account_analytic_analysis/i18n/hr_HR.po b/addons/account_analytic_analysis/i18n/hr_HR.po index ec45765969e..27adfd286d6 100644 --- a/addons/account_analytic_analysis/i18n/hr_HR.po +++ b/addons/account_analytic_analysis/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/hu_HU.po b/addons/account_analytic_analysis/i18n/hu_HU.po index a9a947a6150..30fc20e2387 100644 --- a/addons/account_analytic_analysis/i18n/hu_HU.po +++ b/addons/account_analytic_analysis/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/id_ID.po b/addons/account_analytic_analysis/i18n/id_ID.po index 11581795308..0e5140c9483 100644 --- a/addons/account_analytic_analysis/i18n/id_ID.po +++ b/addons/account_analytic_analysis/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/it_IT.po b/addons/account_analytic_analysis/i18n/it_IT.po index af3eb639385..d4bf656a498 100644 --- a/addons/account_analytic_analysis/i18n/it_IT.po +++ b/addons/account_analytic_analysis/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/ko_KO.po b/addons/account_analytic_analysis/i18n/ko_KO.po index 0e0a0992ce9..fe5a8ed4cf3 100644 --- a/addons/account_analytic_analysis/i18n/ko_KO.po +++ b/addons/account_analytic_analysis/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:08+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:59+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/lt_LT.po b/addons/account_analytic_analysis/i18n/lt_LT.po index 0d76fe7fe64..1f0432015e1 100644 --- a/addons/account_analytic_analysis/i18n/lt_LT.po +++ b/addons/account_analytic_analysis/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/nl_BE.po b/addons/account_analytic_analysis/i18n/nl_BE.po index 0c725fd8d94..c9629549de8 100644 --- a/addons/account_analytic_analysis/i18n/nl_BE.po +++ b/addons/account_analytic_analysis/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/nl_NL.po b/addons/account_analytic_analysis/i18n/nl_NL.po index c5248695157..c52746dfedd 100644 --- a/addons/account_analytic_analysis/i18n/nl_NL.po +++ b/addons/account_analytic_analysis/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/pl_PL.po b/addons/account_analytic_analysis/i18n/pl_PL.po index 863e9ed2865..a979c46b76b 100644 --- a/addons/account_analytic_analysis/i18n/pl_PL.po +++ b/addons/account_analytic_analysis/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po index 44818f65c12..51e756b4af5 100644 --- a/addons/account_analytic_analysis/i18n/pt_BR.po +++ b/addons/account_analytic_analysis/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/pt_PT.po b/addons/account_analytic_analysis/i18n/pt_PT.po index a67e5649e9a..0583c27083b 100644 --- a/addons/account_analytic_analysis/i18n/pt_PT.po +++ b/addons/account_analytic_analysis/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/ro_RO.po b/addons/account_analytic_analysis/i18n/ro_RO.po index 6a24329959b..e64618da079 100644 --- a/addons/account_analytic_analysis/i18n/ro_RO.po +++ b/addons/account_analytic_analysis/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/ru_RU.po b/addons/account_analytic_analysis/i18n/ru_RU.po index c4b1a2dda42..07964bdd1c7 100644 --- a/addons/account_analytic_analysis/i18n/ru_RU.po +++ b/addons/account_analytic_analysis/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/sl_SL.po b/addons/account_analytic_analysis/i18n/sl_SL.po index 005bd1affc5..c3b80222363 100644 --- a/addons/account_analytic_analysis/i18n/sl_SL.po +++ b/addons/account_analytic_analysis/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/cs_CS.po b/addons/account_analytic_analysis/i18n/sq_AL.po similarity index 98% rename from addons/account_analytic_analysis/i18n/cs_CS.po rename to addons/account_analytic_analysis/i18n/sq_AL.po index 88bd8e20c05..67ccc2a4b6d 100644 --- a/addons/account_analytic_analysis/i18n/cs_CS.po +++ b/addons/account_analytic_analysis/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/sv_SE.po b/addons/account_analytic_analysis/i18n/sv_SE.po index 059c91395e7..b113c21e703 100644 --- a/addons/account_analytic_analysis/i18n/sv_SE.po +++ b/addons/account_analytic_analysis/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/tr_TR.po b/addons/account_analytic_analysis/i18n/tr_TR.po index 6d07056ab1f..de5814436c1 100644 --- a/addons/account_analytic_analysis/i18n/tr_TR.po +++ b/addons/account_analytic_analysis/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/uk_UK.po b/addons/account_analytic_analysis/i18n/uk_UA.po similarity index 98% rename from addons/account_analytic_analysis/i18n/uk_UK.po rename to addons/account_analytic_analysis/i18n/uk_UA.po index 7fb08a490f0..4d70abb0556 100644 --- a/addons/account_analytic_analysis/i18n/uk_UK.po +++ b/addons/account_analytic_analysis/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/sv_SV.po b/addons/account_analytic_analysis/i18n/vi_VN.po similarity index 97% rename from addons/account_analytic_analysis/i18n/sv_SV.po rename to addons/account_analytic_analysis/i18n/vi_VN.po index 8820382e4bd..532d7bb7393 100644 --- a/addons/account_analytic_analysis/i18n/sv_SV.po +++ b/addons/account_analytic_analysis/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" #. module: account_analytic_analysis #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_new diff --git a/addons/account_analytic_analysis/i18n/zh_CN.po b/addons/account_analytic_analysis/i18n/zh_CN.po index 64623936a90..7791428eb28 100644 --- a/addons/account_analytic_analysis/i18n/zh_CN.po +++ b/addons/account_analytic_analysis/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_analysis/i18n/zh_TW.po b/addons/account_analytic_analysis/i18n/zh_TW.po index d9f2c8bb153..2c59c84744e 100644 --- a/addons/account_analytic_analysis/i18n/zh_TW.po +++ b/addons/account_analytic_analysis/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+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 ab0792b175a..09945839eff 100644 --- a/addons/account_analytic_default/i18n/account_analytic_default.pot +++ b/addons/account_analytic_default/i18n/account_analytic_default.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/ar_AR.po b/addons/account_analytic_default/i18n/ar_AR.po index df6f5e64b44..5832e9571fa 100644 --- a/addons/account_analytic_default/i18n/ar_AR.po +++ b/addons/account_analytic_default/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/bg_BG.po b/addons/account_analytic_default/i18n/bg_BG.po index d271cdefa70..57206d5a8c9 100644 --- a/addons/account_analytic_default/i18n/bg_BG.po +++ b/addons/account_analytic_default/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/bs_BS.po b/addons/account_analytic_default/i18n/bs_BS.po index eac0ebb6171..9cef226e0a2 100644 --- a/addons/account_analytic_default/i18n/bs_BS.po +++ b/addons/account_analytic_default/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/ca_ES.po b/addons/account_analytic_default/i18n/ca_ES.po index 3550ecbba0b..3affce2a072 100644 --- a/addons/account_analytic_default/i18n/ca_ES.po +++ b/addons/account_analytic_default/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/cs_CZ.po b/addons/account_analytic_default/i18n/cs_CZ.po index 37c2c01f72c..f0a3cc02f44 100644 --- a/addons/account_analytic_default/i18n/cs_CZ.po +++ b/addons/account_analytic_default/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/de_DE.po b/addons/account_analytic_default/i18n/de_DE.po index dacaefa0bbe..50003819a92 100644 --- a/addons/account_analytic_default/i18n/de_DE.po +++ b/addons/account_analytic_default/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/es_AR.po b/addons/account_analytic_default/i18n/es_AR.po index 0737a705431..d985c16f1ab 100644 --- a/addons/account_analytic_default/i18n/es_AR.po +++ b/addons/account_analytic_default/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/es_ES.po b/addons/account_analytic_default/i18n/es_ES.po index 21d76400905..8f360d6c299 100644 --- a/addons/account_analytic_default/i18n/es_ES.po +++ b/addons/account_analytic_default/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/et_EE.po b/addons/account_analytic_default/i18n/et_EE.po index bea3e9a3d3d..09a6c29e540 100644 --- a/addons/account_analytic_default/i18n/et_EE.po +++ b/addons/account_analytic_default/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/fi_FI.po b/addons/account_analytic_default/i18n/fi_FI.po index ab1d5cb3ffb..987cb8cdced 100644 --- a/addons/account_analytic_default/i18n/fi_FI.po +++ b/addons/account_analytic_default/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/fr_FR.po b/addons/account_analytic_default/i18n/fr_FR.po index 2483e0a9ef5..f363486f41a 100644 --- a/addons/account_analytic_default/i18n/fr_FR.po +++ b/addons/account_analytic_default/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "Analytique par défaut" #. module: account_analytic_default #: model:ir.module.module,shortdesc:account_analytic_default.module_meta_information msgid "Account Analytic Default" -msgstr "" +msgstr "Compte Analytique par Défaut" #. module: account_analytic_default #: constraint:ir.ui.view:0 @@ -80,7 +80,7 @@ msgstr "Utilisateur" #. module: account_analytic_default #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.act_account_acount_move_line_open diff --git a/addons/account_analytic_default/i18n/hr_HR.po b/addons/account_analytic_default/i18n/hr_HR.po index ee4e004064d..651a8303f8d 100644 --- a/addons/account_analytic_default/i18n/hr_HR.po +++ b/addons/account_analytic_default/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/hu_HU.po b/addons/account_analytic_default/i18n/hu_HU.po index 052d64f8957..4938fe3b9f1 100644 --- a/addons/account_analytic_default/i18n/hu_HU.po +++ b/addons/account_analytic_default/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/id_ID.po b/addons/account_analytic_default/i18n/id_ID.po index 4327423ddf5..fd825075a97 100644 --- a/addons/account_analytic_default/i18n/id_ID.po +++ b/addons/account_analytic_default/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/it_IT.po b/addons/account_analytic_default/i18n/it_IT.po index 53bdf8ae818..757ff3fd712 100644 --- a/addons/account_analytic_default/i18n/it_IT.po +++ b/addons/account_analytic_default/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/lt_LT.po b/addons/account_analytic_default/i18n/lt_LT.po index f37f6e55ec8..cfd3148752d 100644 --- a/addons/account_analytic_default/i18n/lt_LT.po +++ b/addons/account_analytic_default/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/nl_BE.po b/addons/account_analytic_default/i18n/nl_BE.po index 4311fa7a91d..1890dc07465 100644 --- a/addons/account_analytic_default/i18n/nl_BE.po +++ b/addons/account_analytic_default/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/nl_NL.po b/addons/account_analytic_default/i18n/nl_NL.po index b4c8493943e..9092397fb60 100644 --- a/addons/account_analytic_default/i18n/nl_NL.po +++ b/addons/account_analytic_default/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/pl_PL.po b/addons/account_analytic_default/i18n/pl_PL.po index 272b904d2f4..bec5b9b82e4 100644 --- a/addons/account_analytic_default/i18n/pl_PL.po +++ b/addons/account_analytic_default/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/pt_BR.po b/addons/account_analytic_default/i18n/pt_BR.po index 0546bdc395b..3c90222b332 100644 --- a/addons/account_analytic_default/i18n/pt_BR.po +++ b/addons/account_analytic_default/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/pt_PT.po b/addons/account_analytic_default/i18n/pt_PT.po index f1ab38abd9d..cd736b17893 100644 --- a/addons/account_analytic_default/i18n/pt_PT.po +++ b/addons/account_analytic_default/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/ro_RO.po b/addons/account_analytic_default/i18n/ro_RO.po index e78b2f5b2b2..ad459514021 100644 --- a/addons/account_analytic_default/i18n/ro_RO.po +++ b/addons/account_analytic_default/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/ru_RU.po b/addons/account_analytic_default/i18n/ru_RU.po index 9782fbaf128..3ff9faa4416 100644 --- a/addons/account_analytic_default/i18n/ru_RU.po +++ b/addons/account_analytic_default/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/sl_SL.po b/addons/account_analytic_default/i18n/sl_SL.po index 744176bd49d..b25dbf8f4c1 100644 --- a/addons/account_analytic_default/i18n/sl_SL.po +++ b/addons/account_analytic_default/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/cs_CS.po b/addons/account_analytic_default/i18n/sq_AL.po similarity index 95% rename from addons/account_analytic_default/i18n/cs_CS.po rename to addons/account_analytic_default/i18n/sq_AL.po index 63fc4823ff7..a3244ca84c5 100644 --- a/addons/account_analytic_default/i18n/cs_CS.po +++ b/addons/account_analytic_default/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/sv_SE.po b/addons/account_analytic_default/i18n/sv_SE.po index af8ce551f18..6d27fdaf1cf 100644 --- a/addons/account_analytic_default/i18n/sv_SE.po +++ b/addons/account_analytic_default/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/tr_TR.po b/addons/account_analytic_default/i18n/tr_TR.po index 01ac8e5ec3c..f5bdb45c3ff 100644 --- a/addons/account_analytic_default/i18n/tr_TR.po +++ b/addons/account_analytic_default/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/uk_UK.po b/addons/account_analytic_default/i18n/uk_UA.po similarity index 95% rename from addons/account_analytic_default/i18n/uk_UK.po rename to addons/account_analytic_default/i18n/uk_UA.po index 005487b14d6..cde8871e854 100644 --- a/addons/account_analytic_default/i18n/uk_UK.po +++ b/addons/account_analytic_default/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/sv_SV.po b/addons/account_analytic_default/i18n/vi_VN.po similarity index 92% rename from addons/account_analytic_default/i18n/sv_SV.po rename to addons/account_analytic_default/i18n/vi_VN.po index dcc74a97f63..6e57847190d 100644 --- a/addons/account_analytic_default/i18n/sv_SV.po +++ b/addons/account_analytic_default/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "" #. module: account_analytic_default #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -85,7 +85,7 @@ msgstr "" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.act_account_acount_move_line_open msgid "Entries" -msgstr "Poster" +msgstr "" #. module: account_analytic_default #: field:account.analytic.default,partner_id:0 diff --git a/addons/account_analytic_default/i18n/zh_CN.po b/addons/account_analytic_default/i18n/zh_CN.po index a1e62f1ba22..d27610e085c 100644 --- a/addons/account_analytic_default/i18n/zh_CN.po +++ b/addons/account_analytic_default/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/zh_TW.po b/addons/account_analytic_default/i18n/zh_TW.po index 5d3a7205aae..32097b2ec61 100644 --- a/addons/account_analytic_default/i18n/zh_TW.po +++ b/addons/account_analytic_default/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+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 9443a40bd63..f94a6a04bca 100644 --- a/addons/account_analytic_plans/i18n/account_analytic_plans.pot +++ b/addons/account_analytic_plans/i18n/account_analytic_plans.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/ar_AR.po b/addons/account_analytic_plans/i18n/ar_AR.po index 2d6114cc818..af320fee61a 100644 --- a/addons/account_analytic_plans/i18n/ar_AR.po +++ b/addons/account_analytic_plans/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/bg_BG.po b/addons/account_analytic_plans/i18n/bg_BG.po index 0df87f4dbe3..10405bb7d25 100644 --- a/addons/account_analytic_plans/i18n/bg_BG.po +++ b/addons/account_analytic_plans/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/bs_BS.po b/addons/account_analytic_plans/i18n/bs_BS.po index 1f435f1a32b..a188c82fca5 100644 --- a/addons/account_analytic_plans/i18n/bs_BS.po +++ b/addons/account_analytic_plans/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/ca_ES.po b/addons/account_analytic_plans/i18n/ca_ES.po index ab0777a6ec7..a0c2522097a 100644 --- a/addons/account_analytic_plans/i18n/ca_ES.po +++ b/addons/account_analytic_plans/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/cs_CZ.po b/addons/account_analytic_plans/i18n/cs_CZ.po index e9d0377da63..6f4e6aba03d 100644 --- a/addons/account_analytic_plans/i18n/cs_CZ.po +++ b/addons/account_analytic_plans/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/de_DE.po b/addons/account_analytic_plans/i18n/de_DE.po index f0024d44f8a..fa187cd59d3 100644 --- a/addons/account_analytic_plans/i18n/de_DE.po +++ b/addons/account_analytic_plans/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/es_AR.po b/addons/account_analytic_plans/i18n/es_AR.po index 7cc998b9950..cf1c9a706d6 100644 --- a/addons/account_analytic_plans/i18n/es_AR.po +++ b/addons/account_analytic_plans/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/es_ES.po b/addons/account_analytic_plans/i18n/es_ES.po index 9c94b54ba65..d56e2534965 100644 --- a/addons/account_analytic_plans/i18n/es_ES.po +++ b/addons/account_analytic_plans/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/et_EE.po b/addons/account_analytic_plans/i18n/et_EE.po index 7c42601aa8e..50b5f0ffc61 100644 --- a/addons/account_analytic_plans/i18n/et_EE.po +++ b/addons/account_analytic_plans/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/fi_FI.po b/addons/account_analytic_plans/i18n/fi_FI.po index 8d8ae0840b5..0604fdde492 100644 --- a/addons/account_analytic_plans/i18n/fi_FI.po +++ b/addons/account_analytic_plans/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/fr_FR.po b/addons/account_analytic_plans/i18n/fr_FR.po index 7b2ae49d3e2..b18f1937a8c 100644 --- a/addons/account_analytic_plans/i18n/fr_FR.po +++ b/addons/account_analytic_plans/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -103,7 +103,7 @@ msgstr "Code de la Distribution" #. module: account_analytic_plans #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: account_analytic_plans #: field:account.analytic.plan.line,name:0 diff --git a/addons/account_analytic_plans/i18n/hr_HR.po b/addons/account_analytic_plans/i18n/hr_HR.po index bafe699be22..200a0468fd4 100644 --- a/addons/account_analytic_plans/i18n/hr_HR.po +++ b/addons/account_analytic_plans/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/hu_HU.po b/addons/account_analytic_plans/i18n/hu_HU.po index 9ad5c091153..099508deb8e 100644 --- a/addons/account_analytic_plans/i18n/hu_HU.po +++ b/addons/account_analytic_plans/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/id_ID.po b/addons/account_analytic_plans/i18n/id_ID.po index 326a2b96d04..6f461b8d6c4 100644 --- a/addons/account_analytic_plans/i18n/id_ID.po +++ b/addons/account_analytic_plans/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/it_IT.po b/addons/account_analytic_plans/i18n/it_IT.po index ec548922211..a2493d8f021 100644 --- a/addons/account_analytic_plans/i18n/it_IT.po +++ b/addons/account_analytic_plans/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/lt_LT.po b/addons/account_analytic_plans/i18n/lt_LT.po index ab46c740b14..4cc0e120ef9 100644 --- a/addons/account_analytic_plans/i18n/lt_LT.po +++ b/addons/account_analytic_plans/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/nl_BE.po b/addons/account_analytic_plans/i18n/nl_BE.po index 1650384fcc9..0b321834b9c 100644 --- a/addons/account_analytic_plans/i18n/nl_BE.po +++ b/addons/account_analytic_plans/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/nl_NL.po b/addons/account_analytic_plans/i18n/nl_NL.po index 567a8ab0473..4c726920a67 100644 --- a/addons/account_analytic_plans/i18n/nl_NL.po +++ b/addons/account_analytic_plans/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/pl_PL.po b/addons/account_analytic_plans/i18n/pl_PL.po index 527e100a293..1ab5ea892c4 100644 --- a/addons/account_analytic_plans/i18n/pl_PL.po +++ b/addons/account_analytic_plans/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/pt_BR.po b/addons/account_analytic_plans/i18n/pt_BR.po index d024ce02149..0807bd0f3c5 100644 --- a/addons/account_analytic_plans/i18n/pt_BR.po +++ b/addons/account_analytic_plans/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/pt_PT.po b/addons/account_analytic_plans/i18n/pt_PT.po index d59921946db..08f2b111468 100644 --- a/addons/account_analytic_plans/i18n/pt_PT.po +++ b/addons/account_analytic_plans/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/ro_RO.po b/addons/account_analytic_plans/i18n/ro_RO.po index 73f97cf8d33..1151d3e9f2d 100644 --- a/addons/account_analytic_plans/i18n/ro_RO.po +++ b/addons/account_analytic_plans/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/ru_RU.po b/addons/account_analytic_plans/i18n/ru_RU.po index 91a7c84719c..ce464534799 100644 --- a/addons/account_analytic_plans/i18n/ru_RU.po +++ b/addons/account_analytic_plans/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/sl_SL.po b/addons/account_analytic_plans/i18n/sl_SL.po index dd099032c4b..02da0e6fc55 100644 --- a/addons/account_analytic_plans/i18n/sl_SL.po +++ b/addons/account_analytic_plans/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/cs_CS.po b/addons/account_analytic_plans/i18n/sq_AL.po similarity index 98% rename from addons/account_analytic_plans/i18n/cs_CS.po rename to addons/account_analytic_plans/i18n/sq_AL.po index fb04b09721f..995db8316cb 100644 --- a/addons/account_analytic_plans/i18n/cs_CS.po +++ b/addons/account_analytic_plans/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/sv_SE.po b/addons/account_analytic_plans/i18n/sv_SE.po index d7010abb632..e9fc300786e 100644 --- a/addons/account_analytic_plans/i18n/sv_SE.po +++ b/addons/account_analytic_plans/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/tr_TR.po b/addons/account_analytic_plans/i18n/tr_TR.po index 92c04221089..042eb15a04a 100644 --- a/addons/account_analytic_plans/i18n/tr_TR.po +++ b/addons/account_analytic_plans/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/uk_UK.po b/addons/account_analytic_plans/i18n/uk_UA.po similarity index 98% rename from addons/account_analytic_plans/i18n/uk_UK.po rename to addons/account_analytic_plans/i18n/uk_UA.po index 5b751e86278..5687c6a67ad 100644 --- a/addons/account_analytic_plans/i18n/uk_UK.po +++ b/addons/account_analytic_plans/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/sv_SV.po b/addons/account_analytic_plans/i18n/vi_VN.po similarity index 97% rename from addons/account_analytic_plans/i18n/sv_SV.po rename to addons/account_analytic_plans/i18n/vi_VN.po index f48077c345c..3f2f3a368f4 100644 --- a/addons/account_analytic_plans/i18n/sv_SV.po +++ b/addons/account_analytic_plans/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: account_analytic_plans #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: account_analytic_plans #: model:ir.actions.report.xml,name:account_analytic_plans.account_analytic_account_crossovered_analytic diff --git a/addons/account_analytic_plans/i18n/zh_CN.po b/addons/account_analytic_plans/i18n/zh_CN.po index b25ec94ae6f..2b8c699b9e0 100644 --- a/addons/account_analytic_plans/i18n/zh_CN.po +++ b/addons/account_analytic_plans/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/zh_TW.po b/addons/account_analytic_plans/i18n/zh_TW.po index e9099919ae0..351c747fe4f 100644 --- a/addons/account_analytic_plans/i18n/zh_TW.po +++ b/addons/account_analytic_plans/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+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 329aaa354a2..9799ce47acb 100644 --- a/addons/account_balance/i18n/account_balance.pot +++ b/addons/account_balance/i18n/account_balance.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/ar_AR.po b/addons/account_balance/i18n/ar_AR.po index 74493d6f051..84612b8034f 100644 --- a/addons/account_balance/i18n/ar_AR.po +++ b/addons/account_balance/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/bg_BG.po b/addons/account_balance/i18n/bg_BG.po index 21fb9c623f3..c2d7f252643 100644 --- a/addons/account_balance/i18n/bg_BG.po +++ b/addons/account_balance/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/bs_BS.po b/addons/account_balance/i18n/bs_BS.po index 345ca75f551..6a6a8ef9a09 100644 --- a/addons/account_balance/i18n/bs_BS.po +++ b/addons/account_balance/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/ca_ES.po b/addons/account_balance/i18n/ca_ES.po index b22127bb267..901242921d7 100644 --- a/addons/account_balance/i18n/ca_ES.po +++ b/addons/account_balance/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/cs_CZ.po b/addons/account_balance/i18n/cs_CZ.po index a2e5aba1c5a..4972784f288 100644 --- a/addons/account_balance/i18n/cs_CZ.po +++ b/addons/account_balance/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/de_DE.po b/addons/account_balance/i18n/de_DE.po index 542cac890d0..cc13adb5f56 100644 --- a/addons/account_balance/i18n/de_DE.po +++ b/addons/account_balance/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/es_AR.po b/addons/account_balance/i18n/es_AR.po index ad790a7f9b0..d718012f474 100644 --- a/addons/account_balance/i18n/es_AR.po +++ b/addons/account_balance/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/es_ES.po b/addons/account_balance/i18n/es_ES.po index 93c94a3a8ef..a03ceb79266 100644 --- a/addons/account_balance/i18n/es_ES.po +++ b/addons/account_balance/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/et_EE.po b/addons/account_balance/i18n/et_EE.po index d557aa76308..d1196a4a952 100644 --- a/addons/account_balance/i18n/et_EE.po +++ b/addons/account_balance/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/fi_FI.po b/addons/account_balance/i18n/fi_FI.po index fb0ca9aca3d..b80838d8a5f 100644 --- a/addons/account_balance/i18n/fi_FI.po +++ b/addons/account_balance/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/fr_FR.po b/addons/account_balance/i18n/fr_FR.po index 1c5109e7df8..26b31401854 100644 --- a/addons/account_balance/i18n/fr_FR.po +++ b/addons/account_balance/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/hr_HR.po b/addons/account_balance/i18n/hr_HR.po index addbf5f1a81..cc4ebf9d8c7 100644 --- a/addons/account_balance/i18n/hr_HR.po +++ b/addons/account_balance/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/hu_HU.po b/addons/account_balance/i18n/hu_HU.po index 27542ebea55..111aa3e587b 100644 --- a/addons/account_balance/i18n/hu_HU.po +++ b/addons/account_balance/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/id_ID.po b/addons/account_balance/i18n/id_ID.po index 8086a904f24..fc5b3a73ae3 100644 --- a/addons/account_balance/i18n/id_ID.po +++ b/addons/account_balance/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/it_IT.po b/addons/account_balance/i18n/it_IT.po index a9c116cf321..8ac54e0dc2a 100644 --- a/addons/account_balance/i18n/it_IT.po +++ b/addons/account_balance/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/lt_LT.po b/addons/account_balance/i18n/lt_LT.po index 36bcee93fa5..dc897c2494a 100644 --- a/addons/account_balance/i18n/lt_LT.po +++ b/addons/account_balance/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/nl_BE.po b/addons/account_balance/i18n/nl_BE.po index 86be18fe1fb..b09edbf19a4 100644 --- a/addons/account_balance/i18n/nl_BE.po +++ b/addons/account_balance/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/nl_NL.po b/addons/account_balance/i18n/nl_NL.po index 32cd5d66e0c..e205624b636 100644 --- a/addons/account_balance/i18n/nl_NL.po +++ b/addons/account_balance/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/pl_PL.po b/addons/account_balance/i18n/pl_PL.po index 36c1d130dd8..9e868c2239e 100644 --- a/addons/account_balance/i18n/pl_PL.po +++ b/addons/account_balance/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/pt_BR.po b/addons/account_balance/i18n/pt_BR.po index c1fa70ecf32..cf046310a2c 100644 --- a/addons/account_balance/i18n/pt_BR.po +++ b/addons/account_balance/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/pt_PT.po b/addons/account_balance/i18n/pt_PT.po index bb39c41aab9..ae21c8b535f 100644 --- a/addons/account_balance/i18n/pt_PT.po +++ b/addons/account_balance/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/ro_RO.po b/addons/account_balance/i18n/ro_RO.po index 702b1dbfb51..3d35b7108bf 100644 --- a/addons/account_balance/i18n/ro_RO.po +++ b/addons/account_balance/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/ru_RU.po b/addons/account_balance/i18n/ru_RU.po index 320146ccc33..52957ab99f1 100644 --- a/addons/account_balance/i18n/ru_RU.po +++ b/addons/account_balance/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/sl_SL.po b/addons/account_balance/i18n/sl_SL.po index 80f6a760478..54891bb4a2a 100644 --- a/addons/account_balance/i18n/sl_SL.po +++ b/addons/account_balance/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/sv_SV.po b/addons/account_balance/i18n/sq_AL.po similarity index 98% rename from addons/account_balance/i18n/sv_SV.po rename to addons/account_balance/i18n/sq_AL.po index cc5bc353faf..087f2549427 100644 --- a/addons/account_balance/i18n/sv_SV.po +++ b/addons/account_balance/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/sv_SE.po b/addons/account_balance/i18n/sv_SE.po index fb79e2a7528..669e14c56d5 100644 --- a/addons/account_balance/i18n/sv_SE.po +++ b/addons/account_balance/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/tr_TR.po b/addons/account_balance/i18n/tr_TR.po index 79aea76392a..5643d234e78 100644 --- a/addons/account_balance/i18n/tr_TR.po +++ b/addons/account_balance/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/uk_UK.po b/addons/account_balance/i18n/uk_UA.po similarity index 98% rename from addons/account_balance/i18n/uk_UK.po rename to addons/account_balance/i18n/uk_UA.po index 1c1a7de83e6..bb5e0366537 100644 --- a/addons/account_balance/i18n/uk_UK.po +++ b/addons/account_balance/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/cs_CS.po b/addons/account_balance/i18n/vi_VN.po similarity index 98% rename from addons/account_balance/i18n/cs_CS.po rename to addons/account_balance/i18n/vi_VN.po index 953370aac08..df0fd861f9d 100644 --- a/addons/account_balance/i18n/cs_CS.po +++ b/addons/account_balance/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/zh_CN.po b/addons/account_balance/i18n/zh_CN.po index 4d7f30ceb3b..bc3eea5078c 100644 --- a/addons/account_balance/i18n/zh_CN.po +++ b/addons/account_balance/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/zh_TW.po b/addons/account_balance/i18n/zh_TW.po index e424b093db3..d3ee0cb5a5f 100644 --- a/addons/account_balance/i18n/zh_TW.po +++ b/addons/account_balance/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+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 45e701eed8e..49f7d46e860 100644 --- a/addons/account_budget/i18n/account_budget.pot +++ b/addons/account_budget/i18n/account_budget.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/ar_AR.po b/addons/account_budget/i18n/ar_AR.po index fbcbbb4cb06..975adda1eda 100644 --- a/addons/account_budget/i18n/ar_AR.po +++ b/addons/account_budget/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/bg_BG.po b/addons/account_budget/i18n/bg_BG.po index 2f9fb25a8d2..4f8a480e5b9 100644 --- a/addons/account_budget/i18n/bg_BG.po +++ b/addons/account_budget/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/bs_BS.po b/addons/account_budget/i18n/bs_BS.po index 573f761b407..e8235863da5 100644 --- a/addons/account_budget/i18n/bs_BS.po +++ b/addons/account_budget/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/ca_ES.po b/addons/account_budget/i18n/ca_ES.po index fbdde611640..f815baebfd1 100644 --- a/addons/account_budget/i18n/ca_ES.po +++ b/addons/account_budget/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/cs_CZ.po b/addons/account_budget/i18n/cs_CZ.po index 45b549d5e2e..12c34fc6f44 100644 --- a/addons/account_budget/i18n/cs_CZ.po +++ b/addons/account_budget/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/de_DE.po b/addons/account_budget/i18n/de_DE.po index 373429374ec..12b5c31bd0a 100644 --- a/addons/account_budget/i18n/de_DE.po +++ b/addons/account_budget/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/es_AR.po b/addons/account_budget/i18n/es_AR.po index e0f175afd30..2843bed1923 100644 --- a/addons/account_budget/i18n/es_AR.po +++ b/addons/account_budget/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/es_ES.po b/addons/account_budget/i18n/es_ES.po index c38107ffc36..34810cc7c7f 100644 --- a/addons/account_budget/i18n/es_ES.po +++ b/addons/account_budget/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/et_EE.po b/addons/account_budget/i18n/et_EE.po index c3489fd8a56..6275d9e272c 100644 --- a/addons/account_budget/i18n/et_EE.po +++ b/addons/account_budget/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/fi_FI.po b/addons/account_budget/i18n/fi_FI.po index 56ed97450ed..45914071084 100644 --- a/addons/account_budget/i18n/fi_FI.po +++ b/addons/account_budget/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/fr_FR.po b/addons/account_budget/i18n/fr_FR.po index 40de4e8db74..cd190aa48f2 100644 --- a/addons/account_budget/i18n/fr_FR.po +++ b/addons/account_budget/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "Positions Budgétaires" #. module: account_budget #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: account_budget #: rml:account.analytic.account.budget:0 diff --git a/addons/account_budget/i18n/hr_HR.po b/addons/account_budget/i18n/hr_HR.po index cedc470983c..aebfa81e6d4 100644 --- a/addons/account_budget/i18n/hr_HR.po +++ b/addons/account_budget/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/hu_HU.po b/addons/account_budget/i18n/hu_HU.po index f51b29cbb5b..1d6502804e9 100644 --- a/addons/account_budget/i18n/hu_HU.po +++ b/addons/account_budget/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/id_ID.po b/addons/account_budget/i18n/id_ID.po index 983e2c94f1a..4126768d983 100644 --- a/addons/account_budget/i18n/id_ID.po +++ b/addons/account_budget/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/it_IT.po b/addons/account_budget/i18n/it_IT.po index 486ff9aaa8d..543fc2a4104 100644 --- a/addons/account_budget/i18n/it_IT.po +++ b/addons/account_budget/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/lt_LT.po b/addons/account_budget/i18n/lt_LT.po index 2cfaf3b80de..6e0c2cda362 100644 --- a/addons/account_budget/i18n/lt_LT.po +++ b/addons/account_budget/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/nl_BE.po b/addons/account_budget/i18n/nl_BE.po index 10f9ff7f40a..8dbf1e86c8e 100644 --- a/addons/account_budget/i18n/nl_BE.po +++ b/addons/account_budget/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/nl_NL.po b/addons/account_budget/i18n/nl_NL.po index c7297510999..aeff6558c1b 100644 --- a/addons/account_budget/i18n/nl_NL.po +++ b/addons/account_budget/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/pl_PL.po b/addons/account_budget/i18n/pl_PL.po index f5951ab6b52..9f4ddc70813 100644 --- a/addons/account_budget/i18n/pl_PL.po +++ b/addons/account_budget/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/pt_BR.po b/addons/account_budget/i18n/pt_BR.po index 179da2e2d10..19ae0dc463e 100644 --- a/addons/account_budget/i18n/pt_BR.po +++ b/addons/account_budget/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/pt_PT.po b/addons/account_budget/i18n/pt_PT.po index 930078e4481..ef647e301d3 100644 --- a/addons/account_budget/i18n/pt_PT.po +++ b/addons/account_budget/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/ro_RO.po b/addons/account_budget/i18n/ro_RO.po index 1e54efe4c88..3aa0edc8a89 100644 --- a/addons/account_budget/i18n/ro_RO.po +++ b/addons/account_budget/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/ru_RU.po b/addons/account_budget/i18n/ru_RU.po index 0ec6805f4f4..8601d9acb03 100644 --- a/addons/account_budget/i18n/ru_RU.po +++ b/addons/account_budget/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/sl_SL.po b/addons/account_budget/i18n/sl_SL.po index 0a1dde2e902..1f328ad4184 100644 --- a/addons/account_budget/i18n/sl_SL.po +++ b/addons/account_budget/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/cs_CS.po b/addons/account_budget/i18n/sq_AL.po similarity index 98% rename from addons/account_budget/i18n/cs_CS.po rename to addons/account_budget/i18n/sq_AL.po index 8f266b08a0a..264a26140dd 100644 --- a/addons/account_budget/i18n/cs_CS.po +++ b/addons/account_budget/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -390,7 +390,7 @@ msgstr "" #. module: account_budget #: wizard_field:account.budget.spread,init,fiscalyear:0 msgid "Fiscal Year" -msgstr "Přestupný rok(Fiscal Year)" +msgstr "" #. module: account_budget #: field:crossovered.budget.lines,analytic_account_id:0 diff --git a/addons/account_budget/i18n/sv_SE.po b/addons/account_budget/i18n/sv_SE.po index 3456c8fc6be..f9cc47f462d 100644 --- a/addons/account_budget/i18n/sv_SE.po +++ b/addons/account_budget/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/tr_TR.po b/addons/account_budget/i18n/tr_TR.po index 71fd7522a7f..4a8596b5b25 100644 --- a/addons/account_budget/i18n/tr_TR.po +++ b/addons/account_budget/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/uk_UK.po b/addons/account_budget/i18n/uk_UA.po similarity index 98% rename from addons/account_budget/i18n/uk_UK.po rename to addons/account_budget/i18n/uk_UA.po index 1293017f88b..516bb864a52 100644 --- a/addons/account_budget/i18n/uk_UK.po +++ b/addons/account_budget/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/sv_SV.po b/addons/account_budget/i18n/vi_VN.po similarity index 97% rename from addons/account_budget/i18n/sv_SV.po rename to addons/account_budget/i18n/vi_VN.po index 907e2e066f1..72bef32067b 100644 --- a/addons/account_budget/i18n/sv_SV.po +++ b/addons/account_budget/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "" #. module: account_budget #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: account_budget #: selection:crossovered.budget,state:0 @@ -264,7 +264,7 @@ msgstr "" #: field:account.budget.post.dotation,name:0 #: field:crossovered.budget,name:0 msgid "Name" -msgstr "Namn" +msgstr "" #. module: account_budget #: model:ir.actions.wizard,name:account_budget.wizard_crossovered_budget_menu_1 @@ -314,7 +314,7 @@ msgstr "" #: model:ir.ui.menu,name:account_budget.menu_action_account_budget_post_tree #: model:ir.ui.menu,name:account_budget.next_id_31 msgid "Budgets" -msgstr "Budgetar" +msgstr "" #. module: account_budget #: selection:crossovered.budget,state:0 @@ -414,7 +414,7 @@ msgstr "" #: view:account.budget.post:0 #: field:account.budget.post,account_ids:0 msgid "Accounts" -msgstr "Konton" +msgstr "" #. module: account_budget #: model:ir.actions.report.xml,name:account_budget.account_budget diff --git a/addons/account_budget/i18n/zh_CN.po b/addons/account_budget/i18n/zh_CN.po index 7f9a83d51e0..36bcd7de4e2 100644 --- a/addons/account_budget/i18n/zh_CN.po +++ b/addons/account_budget/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/zh_TW.po b/addons/account_budget/i18n/zh_TW.po index b36be22f690..9377365af18 100644 --- a/addons/account_budget/i18n/zh_TW.po +++ b/addons/account_budget/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/account_chart.pot b/addons/account_chart/i18n/account_chart.pot index d9584e77c64..e199127b73d 100644 --- a/addons/account_chart/i18n/account_chart.pot +++ b/addons/account_chart/i18n/account_chart.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/ar_AR.po b/addons/account_chart/i18n/ar_AR.po index ed7cc380d21..8ad34ca4559 100644 --- a/addons/account_chart/i18n/ar_AR.po +++ b/addons/account_chart/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/bg_BG.po b/addons/account_chart/i18n/bg_BG.po index e290379363d..4f11443e52f 100644 --- a/addons/account_chart/i18n/bg_BG.po +++ b/addons/account_chart/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/bs_BS.po b/addons/account_chart/i18n/bs_BS.po index 5ef010b4fcb..9814b71a442 100644 --- a/addons/account_chart/i18n/bs_BS.po +++ b/addons/account_chart/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/ca_ES.po b/addons/account_chart/i18n/ca_ES.po index 19b27e759bb..f4faa36917c 100644 --- a/addons/account_chart/i18n/ca_ES.po +++ b/addons/account_chart/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/cs_CZ.po b/addons/account_chart/i18n/cs_CZ.po index c305984f338..82897a67b0b 100644 --- a/addons/account_chart/i18n/cs_CZ.po +++ b/addons/account_chart/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/de_DE.po b/addons/account_chart/i18n/de_DE.po index f7b082dd66c..83cac864c4b 100644 --- a/addons/account_chart/i18n/de_DE.po +++ b/addons/account_chart/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/es_AR.po b/addons/account_chart/i18n/es_AR.po index 8315f1f658c..5e03172c395 100644 --- a/addons/account_chart/i18n/es_AR.po +++ b/addons/account_chart/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/es_ES.po b/addons/account_chart/i18n/es_ES.po index 42dbd886ecb..b3c9c76b5e5 100644 --- a/addons/account_chart/i18n/es_ES.po +++ b/addons/account_chart/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/et_EE.po b/addons/account_chart/i18n/et_EE.po index 80fcd4e2324..aa2edb6d76d 100644 --- a/addons/account_chart/i18n/et_EE.po +++ b/addons/account_chart/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/fi_FI.po b/addons/account_chart/i18n/fi_FI.po index e33938570c8..c8341674a9c 100644 --- a/addons/account_chart/i18n/fi_FI.po +++ b/addons/account_chart/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/fr_FR.po b/addons/account_chart/i18n/fr_FR.po index 21495672de9..23e6c81f554 100644 --- a/addons/account_chart/i18n/fr_FR.po +++ b/addons/account_chart/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/hr_HR.po b/addons/account_chart/i18n/hr_HR.po index e9d67702ef4..cc9ebfb31b3 100644 --- a/addons/account_chart/i18n/hr_HR.po +++ b/addons/account_chart/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/hu_HU.po b/addons/account_chart/i18n/hu_HU.po index 921e39d3086..9f9c0c10bc9 100644 --- a/addons/account_chart/i18n/hu_HU.po +++ b/addons/account_chart/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/id_ID.po b/addons/account_chart/i18n/id_ID.po index 7b70c8d325a..8d46c88a36b 100644 --- a/addons/account_chart/i18n/id_ID.po +++ b/addons/account_chart/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/it_IT.po b/addons/account_chart/i18n/it_IT.po index d2742dca7a8..b2bf9d469d3 100644 --- a/addons/account_chart/i18n/it_IT.po +++ b/addons/account_chart/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/lt_LT.po b/addons/account_chart/i18n/lt_LT.po index f866d17fe1c..15a5a38819c 100644 --- a/addons/account_chart/i18n/lt_LT.po +++ b/addons/account_chart/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/nl_BE.po b/addons/account_chart/i18n/nl_BE.po index 4d9edc80c6a..bca89462101 100644 --- a/addons/account_chart/i18n/nl_BE.po +++ b/addons/account_chart/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/nl_NL.po b/addons/account_chart/i18n/nl_NL.po index 3613806d090..c4d31201ff7 100644 --- a/addons/account_chart/i18n/nl_NL.po +++ b/addons/account_chart/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/pl_PL.po b/addons/account_chart/i18n/pl_PL.po index 8b3c23fa6fd..45df0a0a12e 100644 --- a/addons/account_chart/i18n/pl_PL.po +++ b/addons/account_chart/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/pt_BR.po b/addons/account_chart/i18n/pt_BR.po index bacf5ead61b..5f9f48a5378 100644 --- a/addons/account_chart/i18n/pt_BR.po +++ b/addons/account_chart/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/pt_PT.po b/addons/account_chart/i18n/pt_PT.po index 9f966096a85..e7f681f8870 100644 --- a/addons/account_chart/i18n/pt_PT.po +++ b/addons/account_chart/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/ro_RO.po b/addons/account_chart/i18n/ro_RO.po index 3e7c528ba9b..d978b5b84bd 100644 --- a/addons/account_chart/i18n/ro_RO.po +++ b/addons/account_chart/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/ru_RU.po b/addons/account_chart/i18n/ru_RU.po index 9eb9be05497..f5e23f8a1df 100644 --- a/addons/account_chart/i18n/ru_RU.po +++ b/addons/account_chart/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/sl_SL.po b/addons/account_chart/i18n/sl_SL.po index f060e87cce1..f3d1d539e3e 100644 --- a/addons/account_chart/i18n/sl_SL.po +++ b/addons/account_chart/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/cs_CS.po b/addons/account_chart/i18n/sq_AL.po similarity index 77% rename from addons/account_chart/i18n/cs_CS.po rename to addons/account_chart/i18n/sq_AL.po index f5ef5cea5a2..810f8ba1107 100644 --- a/addons/account_chart/i18n/cs_CS.po +++ b/addons/account_chart/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/sv_SE.po b/addons/account_chart/i18n/sv_SE.po index 22f5a9f9648..027d1c991e3 100644 --- a/addons/account_chart/i18n/sv_SE.po +++ b/addons/account_chart/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/tr_TR.po b/addons/account_chart/i18n/tr_TR.po index 56c5a2c82f1..3684859075a 100644 --- a/addons/account_chart/i18n/tr_TR.po +++ b/addons/account_chart/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/sv_SV.po b/addons/account_chart/i18n/uk_UA.po similarity index 77% rename from addons/account_chart/i18n/sv_SV.po rename to addons/account_chart/i18n/uk_UA.po index b56a57cd1a3..33e5a82619f 100644 --- a/addons/account_chart/i18n/sv_SV.po +++ b/addons/account_chart/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/uk_UK.po b/addons/account_chart/i18n/vi_VN.po similarity index 77% rename from addons/account_chart/i18n/uk_UK.po rename to addons/account_chart/i18n/vi_VN.po index 43d63e9845e..4bfd4203592 100644 --- a/addons/account_chart/i18n/uk_UK.po +++ b/addons/account_chart/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/zh_CN.po b/addons/account_chart/i18n/zh_CN.po index b8b4b5ba64c..2dee2e2d8d0 100644 --- a/addons/account_chart/i18n/zh_CN.po +++ b/addons/account_chart/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_chart/i18n/zh_TW.po b/addons/account_chart/i18n/zh_TW.po index b53e39600af..e80a0792dfd 100644 --- a/addons/account_chart/i18n/zh_TW.po +++ b/addons/account_chart/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+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 f8da00d4cb4..f65384ee1b7 100644 --- a/addons/account_date_check/i18n/account_date_check.pot +++ b/addons/account_date_check/i18n/account_date_check.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/ar_AR.po b/addons/account_date_check/i18n/ar_AR.po index b0dc36d7d3b..d722608f6aa 100644 --- a/addons/account_date_check/i18n/ar_AR.po +++ b/addons/account_date_check/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/bg_BG.po b/addons/account_date_check/i18n/bg_BG.po index 8446db3a1c7..c3e267eb5f4 100644 --- a/addons/account_date_check/i18n/bg_BG.po +++ b/addons/account_date_check/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/bs_BS.po b/addons/account_date_check/i18n/bs_BS.po index c44f53f441f..2b247d16c72 100644 --- a/addons/account_date_check/i18n/bs_BS.po +++ b/addons/account_date_check/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/ca_ES.po b/addons/account_date_check/i18n/ca_ES.po index b5243709997..93c4faf3ab1 100644 --- a/addons/account_date_check/i18n/ca_ES.po +++ b/addons/account_date_check/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/cs_CZ.po b/addons/account_date_check/i18n/cs_CZ.po index 413130f0b44..02b808d1056 100644 --- a/addons/account_date_check/i18n/cs_CZ.po +++ b/addons/account_date_check/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/de_DE.po b/addons/account_date_check/i18n/de_DE.po index 2e99ebd4179..1cafd2e7a7a 100644 --- a/addons/account_date_check/i18n/de_DE.po +++ b/addons/account_date_check/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/es_AR.po b/addons/account_date_check/i18n/es_AR.po index ef38e8e69f8..083827c1cb2 100644 --- a/addons/account_date_check/i18n/es_AR.po +++ b/addons/account_date_check/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/es_ES.po b/addons/account_date_check/i18n/es_ES.po index bcf03f8275e..4ef95d18283 100644 --- a/addons/account_date_check/i18n/es_ES.po +++ b/addons/account_date_check/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/et_EE.po b/addons/account_date_check/i18n/et_EE.po index a094404a768..62f957fcddd 100644 --- a/addons/account_date_check/i18n/et_EE.po +++ b/addons/account_date_check/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/fi_FI.po b/addons/account_date_check/i18n/fi_FI.po index 9b56cf57668..9ac06a36b07 100644 --- a/addons/account_date_check/i18n/fi_FI.po +++ b/addons/account_date_check/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/fr_FR.po b/addons/account_date_check/i18n/fr_FR.po index 8810c70a1f5..c2f2c68d513 100644 --- a/addons/account_date_check/i18n/fr_FR.po +++ b/addons/account_date_check/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/hr_HR.po b/addons/account_date_check/i18n/hr_HR.po index c683ce23258..bda9a62c833 100644 --- a/addons/account_date_check/i18n/hr_HR.po +++ b/addons/account_date_check/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/hu_HU.po b/addons/account_date_check/i18n/hu_HU.po index c0fa243ba4d..d6b49a9873d 100644 --- a/addons/account_date_check/i18n/hu_HU.po +++ b/addons/account_date_check/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/id_ID.po b/addons/account_date_check/i18n/id_ID.po index 2b5636200d5..5daffba53e1 100644 --- a/addons/account_date_check/i18n/id_ID.po +++ b/addons/account_date_check/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/it_IT.po b/addons/account_date_check/i18n/it_IT.po index fabf42775be..704294f2e4f 100644 --- a/addons/account_date_check/i18n/it_IT.po +++ b/addons/account_date_check/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/lt_LT.po b/addons/account_date_check/i18n/lt_LT.po index a45438021be..803925d9941 100644 --- a/addons/account_date_check/i18n/lt_LT.po +++ b/addons/account_date_check/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/nl_BE.po b/addons/account_date_check/i18n/nl_BE.po index 513de0a6d1e..20e5585026e 100644 --- a/addons/account_date_check/i18n/nl_BE.po +++ b/addons/account_date_check/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/nl_NL.po b/addons/account_date_check/i18n/nl_NL.po index 50017f9bad5..4c676aa400f 100644 --- a/addons/account_date_check/i18n/nl_NL.po +++ b/addons/account_date_check/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/pl_PL.po b/addons/account_date_check/i18n/pl_PL.po index 8965cb87a8e..7cfc4e0355a 100644 --- a/addons/account_date_check/i18n/pl_PL.po +++ b/addons/account_date_check/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/pt_BR.po b/addons/account_date_check/i18n/pt_BR.po index 998f7124fb8..7760ba1579f 100644 --- a/addons/account_date_check/i18n/pt_BR.po +++ b/addons/account_date_check/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/pt_PT.po b/addons/account_date_check/i18n/pt_PT.po index 6be2b34b118..09b66d3858e 100644 --- a/addons/account_date_check/i18n/pt_PT.po +++ b/addons/account_date_check/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/ro_RO.po b/addons/account_date_check/i18n/ro_RO.po index 81a650089b0..a7bcf150802 100644 --- a/addons/account_date_check/i18n/ro_RO.po +++ b/addons/account_date_check/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/ru_RU.po b/addons/account_date_check/i18n/ru_RU.po index 3bd839de688..76676b91db0 100644 --- a/addons/account_date_check/i18n/ru_RU.po +++ b/addons/account_date_check/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/sl_SL.po b/addons/account_date_check/i18n/sl_SL.po index a9d575d8885..38c0a24bd3c 100644 --- a/addons/account_date_check/i18n/sl_SL.po +++ b/addons/account_date_check/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/sv_SV.po b/addons/account_date_check/i18n/sq_AL.po similarity index 83% rename from addons/account_date_check/i18n/sv_SV.po rename to addons/account_date_check/i18n/sq_AL.po index e692328f419..606ab4f59ba 100644 --- a/addons/account_date_check/i18n/sv_SV.po +++ b/addons/account_date_check/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/sv_SE.po b/addons/account_date_check/i18n/sv_SE.po index a2bf7ba97ab..8cccbc5b3c2 100644 --- a/addons/account_date_check/i18n/sv_SE.po +++ b/addons/account_date_check/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/tr_TR.po b/addons/account_date_check/i18n/tr_TR.po index 2c9127eea96..6adba32140b 100644 --- a/addons/account_date_check/i18n/tr_TR.po +++ b/addons/account_date_check/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/uk_UK.po b/addons/account_date_check/i18n/uk_UA.po similarity index 85% rename from addons/account_date_check/i18n/uk_UK.po rename to addons/account_date_check/i18n/uk_UA.po index 437d2e7e458..641d86ab537 100644 --- a/addons/account_date_check/i18n/uk_UK.po +++ b/addons/account_date_check/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/cs_CS.po b/addons/account_date_check/i18n/vi_VN.po similarity index 83% rename from addons/account_date_check/i18n/cs_CS.po rename to addons/account_date_check/i18n/vi_VN.po index 35052c9a6a7..c20f7ed4792 100644 --- a/addons/account_date_check/i18n/cs_CS.po +++ b/addons/account_date_check/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/zh_CN.po b/addons/account_date_check/i18n/zh_CN.po index ff9d74954b4..9118f29aa41 100644 --- a/addons/account_date_check/i18n/zh_CN.po +++ b/addons/account_date_check/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/zh_TW.po b/addons/account_date_check/i18n/zh_TW.po index 7daa2f7739b..5570c779db2 100644 --- a/addons/account_date_check/i18n/zh_TW.po +++ b/addons/account_date_check/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+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 bf2a43045e1..d986d5f5a05 100644 --- a/addons/account_followup/i18n/account_followup.pot +++ b/addons/account_followup/i18n/account_followup.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/ar_AR.po b/addons/account_followup/i18n/ar_AR.po index 149e08e7670..36a561bfb64 100644 --- a/addons/account_followup/i18n/ar_AR.po +++ b/addons/account_followup/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/bg_BG.po b/addons/account_followup/i18n/bg_BG.po index 1a584d74e20..f6b18a0bdb4 100644 --- a/addons/account_followup/i18n/bg_BG.po +++ b/addons/account_followup/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/bs_BS.po b/addons/account_followup/i18n/bs_BS.po index 44fc9f08de4..98406263095 100644 --- a/addons/account_followup/i18n/bs_BS.po +++ b/addons/account_followup/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/ca_ES.po b/addons/account_followup/i18n/ca_ES.po index b5ddf81aeb7..6e7965f9df8 100644 --- a/addons/account_followup/i18n/ca_ES.po +++ b/addons/account_followup/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/cs_CZ.po b/addons/account_followup/i18n/cs_CZ.po index 179bd4833b6..262181ce81b 100644 --- a/addons/account_followup/i18n/cs_CZ.po +++ b/addons/account_followup/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/de_DE.po b/addons/account_followup/i18n/de_DE.po index 6d60f53993b..fd7fd8097c5 100644 --- a/addons/account_followup/i18n/de_DE.po +++ b/addons/account_followup/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/es_AR.po b/addons/account_followup/i18n/es_AR.po index b0e59dea385..08b2536ad5c 100644 --- a/addons/account_followup/i18n/es_AR.po +++ b/addons/account_followup/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/es_ES.po b/addons/account_followup/i18n/es_ES.po index 3f3f935a7ad..98e5c651701 100644 --- a/addons/account_followup/i18n/es_ES.po +++ b/addons/account_followup/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/et_EE.po b/addons/account_followup/i18n/et_EE.po index 7350dd0095a..0771d7d2088 100644 --- a/addons/account_followup/i18n/et_EE.po +++ b/addons/account_followup/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/fi_FI.po b/addons/account_followup/i18n/fi_FI.po index abf1d6c68fe..bd5b9b739b3 100644 --- a/addons/account_followup/i18n/fi_FI.po +++ b/addons/account_followup/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/fr_FR.po b/addons/account_followup/i18n/fr_FR.po index 8e0e81d1bcc..d6d900691d2 100644 --- a/addons/account_followup/i18n/fr_FR.po +++ b/addons/account_followup/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "Toutes les entrées payables" #. module: account_followup #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: account_followup #: field:account_followup.followup.line,description:0 diff --git a/addons/account_followup/i18n/hr_HR.po b/addons/account_followup/i18n/hr_HR.po index 988d5cb9958..af06baa8a5f 100644 --- a/addons/account_followup/i18n/hr_HR.po +++ b/addons/account_followup/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/hu_HU.po b/addons/account_followup/i18n/hu_HU.po index d854177ad02..8002099bb98 100644 --- a/addons/account_followup/i18n/hu_HU.po +++ b/addons/account_followup/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/id_ID.po b/addons/account_followup/i18n/id_ID.po index d91494247e5..ec9daf6f4a8 100644 --- a/addons/account_followup/i18n/id_ID.po +++ b/addons/account_followup/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/it_IT.po b/addons/account_followup/i18n/it_IT.po index d201df1d75d..a952f1e864e 100644 --- a/addons/account_followup/i18n/it_IT.po +++ b/addons/account_followup/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/lt_LT.po b/addons/account_followup/i18n/lt_LT.po index 24bb5e9d048..e33b920d5b4 100644 --- a/addons/account_followup/i18n/lt_LT.po +++ b/addons/account_followup/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/nl_BE.po b/addons/account_followup/i18n/nl_BE.po index c07f5697650..63ad40fb6a5 100644 --- a/addons/account_followup/i18n/nl_BE.po +++ b/addons/account_followup/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/nl_NL.po b/addons/account_followup/i18n/nl_NL.po index f6fc95ce19f..ad57852105b 100644 --- a/addons/account_followup/i18n/nl_NL.po +++ b/addons/account_followup/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/pl_PL.po b/addons/account_followup/i18n/pl_PL.po index b28bf01b6b6..56326890d7a 100644 --- a/addons/account_followup/i18n/pl_PL.po +++ b/addons/account_followup/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po index 606bd765b58..2187be13094 100644 --- a/addons/account_followup/i18n/pt_BR.po +++ b/addons/account_followup/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/pt_PT.po b/addons/account_followup/i18n/pt_PT.po index 9a7d2be3503..09be97ac6e2 100644 --- a/addons/account_followup/i18n/pt_PT.po +++ b/addons/account_followup/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/ro_RO.po b/addons/account_followup/i18n/ro_RO.po index 175dc5fdcb4..ac497a580fd 100644 --- a/addons/account_followup/i18n/ro_RO.po +++ b/addons/account_followup/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/ru_RU.po b/addons/account_followup/i18n/ru_RU.po index 4561618f764..1f4cc1b1315 100644 --- a/addons/account_followup/i18n/ru_RU.po +++ b/addons/account_followup/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/sl_SL.po b/addons/account_followup/i18n/sl_SL.po index 58d9db55db9..5180d23d94f 100644 --- a/addons/account_followup/i18n/sl_SL.po +++ b/addons/account_followup/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/cs_CS.po b/addons/account_followup/i18n/sq_AL.po similarity index 98% rename from addons/account_followup/i18n/cs_CS.po rename to addons/account_followup/i18n/sq_AL.po index 8318d719e4b..0ab1cf39673 100644 --- a/addons/account_followup/i18n/cs_CS.po +++ b/addons/account_followup/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/sv_SE.po b/addons/account_followup/i18n/sv_SE.po index deea0931535..8820ee3a84a 100644 --- a/addons/account_followup/i18n/sv_SE.po +++ b/addons/account_followup/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/tr_TR.po b/addons/account_followup/i18n/tr_TR.po index 4b37c39b76e..70f69aab24c 100644 --- a/addons/account_followup/i18n/tr_TR.po +++ b/addons/account_followup/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/uk_UK.po b/addons/account_followup/i18n/uk_UA.po similarity index 99% rename from addons/account_followup/i18n/uk_UK.po rename to addons/account_followup/i18n/uk_UA.po index 3ada3d5f6c3..5c7cf09c706 100644 --- a/addons/account_followup/i18n/uk_UK.po +++ b/addons/account_followup/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/sv_SV.po b/addons/account_followup/i18n/vi_VN.po similarity index 98% rename from addons/account_followup/i18n/sv_SV.po rename to addons/account_followup/i18n/vi_VN.po index 6882b2e4b9e..c43654fe946 100644 --- a/addons/account_followup/i18n/sv_SV.po +++ b/addons/account_followup/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -228,7 +228,7 @@ msgstr "" #. module: account_followup #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: account_followup #: wizard_button:account_followup.followup.print.all,summary,end:0 diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po index d4959e7669f..45300447cd4 100644 --- a/addons/account_followup/i18n/zh_CN.po +++ b/addons/account_followup/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/zh_TW.po b/addons/account_followup/i18n/zh_TW.po index 48e1ced89c8..05bd221fd3c 100644 --- a/addons/account_followup/i18n/zh_TW.po +++ b/addons/account_followup/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_invoice_layout/i18n/account_invoice_layout.pot b/addons/account_invoice_layout/i18n/account_invoice_layout.pot index 1395df39a7a..ce1b0bfc303 100644 --- a/addons/account_invoice_layout/i18n/account_invoice_layout.pot +++ b/addons/account_invoice_layout/i18n/account_invoice_layout.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/ar_AR.po b/addons/account_invoice_layout/i18n/ar_AR.po index 9b3b7a76032..de9c74a4dc1 100644 --- a/addons/account_invoice_layout/i18n/ar_AR.po +++ b/addons/account_invoice_layout/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/bg_BG.po b/addons/account_invoice_layout/i18n/bg_BG.po index d89954a01f9..c978435b3a5 100644 --- a/addons/account_invoice_layout/i18n/bg_BG.po +++ b/addons/account_invoice_layout/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Дата на фактура:" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Заглавие" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,8 +128,8 @@ msgstr "Цена" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Прекратена фактура" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/bs_BS.po b/addons/account_invoice_layout/i18n/bs_BS.po index 1d51f0c4e6d..3cb3327dbe6 100644 --- a/addons/account_invoice_layout/i18n/bs_BS.po +++ b/addons/account_invoice_layout/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/ca_ES.po b/addons/account_invoice_layout/i18n/ca_ES.po index 2b4c557e66d..3f7657c6c5e 100644 --- a/addons/account_invoice_layout/i18n/ca_ES.po +++ b/addons/account_invoice_layout/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Data factura:" msgid "The Object name must start with x_ and not contain any special character !" msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Títol" msgid "Invoices with Layout and Message" msgstr "Factures amb plantilla i missatge" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,8 +128,8 @@ msgstr "Preu" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Factura cancel·lada" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/cs_CZ.po b/addons/account_invoice_layout/i18n/cs_CZ.po index bd9c4240e72..0c710f7a1ce 100644 --- a/addons/account_invoice_layout/i18n/cs_CZ.po +++ b/addons/account_invoice_layout/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/de_DE.po b/addons/account_invoice_layout/i18n/de_DE.po index a432a92192c..6694a3e125d 100644 --- a/addons/account_invoice_layout/i18n/de_DE.po +++ b/addons/account_invoice_layout/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Rechnungsdatum:" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Titel" msgid "Invoices with Layout and Message" msgstr "Rechungen mit Layout und Nachricht" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,8 +128,8 @@ msgstr "Preis" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Abgebrochene Rechnung" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/es_AR.po b/addons/account_invoice_layout/i18n/es_AR.po index 64fa8cac5ef..89ba04d4058 100644 --- a/addons/account_invoice_layout/i18n/es_AR.po +++ b/addons/account_invoice_layout/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/es_ES.po b/addons/account_invoice_layout/i18n/es_ES.po index 04c7ed7ec17..7ea7d72a3de 100644 --- a/addons/account_invoice_layout/i18n/es_ES.po +++ b/addons/account_invoice_layout/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Fecha factura:" msgid "The Object name must start with x_ and not contain any special character !" msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Título" msgid "Invoices with Layout and Message" msgstr "Facturas con plantilla y mensaje" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,8 +128,8 @@ msgstr "Precio" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Factura cancelada" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/et_EE.po b/addons/account_invoice_layout/i18n/et_EE.po index 5d4b630bddf..49e05b8cb92 100644 --- a/addons/account_invoice_layout/i18n/et_EE.po +++ b/addons/account_invoice_layout/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Arve kuupäev:" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Pealkiri" msgid "Invoices with Layout and Message" msgstr "Arved kujunduse ja teatega" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,8 +128,8 @@ msgstr "Hind" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Tühistatud arve" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/fi_FI.po b/addons/account_invoice_layout/i18n/fi_FI.po index 1415a4f8037..d870a58c957 100644 --- a/addons/account_invoice_layout/i18n/fi_FI.po +++ b/addons/account_invoice_layout/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/fr_FR.po b/addons/account_invoice_layout/i18n/fr_FR.po index 888f48c0e47..00540e2a2cc 100644 --- a/addons/account_invoice_layout/i18n/fr_FR.po +++ b/addons/account_invoice_layout/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Date de Facture :" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Titre" msgid "Invoices with Layout and Message" msgstr "Factures avec mise en page et Message" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -79,7 +79,7 @@ msgstr "Prix unitaire" #. module: account_invoice_layout #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: account_invoice_layout #: model:ir.model,name:account_invoice_layout.model_notify_message @@ -128,8 +128,8 @@ msgstr "Prix" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Facture annulée" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/hr_HR.po b/addons/account_invoice_layout/i18n/hr_HR.po index 73e539c103f..85d82696d44 100644 --- a/addons/account_invoice_layout/i18n/hr_HR.po +++ b/addons/account_invoice_layout/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/hu_HU.po b/addons/account_invoice_layout/i18n/hu_HU.po index 8368d7cb356..dff65726716 100644 --- a/addons/account_invoice_layout/i18n/hu_HU.po +++ b/addons/account_invoice_layout/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/id_ID.po b/addons/account_invoice_layout/i18n/id_ID.po index f3aa9a977cf..65deb42cbf0 100644 --- a/addons/account_invoice_layout/i18n/id_ID.po +++ b/addons/account_invoice_layout/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Tanggal Invoice:" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Judul" msgid "Invoices with Layout and Message" msgstr "Invoice dengan layout dan catatan" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,8 +128,8 @@ msgstr "Harga" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Invoice Batal" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/it_IT.po b/addons/account_invoice_layout/i18n/it_IT.po index f284ce858b2..7a5645cb9ed 100644 --- a/addons/account_invoice_layout/i18n/it_IT.po +++ b/addons/account_invoice_layout/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Data Fattura:" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Titolo" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,8 +128,8 @@ msgstr "Prezzo" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Fattura Annullata" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/iu_IU.po b/addons/account_invoice_layout/i18n/iu_IU.po index 92717189031..d30746d7d63 100644 --- a/addons/account_invoice_layout/i18n/iu_IU.po +++ b/addons/account_invoice_layout/i18n/iu_IU.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:08+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/lt_LT.po b/addons/account_invoice_layout/i18n/lt_LT.po index 74342aca0e3..8a0a7d7a024 100644 --- a/addons/account_invoice_layout/i18n/lt_LT.po +++ b/addons/account_invoice_layout/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/nb_NB.po b/addons/account_invoice_layout/i18n/nb_NB.po index 8ceab599693..72d4b74caa6 100644 --- a/addons/account_invoice_layout/i18n/nb_NB.po +++ b/addons/account_invoice_layout/i18n/nb_NB.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:08+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/nl_BE.po b/addons/account_invoice_layout/i18n/nl_BE.po index 959701ab101..7ee71cbaee1 100644 --- a/addons/account_invoice_layout/i18n/nl_BE.po +++ b/addons/account_invoice_layout/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/nl_NL.po b/addons/account_invoice_layout/i18n/nl_NL.po index af06279685a..ab9564500e1 100644 --- a/addons/account_invoice_layout/i18n/nl_NL.po +++ b/addons/account_invoice_layout/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Factuurdatum:" msgid "The Object name must start with x_ and not contain any special character !" msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Titel" msgid "Invoices with Layout and Message" msgstr "Facturen met layout en bericht" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,8 +128,8 @@ msgstr "Prijs" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Geannuleerde factuur" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/pl_PL.po b/addons/account_invoice_layout/i18n/pl_PL.po index afbfadf447c..e4878920b11 100644 --- a/addons/account_invoice_layout/i18n/pl_PL.po +++ b/addons/account_invoice_layout/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Tytuł" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "Cena" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/pt_BR.po b/addons/account_invoice_layout/i18n/pt_BR.po index 69808e1e5b5..874e6f71390 100644 --- a/addons/account_invoice_layout/i18n/pt_BR.po +++ b/addons/account_invoice_layout/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/pt_PT.po b/addons/account_invoice_layout/i18n/pt_PT.po index 03c539f23d8..b2bcbbcc96a 100644 --- a/addons/account_invoice_layout/i18n/pt_PT.po +++ b/addons/account_invoice_layout/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Data da factura:" msgid "The Object name must start with x_ and not contain any special character !" msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Título" msgid "Invoices with Layout and Message" msgstr "Facturas com disposição e mensagem" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,8 +128,8 @@ msgstr "Preço" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Facturas canceladas" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/ro_RO.po b/addons/account_invoice_layout/i18n/ro_RO.po index 02cba6b162c..303f18dca99 100644 --- a/addons/account_invoice_layout/i18n/ro_RO.po +++ b/addons/account_invoice_layout/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/ru_RU.po b/addons/account_invoice_layout/i18n/ru_RU.po index 7ca833806bd..f0e13afc79d 100644 --- a/addons/account_invoice_layout/i18n/ru_RU.po +++ b/addons/account_invoice_layout/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Дата счета:" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "Название" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,8 +128,8 @@ msgstr "Цена" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Отмененный счет" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/sl_SL.po b/addons/account_invoice_layout/i18n/sl_SL.po index b659c48630c..7fe86564edd 100644 --- a/addons/account_invoice_layout/i18n/sl_SL.po +++ b/addons/account_invoice_layout/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/cs_CS.po b/addons/account_invoice_layout/i18n/sq_AL.po similarity index 97% rename from addons/account_invoice_layout/i18n/cs_CS.po rename to addons/account_invoice_layout/i18n/sq_AL.po index a1282082d97..2a431ec4a98 100644 --- a/addons/account_invoice_layout/i18n/cs_CS.po +++ b/addons/account_invoice_layout/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/sv_SE.po b/addons/account_invoice_layout/i18n/sv_SE.po index 764ff36f079..e6c884e6575 100644 --- a/addons/account_invoice_layout/i18n/sv_SE.po +++ b/addons/account_invoice_layout/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/tr_TR.po b/addons/account_invoice_layout/i18n/tr_TR.po index f242ea8193f..74b41530036 100644 --- a/addons/account_invoice_layout/i18n/tr_TR.po +++ b/addons/account_invoice_layout/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/uk_UK.po b/addons/account_invoice_layout/i18n/uk_UA.po similarity index 97% rename from addons/account_invoice_layout/i18n/uk_UK.po rename to addons/account_invoice_layout/i18n/uk_UA.po index 0eb659dab8c..b9fb3feb07d 100644 --- a/addons/account_invoice_layout/i18n/uk_UK.po +++ b/addons/account_invoice_layout/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "Дата інвойса:" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,8 +128,8 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "Скасований інвойс" +msgid "/ (" +msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 diff --git a/addons/account_invoice_layout/i18n/sv_SV.po b/addons/account_invoice_layout/i18n/vi_VN.po similarity index 96% rename from addons/account_invoice_layout/i18n/sv_SV.po rename to addons/account_invoice_layout/i18n/vi_VN.po index 3601e3a0e41..a114ab5778f 100644 --- a/addons/account_invoice_layout/i18n/sv_SV.po +++ b/addons/account_invoice_layout/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -28,7 +28,12 @@ msgstr "" #. module: account_invoice_layout #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" + +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" #. module: account_invoice_layout #: selection:account.invoice.line,state:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/zh_CN.po b/addons/account_invoice_layout/i18n/zh_CN.po index c4198fa69c4..81670f4f15c 100644 --- a/addons/account_invoice_layout/i18n/zh_CN.po +++ b/addons/account_invoice_layout/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_invoice_layout/i18n/zh_TW.po b/addons/account_invoice_layout/i18n/zh_TW.po index 5fc1b5d18a9..5511ab7be81 100644 --- a/addons/account_invoice_layout/i18n/zh_TW.po +++ b/addons/account_invoice_layout/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,6 +30,11 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: account_invoice_layout +#: rml:account.invoice.layout:0 +msgid "Cancelled Invoice" +msgstr "" + #. module: account_invoice_layout #: selection:account.invoice.line,state:0 #: field:notify.message,name:0 @@ -41,11 +46,6 @@ msgstr "" msgid "Invoices with Layout and Message" msgstr "" -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "/ (" -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -128,7 +128,7 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -msgid "Canceled Invoice" +msgid "/ (" msgstr "" #. module: account_invoice_layout diff --git a/addons/account_payment/i18n/account_payment.pot b/addons/account_payment/i18n/account_payment.pot index 89eabef3b26..5b3edc5203d 100644 --- a/addons/account_payment/i18n/account_payment.pot +++ b/addons/account_payment/i18n/account_payment.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/ar_AR.po b/addons/account_payment/i18n/ar_AR.po index cb5d6b0f3f6..04533fdf8da 100644 --- a/addons/account_payment/i18n/ar_AR.po +++ b/addons/account_payment/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/bg_BG.po b/addons/account_payment/i18n/bg_BG.po index 18580fd5b2d..a32f4669890 100644 --- a/addons/account_payment/i18n/bg_BG.po +++ b/addons/account_payment/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/bs_BS.po b/addons/account_payment/i18n/bs_BS.po index 68d88f9f099..23568e34015 100644 --- a/addons/account_payment/i18n/bs_BS.po +++ b/addons/account_payment/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/ca_ES.po b/addons/account_payment/i18n/ca_ES.po index 9535740c0fd..22e3d539fdb 100644 --- a/addons/account_payment/i18n/ca_ES.po +++ b/addons/account_payment/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/cs_CZ.po b/addons/account_payment/i18n/cs_CZ.po index b1f22c480a6..a8ca93d9414 100644 --- a/addons/account_payment/i18n/cs_CZ.po +++ b/addons/account_payment/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/de_DE.po b/addons/account_payment/i18n/de_DE.po index 61eabf93869..8b685d804b7 100644 --- a/addons/account_payment/i18n/de_DE.po +++ b/addons/account_payment/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/es_AR.po b/addons/account_payment/i18n/es_AR.po index 3652336030d..48d184a6671 100644 --- a/addons/account_payment/i18n/es_AR.po +++ b/addons/account_payment/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/es_ES.po b/addons/account_payment/i18n/es_ES.po index 42f384489b8..1d718bdf075 100644 --- a/addons/account_payment/i18n/es_ES.po +++ b/addons/account_payment/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/et_EE.po b/addons/account_payment/i18n/et_EE.po index 5aa2854be1b..5b95311f673 100644 --- a/addons/account_payment/i18n/et_EE.po +++ b/addons/account_payment/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/fi_FI.po b/addons/account_payment/i18n/fi_FI.po index 83420ccbddf..2e7de922dc9 100644 --- a/addons/account_payment/i18n/fi_FI.po +++ b/addons/account_payment/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/fr_FR.po b/addons/account_payment/i18n/fr_FR.po index 129ba8b8320..c0c88af06a4 100644 --- a/addons/account_payment/i18n/fr_FR.po +++ b/addons/account_payment/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "Sélectionnez le mode de paiement à appliquer" #. module: account_payment #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: account_payment #: view:payment.line:0 diff --git a/addons/account_payment/i18n/hr_HR.po b/addons/account_payment/i18n/hr_HR.po index 021986cf820..68d15b1fb28 100644 --- a/addons/account_payment/i18n/hr_HR.po +++ b/addons/account_payment/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/hu_HU.po b/addons/account_payment/i18n/hu_HU.po index 909d03f01b2..3c2200b48da 100644 --- a/addons/account_payment/i18n/hu_HU.po +++ b/addons/account_payment/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/id_ID.po b/addons/account_payment/i18n/id_ID.po index bf5018f42b1..0eac4ff9640 100644 --- a/addons/account_payment/i18n/id_ID.po +++ b/addons/account_payment/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/it_IT.po b/addons/account_payment/i18n/it_IT.po index 506c02ac622..be2cdbd3138 100644 --- a/addons/account_payment/i18n/it_IT.po +++ b/addons/account_payment/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/lt_LT.po b/addons/account_payment/i18n/lt_LT.po index 6317676fd56..7bf68d98db6 100644 --- a/addons/account_payment/i18n/lt_LT.po +++ b/addons/account_payment/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po index 8bc82b826a7..0fb1149e1c6 100644 --- a/addons/account_payment/i18n/nl_BE.po +++ b/addons/account_payment/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/nl_NL.po b/addons/account_payment/i18n/nl_NL.po index 534c9256b2b..bde3720d866 100644 --- a/addons/account_payment/i18n/nl_NL.po +++ b/addons/account_payment/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/pl_PL.po b/addons/account_payment/i18n/pl_PL.po index 0f31e9b9d43..cfbcfba3431 100644 --- a/addons/account_payment/i18n/pl_PL.po +++ b/addons/account_payment/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/pt_BR.po b/addons/account_payment/i18n/pt_BR.po index ac17e6fd901..fa3edd9adb9 100644 --- a/addons/account_payment/i18n/pt_BR.po +++ b/addons/account_payment/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/pt_PT.po b/addons/account_payment/i18n/pt_PT.po index f84fd368c35..c24da3fa771 100644 --- a/addons/account_payment/i18n/pt_PT.po +++ b/addons/account_payment/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/ro_RO.po b/addons/account_payment/i18n/ro_RO.po index 5509fbf34f1..6cba681815b 100644 --- a/addons/account_payment/i18n/ro_RO.po +++ b/addons/account_payment/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/ru_RU.po b/addons/account_payment/i18n/ru_RU.po index faac389be84..5e0c5c9bcee 100644 --- a/addons/account_payment/i18n/ru_RU.po +++ b/addons/account_payment/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/sl_SL.po b/addons/account_payment/i18n/sl_SL.po index b09a9a6cc0d..2dfb3126332 100644 --- a/addons/account_payment/i18n/sl_SL.po +++ b/addons/account_payment/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/cs_CS.po b/addons/account_payment/i18n/sq_AL.po similarity index 98% rename from addons/account_payment/i18n/cs_CS.po rename to addons/account_payment/i18n/sq_AL.po index 0161964edb6..3c8668b48d7 100644 --- a/addons/account_payment/i18n/cs_CS.po +++ b/addons/account_payment/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/sv_SE.po b/addons/account_payment/i18n/sv_SE.po index 9741ab6f368..244ff5ddfd0 100644 --- a/addons/account_payment/i18n/sv_SE.po +++ b/addons/account_payment/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/tr_TR.po b/addons/account_payment/i18n/tr_TR.po index 8198d848916..d1e041b71e1 100644 --- a/addons/account_payment/i18n/tr_TR.po +++ b/addons/account_payment/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/uk_UK.po b/addons/account_payment/i18n/uk_UA.po similarity index 98% rename from addons/account_payment/i18n/uk_UK.po rename to addons/account_payment/i18n/uk_UA.po index 10ab915b36f..34ed2b39304 100644 --- a/addons/account_payment/i18n/uk_UK.po +++ b/addons/account_payment/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/sv_SV.po b/addons/account_payment/i18n/vi_VN.po similarity index 98% rename from addons/account_payment/i18n/sv_SV.po rename to addons/account_payment/i18n/vi_VN.po index 14ecce8a373..901d5c8e485 100644 --- a/addons/account_payment/i18n/sv_SV.po +++ b/addons/account_payment/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -449,7 +449,7 @@ msgstr "" #. module: account_payment #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: account_payment #: model:ir.actions.wizard,name:account_payment.wizard_pay_payment diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po index 568a0706db5..a091a0dcdbc 100644 --- a/addons/account_payment/i18n/zh_CN.po +++ b/addons/account_payment/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_payment/i18n/zh_TW.po b/addons/account_payment/i18n/zh_TW.po index d9f4191a113..4028f2508c3 100644 --- a/addons/account_payment/i18n/zh_TW.po +++ b/addons/account_payment/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/account_report.pot b/addons/account_report/i18n/account_report.pot index 92ed4e5fd5e..2b80d8bd085 100644 --- a/addons/account_report/i18n/account_report.pot +++ b/addons/account_report/i18n/account_report.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/ar_AR.po b/addons/account_report/i18n/ar_AR.po index 4bfb3b00635..7fdb456dc2d 100644 --- a/addons/account_report/i18n/ar_AR.po +++ b/addons/account_report/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/bg_BG.po b/addons/account_report/i18n/bg_BG.po index da1d179fe01..b6f0b174dad 100644 --- a/addons/account_report/i18n/bg_BG.po +++ b/addons/account_report/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/bs_BS.po b/addons/account_report/i18n/bs_BS.po index 7f6a2f50e84..e17ab069f27 100644 --- a/addons/account_report/i18n/bs_BS.po +++ b/addons/account_report/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/ca_ES.po b/addons/account_report/i18n/ca_ES.po index 5fd261f1558..5b7d34f0dc5 100644 --- a/addons/account_report/i18n/ca_ES.po +++ b/addons/account_report/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/cs_CZ.po b/addons/account_report/i18n/cs_CZ.po index 4f7e6647b8c..91d30f32de3 100644 --- a/addons/account_report/i18n/cs_CZ.po +++ b/addons/account_report/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/de_DE.po b/addons/account_report/i18n/de_DE.po index 9bad6312f2a..d68968c9fb9 100644 --- a/addons/account_report/i18n/de_DE.po +++ b/addons/account_report/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/es_AR.po b/addons/account_report/i18n/es_AR.po index 5bac995b852..50f8714be30 100644 --- a/addons/account_report/i18n/es_AR.po +++ b/addons/account_report/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/es_ES.po b/addons/account_report/i18n/es_ES.po index 541ab4270c1..8ea42b2d896 100644 --- a/addons/account_report/i18n/es_ES.po +++ b/addons/account_report/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/et_EE.po b/addons/account_report/i18n/et_EE.po index 3681e7d01a7..7bfde866cd8 100644 --- a/addons/account_report/i18n/et_EE.po +++ b/addons/account_report/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/fi_FI.po b/addons/account_report/i18n/fi_FI.po index bdf324a0c8e..fe619e0c8b1 100644 --- a/addons/account_report/i18n/fi_FI.po +++ b/addons/account_report/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/fr_FR.po b/addons/account_report/i18n/fr_FR.po index 7ba32e202ea..13899fd8ee7 100644 --- a/addons/account_report/i18n/fr_FR.po +++ b/addons/account_report/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "Sélectionnez un fichier PDF" #. module: account_report #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: account_report #: view:account.report.report:0 diff --git a/addons/account_report/i18n/hr_HR.po b/addons/account_report/i18n/hr_HR.po index 888abddb42b..f9472de7012 100644 --- a/addons/account_report/i18n/hr_HR.po +++ b/addons/account_report/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/hu_HU.po b/addons/account_report/i18n/hu_HU.po index 4c5975da293..8bc92f7c045 100644 --- a/addons/account_report/i18n/hu_HU.po +++ b/addons/account_report/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/id_ID.po b/addons/account_report/i18n/id_ID.po index 373902a98a1..ced4245c8b4 100644 --- a/addons/account_report/i18n/id_ID.po +++ b/addons/account_report/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/it_IT.po b/addons/account_report/i18n/it_IT.po index a180b73f7b2..0b663d82c2b 100644 --- a/addons/account_report/i18n/it_IT.po +++ b/addons/account_report/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/lt_LT.po b/addons/account_report/i18n/lt_LT.po index 419edead994..58212b6ef28 100644 --- a/addons/account_report/i18n/lt_LT.po +++ b/addons/account_report/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/nl_BE.po b/addons/account_report/i18n/nl_BE.po index 0152f275c5a..30025d3495f 100644 --- a/addons/account_report/i18n/nl_BE.po +++ b/addons/account_report/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/nl_NL.po b/addons/account_report/i18n/nl_NL.po index 9204ff6710e..21cd7d1aed9 100644 --- a/addons/account_report/i18n/nl_NL.po +++ b/addons/account_report/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/pl_PL.po b/addons/account_report/i18n/pl_PL.po index 0094ecd6efd..c458ce62010 100644 --- a/addons/account_report/i18n/pl_PL.po +++ b/addons/account_report/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/pt_BR.po b/addons/account_report/i18n/pt_BR.po index e429f5db782..d035e9c7ea0 100644 --- a/addons/account_report/i18n/pt_BR.po +++ b/addons/account_report/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/pt_PT.po b/addons/account_report/i18n/pt_PT.po index b63f5da792f..c04daab92cb 100644 --- a/addons/account_report/i18n/pt_PT.po +++ b/addons/account_report/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/ro_RO.po b/addons/account_report/i18n/ro_RO.po index cf92bb048a1..a280268c2b1 100644 --- a/addons/account_report/i18n/ro_RO.po +++ b/addons/account_report/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/ru_RU.po b/addons/account_report/i18n/ru_RU.po index a1ed85747f2..2bf992d4357 100644 --- a/addons/account_report/i18n/ru_RU.po +++ b/addons/account_report/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/sl_SL.po b/addons/account_report/i18n/sl_SL.po index f123ff49e8b..b57600d243e 100644 --- a/addons/account_report/i18n/sl_SL.po +++ b/addons/account_report/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/cs_CS.po b/addons/account_report/i18n/sq_AL.po similarity index 98% rename from addons/account_report/i18n/cs_CS.po rename to addons/account_report/i18n/sq_AL.po index 33c29c14e48..22ec3f24117 100644 --- a/addons/account_report/i18n/cs_CS.po +++ b/addons/account_report/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/sv_SE.po b/addons/account_report/i18n/sv_SE.po index ec1b5d4016c..618d30320e1 100644 --- a/addons/account_report/i18n/sv_SE.po +++ b/addons/account_report/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/tr_TR.po b/addons/account_report/i18n/tr_TR.po index 9ea54986430..942cd0f1d78 100644 --- a/addons/account_report/i18n/tr_TR.po +++ b/addons/account_report/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/uk_UK.po b/addons/account_report/i18n/uk_UA.po similarity index 98% rename from addons/account_report/i18n/uk_UK.po rename to addons/account_report/i18n/uk_UA.po index 8a8c03d5ecc..70ab9ea4539 100644 --- a/addons/account_report/i18n/uk_UK.po +++ b/addons/account_report/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/sv_SV.po b/addons/account_report/i18n/vi_VN.po similarity index 98% rename from addons/account_report/i18n/sv_SV.po rename to addons/account_report/i18n/vi_VN.po index 93697fd5eb7..742a44275ac 100644 --- a/addons/account_report/i18n/sv_SV.po +++ b/addons/account_report/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -345,7 +345,7 @@ msgstr "" #. module: account_report #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: account_report #: help:account.report.report,goodness_limit:0 diff --git a/addons/account_report/i18n/zh_CN.po b/addons/account_report/i18n/zh_CN.po index d33553d106f..18ba2a1d28c 100644 --- a/addons/account_report/i18n/zh_CN.po +++ b/addons/account_report/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_report/i18n/zh_TW.po b/addons/account_report/i18n/zh_TW.po index c1f7eb1ed17..b3a861f5eac 100644 --- a/addons/account_report/i18n/zh_TW.po +++ b/addons/account_report/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+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 138099beb96..780bad01b09 100644 --- a/addons/account_reporting/i18n/account_reporting.pot +++ b/addons/account_reporting/i18n/account_reporting.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/ar_AR.po b/addons/account_reporting/i18n/ar_AR.po index 18ecbad78f6..520a1045e77 100644 --- a/addons/account_reporting/i18n/ar_AR.po +++ b/addons/account_reporting/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/bg_BG.po b/addons/account_reporting/i18n/bg_BG.po index c82e82fdb5c..55463d06d07 100644 --- a/addons/account_reporting/i18n/bg_BG.po +++ b/addons/account_reporting/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/bs_BS.po b/addons/account_reporting/i18n/bs_BS.po index 23e43e3771e..e40f7a62186 100644 --- a/addons/account_reporting/i18n/bs_BS.po +++ b/addons/account_reporting/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/ca_ES.po b/addons/account_reporting/i18n/ca_ES.po index 601779b6387..03c3b6ca11a 100644 --- a/addons/account_reporting/i18n/ca_ES.po +++ b/addons/account_reporting/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/cs_CZ.po b/addons/account_reporting/i18n/cs_CZ.po index cd5ff1797e8..dc14d344eca 100644 --- a/addons/account_reporting/i18n/cs_CZ.po +++ b/addons/account_reporting/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/de_DE.po b/addons/account_reporting/i18n/de_DE.po index c57c7cf11fc..015a779a80f 100644 --- a/addons/account_reporting/i18n/de_DE.po +++ b/addons/account_reporting/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/es_AR.po b/addons/account_reporting/i18n/es_AR.po index 1cac4c56b9a..0b0707fbdba 100644 --- a/addons/account_reporting/i18n/es_AR.po +++ b/addons/account_reporting/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/es_ES.po b/addons/account_reporting/i18n/es_ES.po index ab5ad98263e..82730a7b10a 100644 --- a/addons/account_reporting/i18n/es_ES.po +++ b/addons/account_reporting/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/et_EE.po b/addons/account_reporting/i18n/et_EE.po index 28c6c41a3d9..c1638b255d7 100644 --- a/addons/account_reporting/i18n/et_EE.po +++ b/addons/account_reporting/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/fi_FI.po b/addons/account_reporting/i18n/fi_FI.po index eafb4ff4207..1f084bc66c2 100644 --- a/addons/account_reporting/i18n/fi_FI.po +++ b/addons/account_reporting/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/fr_FR.po b/addons/account_reporting/i18n/fr_FR.po index 37d1853ac25..e3e945f746f 100644 --- a/addons/account_reporting/i18n/fr_FR.po +++ b/addons/account_reporting/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "" #. module: account_reporting #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: account_reporting #: selection:account.report.bs,font_style:0 diff --git a/addons/account_reporting/i18n/hr_HR.po b/addons/account_reporting/i18n/hr_HR.po index ef38f94b7c9..05d7da0c4fa 100644 --- a/addons/account_reporting/i18n/hr_HR.po +++ b/addons/account_reporting/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/hu_HU.po b/addons/account_reporting/i18n/hu_HU.po index 7dd4bc3b17b..507dce5ab28 100644 --- a/addons/account_reporting/i18n/hu_HU.po +++ b/addons/account_reporting/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/id_ID.po b/addons/account_reporting/i18n/id_ID.po index 60aa0e8c284..1a05c75b0ec 100644 --- a/addons/account_reporting/i18n/id_ID.po +++ b/addons/account_reporting/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/it_IT.po b/addons/account_reporting/i18n/it_IT.po index c6683c8a5db..c93d54f273d 100644 --- a/addons/account_reporting/i18n/it_IT.po +++ b/addons/account_reporting/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/lt_LT.po b/addons/account_reporting/i18n/lt_LT.po index bc611529648..913359dd456 100644 --- a/addons/account_reporting/i18n/lt_LT.po +++ b/addons/account_reporting/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/nl_BE.po b/addons/account_reporting/i18n/nl_BE.po index b1da7fcc802..ff5ad9366e2 100644 --- a/addons/account_reporting/i18n/nl_BE.po +++ b/addons/account_reporting/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/nl_NL.po b/addons/account_reporting/i18n/nl_NL.po index 342a1426737..6414e937810 100644 --- a/addons/account_reporting/i18n/nl_NL.po +++ b/addons/account_reporting/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/pl_PL.po b/addons/account_reporting/i18n/pl_PL.po index 5049718c377..bf2571c9857 100644 --- a/addons/account_reporting/i18n/pl_PL.po +++ b/addons/account_reporting/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/pt_BR.po b/addons/account_reporting/i18n/pt_BR.po index 19e8ee3d91c..5b51bdd472c 100644 --- a/addons/account_reporting/i18n/pt_BR.po +++ b/addons/account_reporting/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/pt_PT.po b/addons/account_reporting/i18n/pt_PT.po index 8c582fa21cf..28138f1aa70 100644 --- a/addons/account_reporting/i18n/pt_PT.po +++ b/addons/account_reporting/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/ro_RO.po b/addons/account_reporting/i18n/ro_RO.po index 6a545e1a8d3..6e75bd4ef2b 100644 --- a/addons/account_reporting/i18n/ro_RO.po +++ b/addons/account_reporting/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/ru_RU.po b/addons/account_reporting/i18n/ru_RU.po index 267f9954f34..0cf66620322 100644 --- a/addons/account_reporting/i18n/ru_RU.po +++ b/addons/account_reporting/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/sl_SL.po b/addons/account_reporting/i18n/sl_SL.po index c7e20849e0b..20406158a2a 100644 --- a/addons/account_reporting/i18n/sl_SL.po +++ b/addons/account_reporting/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/cs_CS.po b/addons/account_reporting/i18n/sq_AL.po similarity index 97% rename from addons/account_reporting/i18n/cs_CS.po rename to addons/account_reporting/i18n/sq_AL.po index cbadb865767..d751eab5a7e 100644 --- a/addons/account_reporting/i18n/cs_CS.po +++ b/addons/account_reporting/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/sv_SE.po b/addons/account_reporting/i18n/sv_SE.po index bea803e66f6..ce908ac3efb 100644 --- a/addons/account_reporting/i18n/sv_SE.po +++ b/addons/account_reporting/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/tr_TR.po b/addons/account_reporting/i18n/tr_TR.po index c40a1d6207d..a01fa5cf8b5 100644 --- a/addons/account_reporting/i18n/tr_TR.po +++ b/addons/account_reporting/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/uk_UK.po b/addons/account_reporting/i18n/uk_UA.po similarity index 97% rename from addons/account_reporting/i18n/uk_UK.po rename to addons/account_reporting/i18n/uk_UA.po index dbeb82f21f2..ac744c438d1 100644 --- a/addons/account_reporting/i18n/uk_UK.po +++ b/addons/account_reporting/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/sv_SV.po b/addons/account_reporting/i18n/vi_VN.po similarity index 95% rename from addons/account_reporting/i18n/sv_SV.po rename to addons/account_reporting/i18n/vi_VN.po index b1e4ea7b987..be45442cae8 100644 --- a/addons/account_reporting/i18n/sv_SV.po +++ b/addons/account_reporting/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: account_reporting #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: account_reporting #: selection:account.report.bs,font_style:0 diff --git a/addons/account_reporting/i18n/zh_CN.po b/addons/account_reporting/i18n/zh_CN.po index 97425b32e42..3812ea86e06 100644 --- a/addons/account_reporting/i18n/zh_CN.po +++ b/addons/account_reporting/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/zh_TW.po b/addons/account_reporting/i18n/zh_TW.po index 570d65f0fd1..bb1e4cb13a2 100644 --- a/addons/account_reporting/i18n/zh_TW.po +++ b/addons/account_reporting/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/account_tax_include.pot b/addons/account_tax_include/i18n/account_tax_include.pot index 0bf4e60394c..e19a7fd9712 100644 --- a/addons/account_tax_include/i18n/account_tax_include.pot +++ b/addons/account_tax_include/i18n/account_tax_include.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/ar_AR.po b/addons/account_tax_include/i18n/ar_AR.po index aba962175ad..6b25fa5c969 100644 --- a/addons/account_tax_include/i18n/ar_AR.po +++ b/addons/account_tax_include/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/bg_BG.po b/addons/account_tax_include/i18n/bg_BG.po index c86a3c24a33..3729a14bb5a 100644 --- a/addons/account_tax_include/i18n/bg_BG.po +++ b/addons/account_tax_include/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/bs_BS.po b/addons/account_tax_include/i18n/bs_BS.po index 52cc3df9c25..0dfe6f1d7d6 100644 --- a/addons/account_tax_include/i18n/bs_BS.po +++ b/addons/account_tax_include/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/ca_ES.po b/addons/account_tax_include/i18n/ca_ES.po index f2366de68b8..bc0eaf57c50 100644 --- a/addons/account_tax_include/i18n/ca_ES.po +++ b/addons/account_tax_include/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/cs_CZ.po b/addons/account_tax_include/i18n/cs_CZ.po index 91c44b55473..406cddd0fed 100644 --- a/addons/account_tax_include/i18n/cs_CZ.po +++ b/addons/account_tax_include/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/de_DE.po b/addons/account_tax_include/i18n/de_DE.po index 3d25af03e54..f5a2eb083ce 100644 --- a/addons/account_tax_include/i18n/de_DE.po +++ b/addons/account_tax_include/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/es_AR.po b/addons/account_tax_include/i18n/es_AR.po index c5c144f486e..850834f9c28 100644 --- a/addons/account_tax_include/i18n/es_AR.po +++ b/addons/account_tax_include/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/es_ES.po b/addons/account_tax_include/i18n/es_ES.po index 98f39f1480f..f88d60d2cbc 100644 --- a/addons/account_tax_include/i18n/es_ES.po +++ b/addons/account_tax_include/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/et_EE.po b/addons/account_tax_include/i18n/et_EE.po index 78b254fd32d..ca01d3d8d31 100644 --- a/addons/account_tax_include/i18n/et_EE.po +++ b/addons/account_tax_include/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/fi_FI.po b/addons/account_tax_include/i18n/fi_FI.po index d56ce312220..86491062775 100644 --- a/addons/account_tax_include/i18n/fi_FI.po +++ b/addons/account_tax_include/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/fr_FR.po b/addons/account_tax_include/i18n/fr_FR.po index 614aff8f4c2..5c9d8bbc6c2 100644 --- a/addons/account_tax_include/i18n/fr_FR.po +++ b/addons/account_tax_include/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/hr_HR.po b/addons/account_tax_include/i18n/hr_HR.po index 386d38628f5..79497c69479 100644 --- a/addons/account_tax_include/i18n/hr_HR.po +++ b/addons/account_tax_include/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/hu_HU.po b/addons/account_tax_include/i18n/hu_HU.po index 461f4861405..b148f9e9020 100644 --- a/addons/account_tax_include/i18n/hu_HU.po +++ b/addons/account_tax_include/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/id_ID.po b/addons/account_tax_include/i18n/id_ID.po index 028d0335377..f4d6611b0a2 100644 --- a/addons/account_tax_include/i18n/id_ID.po +++ b/addons/account_tax_include/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/it_IT.po b/addons/account_tax_include/i18n/it_IT.po index e006f15b7a7..c634b04364e 100644 --- a/addons/account_tax_include/i18n/it_IT.po +++ b/addons/account_tax_include/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/lt_LT.po b/addons/account_tax_include/i18n/lt_LT.po index 2a8aac9f6ed..4a3a0dce146 100644 --- a/addons/account_tax_include/i18n/lt_LT.po +++ b/addons/account_tax_include/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/nl_BE.po b/addons/account_tax_include/i18n/nl_BE.po index 8839818807d..275e26740c8 100644 --- a/addons/account_tax_include/i18n/nl_BE.po +++ b/addons/account_tax_include/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/nl_NL.po b/addons/account_tax_include/i18n/nl_NL.po index 57525a64053..6bcb2d4bad3 100644 --- a/addons/account_tax_include/i18n/nl_NL.po +++ b/addons/account_tax_include/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/pl_PL.po b/addons/account_tax_include/i18n/pl_PL.po index 881846860c7..cfe7c9b415b 100644 --- a/addons/account_tax_include/i18n/pl_PL.po +++ b/addons/account_tax_include/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/pt_BR.po b/addons/account_tax_include/i18n/pt_BR.po index bed43351999..455e8287dde 100644 --- a/addons/account_tax_include/i18n/pt_BR.po +++ b/addons/account_tax_include/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/pt_PT.po b/addons/account_tax_include/i18n/pt_PT.po index 9b1438b0964..e7fdfc8d3c5 100644 --- a/addons/account_tax_include/i18n/pt_PT.po +++ b/addons/account_tax_include/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/ro_RO.po b/addons/account_tax_include/i18n/ro_RO.po index 7a58767edc2..8d24528c7f4 100644 --- a/addons/account_tax_include/i18n/ro_RO.po +++ b/addons/account_tax_include/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/ru_RU.po b/addons/account_tax_include/i18n/ru_RU.po index 3eb1a9c3a22..8d20d1c5173 100644 --- a/addons/account_tax_include/i18n/ru_RU.po +++ b/addons/account_tax_include/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/sl_SL.po b/addons/account_tax_include/i18n/sl_SL.po index 6e9ef7a4676..3a8110c5d68 100644 --- a/addons/account_tax_include/i18n/sl_SL.po +++ b/addons/account_tax_include/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/sv_SV.po b/addons/account_tax_include/i18n/sq_AL.po similarity index 89% rename from addons/account_tax_include/i18n/sv_SV.po rename to addons/account_tax_include/i18n/sq_AL.po index bef888f6e37..17246cba253 100644 --- a/addons/account_tax_include/i18n/sv_SV.po +++ b/addons/account_tax_include/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/sv_SE.po b/addons/account_tax_include/i18n/sv_SE.po index 3d6122cda3d..c734d1461ee 100644 --- a/addons/account_tax_include/i18n/sv_SE.po +++ b/addons/account_tax_include/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/tr_TR.po b/addons/account_tax_include/i18n/tr_TR.po index 11a3989bad0..30d8c9c31c3 100644 --- a/addons/account_tax_include/i18n/tr_TR.po +++ b/addons/account_tax_include/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/uk_UK.po b/addons/account_tax_include/i18n/uk_UA.po similarity index 89% rename from addons/account_tax_include/i18n/uk_UK.po rename to addons/account_tax_include/i18n/uk_UA.po index 52f5547f334..c3de5427e50 100644 --- a/addons/account_tax_include/i18n/uk_UK.po +++ b/addons/account_tax_include/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/cs_CS.po b/addons/account_tax_include/i18n/vi_VN.po similarity index 89% rename from addons/account_tax_include/i18n/cs_CS.po rename to addons/account_tax_include/i18n/vi_VN.po index 40bf3426e3a..18f318332d1 100644 --- a/addons/account_tax_include/i18n/cs_CS.po +++ b/addons/account_tax_include/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/zh_CN.po b/addons/account_tax_include/i18n/zh_CN.po index 2f56a1eb8f2..c3dcfe087c7 100644 --- a/addons/account_tax_include/i18n/zh_CN.po +++ b/addons/account_tax_include/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_tax_include/i18n/zh_TW.po b/addons/account_tax_include/i18n/zh_TW.po index df29e1caf18..9848c3f6943 100644 --- a/addons/account_tax_include/i18n/zh_TW.po +++ b/addons/account_tax_include/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+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 e2c72c9f71c..18b767ae430 100644 --- a/addons/account_voucher/i18n/account_voucher.pot +++ b/addons/account_voucher/i18n/account_voucher.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/ar_AR.po b/addons/account_voucher/i18n/ar_AR.po index 8607edc585b..c6049fb64bd 100644 --- a/addons/account_voucher/i18n/ar_AR.po +++ b/addons/account_voucher/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/bg_BG.po b/addons/account_voucher/i18n/bg_BG.po index e1b34b9c21b..43147ec8559 100644 --- a/addons/account_voucher/i18n/bg_BG.po +++ b/addons/account_voucher/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/bs_BS.po b/addons/account_voucher/i18n/bs_BS.po index 7eb266bdca7..e4074be7bb0 100644 --- a/addons/account_voucher/i18n/bs_BS.po +++ b/addons/account_voucher/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/ca_ES.po b/addons/account_voucher/i18n/ca_ES.po index 6ecfba8a49b..f27545c669e 100644 --- a/addons/account_voucher/i18n/ca_ES.po +++ b/addons/account_voucher/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/cs_CZ.po b/addons/account_voucher/i18n/cs_CZ.po index 06e2f48bc4f..93d1113b6a7 100644 --- a/addons/account_voucher/i18n/cs_CZ.po +++ b/addons/account_voucher/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/de_DE.po b/addons/account_voucher/i18n/de_DE.po index cc0d13615c4..5773b0734a9 100644 --- a/addons/account_voucher/i18n/de_DE.po +++ b/addons/account_voucher/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po index 1880e6dce87..3fa646ded9b 100644 --- a/addons/account_voucher/i18n/es_AR.po +++ b/addons/account_voucher/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/es_ES.po b/addons/account_voucher/i18n/es_ES.po index bd0e62d6e11..a549da14340 100644 --- a/addons/account_voucher/i18n/es_ES.po +++ b/addons/account_voucher/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/et_EE.po b/addons/account_voucher/i18n/et_EE.po index 83b2c434357..6c1b429d129 100644 --- a/addons/account_voucher/i18n/et_EE.po +++ b/addons/account_voucher/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/fi_FI.po b/addons/account_voucher/i18n/fi_FI.po index 4196acb572f..f32fff4c9c4 100644 --- a/addons/account_voucher/i18n/fi_FI.po +++ b/addons/account_voucher/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/fr_FR.po b/addons/account_voucher/i18n/fr_FR.po index 229e5a2d0d8..2220bf72ad7 100644 --- a/addons/account_voucher/i18n/fr_FR.po +++ b/addons/account_voucher/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,18 +35,18 @@ msgstr "" #: rml:voucher.cash_amount:0 #: rml:voucher.cash_receipt.drcr:0 msgid "State :" -msgstr "" +msgstr "État" #. module: account_voucher #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: account_voucher #: rml:voucher.cash_amount:0 #: rml:voucher.cash_receipt.drcr:0 msgid "Ref. :" -msgstr "" +msgstr "Réf. :" #. module: account_voucher #: selection:account.move,voucher_type:0 @@ -138,13 +138,13 @@ msgstr "" #: rml:voucher.cash_amount:0 #: rml:voucher.cash_receipt.drcr:0 msgid "No." -msgstr "" +msgstr "N°" #. module: account_voucher #: rml:voucher.cash_amount:0 #: rml:voucher.cash_receipt.drcr:0 msgid "Amount (in words) :" -msgstr "" +msgstr "Montant (en toutes lettres) :" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 @@ -330,7 +330,7 @@ msgstr "Brouillon" #: rml:voucher.cash_amount:0 #: rml:voucher.cash_receipt.drcr:0 msgid "PRO-FORMA" -msgstr "" +msgstr "PROFORMA" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list @@ -361,7 +361,7 @@ msgstr "Date" #: rml:voucher.cash_amount:0 #: rml:voucher.cash_receipt.drcr:0 msgid ":" -msgstr "" +msgstr ":" #. module: account_voucher #: field:account.account,type1:0 @@ -474,7 +474,7 @@ msgstr "Description" #: rml:voucher.cash_amount:0 #: rml:voucher.cash_receipt.drcr:0 msgid "Canceled" -msgstr "" +msgstr "Annulé" #. module: account_voucher #: selection:account.move,voucher_type:0 @@ -495,7 +495,7 @@ msgstr "Reçu Bancaire" #: rml:voucher.cash_amount:0 #: rml:voucher.cash_receipt.drcr:0 msgid "-" -msgstr "" +msgstr "-" #. module: account_voucher #: selection:account.move,voucher_type:0 diff --git a/addons/account_voucher/i18n/hr_HR.po b/addons/account_voucher/i18n/hr_HR.po index dd85035fb21..42e521a9e02 100644 --- a/addons/account_voucher/i18n/hr_HR.po +++ b/addons/account_voucher/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/hu_HU.po b/addons/account_voucher/i18n/hu_HU.po index 0b95f303d03..9c2cbabf8c2 100644 --- a/addons/account_voucher/i18n/hu_HU.po +++ b/addons/account_voucher/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/id_ID.po b/addons/account_voucher/i18n/id_ID.po index 87a7f80e3cf..4f6a3beaa32 100644 --- a/addons/account_voucher/i18n/id_ID.po +++ b/addons/account_voucher/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/it_IT.po b/addons/account_voucher/i18n/it_IT.po index b09ec9c32f1..a8435b29eb4 100644 --- a/addons/account_voucher/i18n/it_IT.po +++ b/addons/account_voucher/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/lt_LT.po b/addons/account_voucher/i18n/lt_LT.po index 0e4534b7f6f..8144c4f2579 100644 --- a/addons/account_voucher/i18n/lt_LT.po +++ b/addons/account_voucher/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po index 97f542ba20c..3c33c2d1485 100644 --- a/addons/account_voucher/i18n/nl_BE.po +++ b/addons/account_voucher/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/nl_NL.po b/addons/account_voucher/i18n/nl_NL.po index fb713de639e..4f5461c6274 100644 --- a/addons/account_voucher/i18n/nl_NL.po +++ b/addons/account_voucher/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/pl_PL.po b/addons/account_voucher/i18n/pl_PL.po index d032bc85e60..97204d31cb2 100644 --- a/addons/account_voucher/i18n/pl_PL.po +++ b/addons/account_voucher/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:03+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:03+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index d39d392fc8b..3c935d79e4e 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/pt_PT.po b/addons/account_voucher/i18n/pt_PT.po index be8968766f2..83940ba9267 100644 --- a/addons/account_voucher/i18n/pt_PT.po +++ b/addons/account_voucher/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/ro_RO.po b/addons/account_voucher/i18n/ro_RO.po index 3813b661370..b1c5f8aaa09 100644 --- a/addons/account_voucher/i18n/ro_RO.po +++ b/addons/account_voucher/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/ru_RU.po b/addons/account_voucher/i18n/ru_RU.po index 5db96bc64cf..9fcc2c3abdc 100644 --- a/addons/account_voucher/i18n/ru_RU.po +++ b/addons/account_voucher/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/sl_SL.po b/addons/account_voucher/i18n/sl_SL.po index d9c414472dc..a6b5da451bb 100644 --- a/addons/account_voucher/i18n/sl_SL.po +++ b/addons/account_voucher/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/cs_CS.po b/addons/account_voucher/i18n/sq_AL.po similarity index 99% rename from addons/account_voucher/i18n/cs_CS.po rename to addons/account_voucher/i18n/sq_AL.po index 8a41de690a7..23607890171 100644 --- a/addons/account_voucher/i18n/cs_CS.po +++ b/addons/account_voucher/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/sv_SE.po b/addons/account_voucher/i18n/sv_SE.po index f6045b8fbea..c716af44efd 100644 --- a/addons/account_voucher/i18n/sv_SE.po +++ b/addons/account_voucher/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/tlh_TLH.po b/addons/account_voucher/i18n/tlh_TLH.po index 8abb5cdffc3..40cccd6da7f 100644 --- a/addons/account_voucher/i18n/tlh_TLH.po +++ b/addons/account_voucher/i18n/tlh_TLH.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:08+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/tr_TR.po b/addons/account_voucher/i18n/tr_TR.po index 9de1a0faf83..bfd2f66607d 100644 --- a/addons/account_voucher/i18n/tr_TR.po +++ b/addons/account_voucher/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/uk_UK.po b/addons/account_voucher/i18n/uk_UA.po similarity index 99% rename from addons/account_voucher/i18n/uk_UK.po rename to addons/account_voucher/i18n/uk_UA.po index 7a0d69d072f..a8368b25710 100644 --- a/addons/account_voucher/i18n/uk_UK.po +++ b/addons/account_voucher/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/sv_SV.po b/addons/account_voucher/i18n/vi_VN.po similarity index 98% rename from addons/account_voucher/i18n/sv_SV.po rename to addons/account_voucher/i18n/vi_VN.po index e544c24adfb..044d7f12996 100644 --- a/addons/account_voucher/i18n/sv_SV.po +++ b/addons/account_voucher/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -442,7 +442,7 @@ msgstr "" #. module: account_voucher #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: account_voucher #: view:account.voucher:0 diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po index 562ff31d38f..b3ce3be319e 100644 --- a/addons/account_voucher/i18n/zh_CN.po +++ b/addons/account_voucher/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po index ac80b980fd7..7a98588d65e 100644 --- a/addons/account_voucher/i18n/zh_TW.po +++ b/addons/account_voucher/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" 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 38981607e26..ea1bd5a310b 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 @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/ar_AR.po b/addons/analytic_journal_billing_rate/i18n/ar_AR.po index 6ef7f97f9ee..232e55a8a2b 100644 --- a/addons/analytic_journal_billing_rate/i18n/ar_AR.po +++ b/addons/analytic_journal_billing_rate/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/bg_BG.po b/addons/analytic_journal_billing_rate/i18n/bg_BG.po index 4cc3c25daf8..ed4c6bc0291 100644 --- a/addons/analytic_journal_billing_rate/i18n/bg_BG.po +++ b/addons/analytic_journal_billing_rate/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/bs_BS.po b/addons/analytic_journal_billing_rate/i18n/bs_BS.po index 8c336c40686..618fded8f50 100644 --- a/addons/analytic_journal_billing_rate/i18n/bs_BS.po +++ b/addons/analytic_journal_billing_rate/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/ca_ES.po b/addons/analytic_journal_billing_rate/i18n/ca_ES.po index f576053f971..9fba4ff60a9 100644 --- a/addons/analytic_journal_billing_rate/i18n/ca_ES.po +++ b/addons/analytic_journal_billing_rate/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/cs_CZ.po b/addons/analytic_journal_billing_rate/i18n/cs_CZ.po index 17ec15e834e..2c9d7361134 100644 --- a/addons/analytic_journal_billing_rate/i18n/cs_CZ.po +++ b/addons/analytic_journal_billing_rate/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/de_DE.po b/addons/analytic_journal_billing_rate/i18n/de_DE.po index 4f3e37cca2a..879cb1305b4 100644 --- a/addons/analytic_journal_billing_rate/i18n/de_DE.po +++ b/addons/analytic_journal_billing_rate/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/es_AR.po b/addons/analytic_journal_billing_rate/i18n/es_AR.po index 90010439bb0..ef74d638e5b 100644 --- a/addons/analytic_journal_billing_rate/i18n/es_AR.po +++ b/addons/analytic_journal_billing_rate/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/es_ES.po b/addons/analytic_journal_billing_rate/i18n/es_ES.po index c14776de167..433692d4405 100644 --- a/addons/analytic_journal_billing_rate/i18n/es_ES.po +++ b/addons/analytic_journal_billing_rate/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/et_EE.po b/addons/analytic_journal_billing_rate/i18n/et_EE.po index 6ab54b8b4da..3a1ef2a8ec5 100644 --- a/addons/analytic_journal_billing_rate/i18n/et_EE.po +++ b/addons/analytic_journal_billing_rate/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/fi_FI.po b/addons/analytic_journal_billing_rate/i18n/fi_FI.po index a1e9c6dd439..2dea4a437a5 100644 --- a/addons/analytic_journal_billing_rate/i18n/fi_FI.po +++ b/addons/analytic_journal_billing_rate/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/fr_FR.po b/addons/analytic_journal_billing_rate/i18n/fr_FR.po index 1c74ff54d85..c580b32222e 100644 --- a/addons/analytic_journal_billing_rate/i18n/fr_FR.po +++ b/addons/analytic_journal_billing_rate/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/hr_HR.po b/addons/analytic_journal_billing_rate/i18n/hr_HR.po index 6690c93a0f3..53e016370d7 100644 --- a/addons/analytic_journal_billing_rate/i18n/hr_HR.po +++ b/addons/analytic_journal_billing_rate/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/hu_HU.po b/addons/analytic_journal_billing_rate/i18n/hu_HU.po index 9f65f9d6bb8..c09a206e604 100644 --- a/addons/analytic_journal_billing_rate/i18n/hu_HU.po +++ b/addons/analytic_journal_billing_rate/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/id_ID.po b/addons/analytic_journal_billing_rate/i18n/id_ID.po index a7a6d5e8705..f0f19137b21 100644 --- a/addons/analytic_journal_billing_rate/i18n/id_ID.po +++ b/addons/analytic_journal_billing_rate/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/it_IT.po b/addons/analytic_journal_billing_rate/i18n/it_IT.po index f8cd872ef87..c683c2ef921 100644 --- a/addons/analytic_journal_billing_rate/i18n/it_IT.po +++ b/addons/analytic_journal_billing_rate/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/lt_LT.po b/addons/analytic_journal_billing_rate/i18n/lt_LT.po index 3ba667744ac..685afc3369c 100644 --- a/addons/analytic_journal_billing_rate/i18n/lt_LT.po +++ b/addons/analytic_journal_billing_rate/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/nl_BE.po b/addons/analytic_journal_billing_rate/i18n/nl_BE.po index f0eea2d7c45..36e555208bd 100644 --- a/addons/analytic_journal_billing_rate/i18n/nl_BE.po +++ b/addons/analytic_journal_billing_rate/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/nl_NL.po b/addons/analytic_journal_billing_rate/i18n/nl_NL.po index 1d4263b8f6d..2bfe3db95fe 100644 --- a/addons/analytic_journal_billing_rate/i18n/nl_NL.po +++ b/addons/analytic_journal_billing_rate/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/pl_PL.po b/addons/analytic_journal_billing_rate/i18n/pl_PL.po index ee8e133255b..86963863a57 100644 --- a/addons/analytic_journal_billing_rate/i18n/pl_PL.po +++ b/addons/analytic_journal_billing_rate/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/pt_BR.po b/addons/analytic_journal_billing_rate/i18n/pt_BR.po index aaea4e1693c..19851be27bb 100644 --- a/addons/analytic_journal_billing_rate/i18n/pt_BR.po +++ b/addons/analytic_journal_billing_rate/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/pt_PT.po b/addons/analytic_journal_billing_rate/i18n/pt_PT.po index 4c1a2624835..0ecbd564063 100644 --- a/addons/analytic_journal_billing_rate/i18n/pt_PT.po +++ b/addons/analytic_journal_billing_rate/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/ro_RO.po b/addons/analytic_journal_billing_rate/i18n/ro_RO.po index 57af2d01834..505a8928456 100644 --- a/addons/analytic_journal_billing_rate/i18n/ro_RO.po +++ b/addons/analytic_journal_billing_rate/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/ru_RU.po b/addons/analytic_journal_billing_rate/i18n/ru_RU.po index 3819244230c..5ff5a11f397 100644 --- a/addons/analytic_journal_billing_rate/i18n/ru_RU.po +++ b/addons/analytic_journal_billing_rate/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/sl_SL.po b/addons/analytic_journal_billing_rate/i18n/sl_SL.po index 6a4f058e9e0..651dd1d067f 100644 --- a/addons/analytic_journal_billing_rate/i18n/sl_SL.po +++ b/addons/analytic_journal_billing_rate/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/cs_CS.po b/addons/analytic_journal_billing_rate/i18n/sq_AL.po similarity index 92% rename from addons/analytic_journal_billing_rate/i18n/cs_CS.po rename to addons/analytic_journal_billing_rate/i18n/sq_AL.po index b77f2add1c2..d85cbb537a7 100644 --- a/addons/analytic_journal_billing_rate/i18n/cs_CS.po +++ b/addons/analytic_journal_billing_rate/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/sv_SE.po b/addons/analytic_journal_billing_rate/i18n/sv_SE.po index 7fb29f22b20..6b841f8ab44 100644 --- a/addons/analytic_journal_billing_rate/i18n/sv_SE.po +++ b/addons/analytic_journal_billing_rate/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/tr_TR.po b/addons/analytic_journal_billing_rate/i18n/tr_TR.po index 4fc5f87145f..bdf4f8ae47c 100644 --- a/addons/analytic_journal_billing_rate/i18n/tr_TR.po +++ b/addons/analytic_journal_billing_rate/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/uk_UK.po b/addons/analytic_journal_billing_rate/i18n/uk_UA.po similarity index 93% rename from addons/analytic_journal_billing_rate/i18n/uk_UK.po rename to addons/analytic_journal_billing_rate/i18n/uk_UA.po index 0f45c258159..90a67a32903 100644 --- a/addons/analytic_journal_billing_rate/i18n/uk_UK.po +++ b/addons/analytic_journal_billing_rate/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/sv_SV.po b/addons/analytic_journal_billing_rate/i18n/vi_VN.po similarity index 87% rename from addons/analytic_journal_billing_rate/i18n/sv_SV.po rename to addons/analytic_journal_billing_rate/i18n/vi_VN.po index 9f38ccbc20c..983c99eeb55 100644 --- a/addons/analytic_journal_billing_rate/i18n/sv_SV.po +++ b/addons/analytic_journal_billing_rate/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "" #. module: analytic_journal_billing_rate #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: analytic_journal_billing_rate #: view:analytic_journal_rate_grid:0 diff --git a/addons/analytic_journal_billing_rate/i18n/zh_CN.po b/addons/analytic_journal_billing_rate/i18n/zh_CN.po index f3bc810d795..f15eca706da 100644 --- a/addons/analytic_journal_billing_rate/i18n/zh_CN.po +++ b/addons/analytic_journal_billing_rate/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_journal_billing_rate/i18n/zh_TW.po b/addons/analytic_journal_billing_rate/i18n/zh_TW.po index 237f27a41d2..91f90c5ddc1 100644 --- a/addons/analytic_journal_billing_rate/i18n/zh_TW.po +++ b/addons/analytic_journal_billing_rate/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+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 bf34e22fdd3..7df73a8dafb 100644 --- a/addons/analytic_user_function/i18n/analytic_user_function.pot +++ b/addons/analytic_user_function/i18n/analytic_user_function.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/ar_AR.po b/addons/analytic_user_function/i18n/ar_AR.po index f23b853cb69..499245a0099 100644 --- a/addons/analytic_user_function/i18n/ar_AR.po +++ b/addons/analytic_user_function/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/bg_BG.po b/addons/analytic_user_function/i18n/bg_BG.po index e987465fd3b..83447d56390 100644 --- a/addons/analytic_user_function/i18n/bg_BG.po +++ b/addons/analytic_user_function/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/bs_BS.po b/addons/analytic_user_function/i18n/bs_BS.po index 87ee2f33c94..341812e481d 100644 --- a/addons/analytic_user_function/i18n/bs_BS.po +++ b/addons/analytic_user_function/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/ca_ES.po b/addons/analytic_user_function/i18n/ca_ES.po index e2769494a24..99c2f9e21a2 100644 --- a/addons/analytic_user_function/i18n/ca_ES.po +++ b/addons/analytic_user_function/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/cs_CZ.po b/addons/analytic_user_function/i18n/cs_CZ.po index 05421e1cc0f..b949a23cf0f 100644 --- a/addons/analytic_user_function/i18n/cs_CZ.po +++ b/addons/analytic_user_function/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/de_DE.po b/addons/analytic_user_function/i18n/de_DE.po index 243a7b5ad31..d6741cae9e6 100644 --- a/addons/analytic_user_function/i18n/de_DE.po +++ b/addons/analytic_user_function/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/es_AR.po b/addons/analytic_user_function/i18n/es_AR.po index 44e79774014..397a7139804 100644 --- a/addons/analytic_user_function/i18n/es_AR.po +++ b/addons/analytic_user_function/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/es_ES.po b/addons/analytic_user_function/i18n/es_ES.po index a39b142cba6..39071dec224 100644 --- a/addons/analytic_user_function/i18n/es_ES.po +++ b/addons/analytic_user_function/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/et_EE.po b/addons/analytic_user_function/i18n/et_EE.po index d431b4eb599..34dcfe472ef 100644 --- a/addons/analytic_user_function/i18n/et_EE.po +++ b/addons/analytic_user_function/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/fi_FI.po b/addons/analytic_user_function/i18n/fi_FI.po index 106f1d70b31..fa4d71c1836 100644 --- a/addons/analytic_user_function/i18n/fi_FI.po +++ b/addons/analytic_user_function/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/fr_FR.po b/addons/analytic_user_function/i18n/fr_FR.po index c544de14432..a4a6ae18eb1 100644 --- a/addons/analytic_user_function/i18n/fr_FR.po +++ b/addons/analytic_user_function/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/hr_HR.po b/addons/analytic_user_function/i18n/hr_HR.po index a8a2537b39c..8145c2cb0e6 100644 --- a/addons/analytic_user_function/i18n/hr_HR.po +++ b/addons/analytic_user_function/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/hu_HU.po b/addons/analytic_user_function/i18n/hu_HU.po index 53e6327158d..b597f25ad40 100644 --- a/addons/analytic_user_function/i18n/hu_HU.po +++ b/addons/analytic_user_function/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/id_ID.po b/addons/analytic_user_function/i18n/id_ID.po index 0d7c8aba686..5d264a207b6 100644 --- a/addons/analytic_user_function/i18n/id_ID.po +++ b/addons/analytic_user_function/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/it_IT.po b/addons/analytic_user_function/i18n/it_IT.po index 7a61f41ae7f..facfac4f152 100644 --- a/addons/analytic_user_function/i18n/it_IT.po +++ b/addons/analytic_user_function/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/lt_LT.po b/addons/analytic_user_function/i18n/lt_LT.po index 01ef190b77e..4789e0bac46 100644 --- a/addons/analytic_user_function/i18n/lt_LT.po +++ b/addons/analytic_user_function/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/nl_BE.po b/addons/analytic_user_function/i18n/nl_BE.po index 5a9efed8e84..61865d10dc0 100644 --- a/addons/analytic_user_function/i18n/nl_BE.po +++ b/addons/analytic_user_function/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/nl_NL.po b/addons/analytic_user_function/i18n/nl_NL.po index 6a3f41d9d59..8f6ce09b975 100644 --- a/addons/analytic_user_function/i18n/nl_NL.po +++ b/addons/analytic_user_function/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/pl_PL.po b/addons/analytic_user_function/i18n/pl_PL.po index abaa1f01419..ae158ac1117 100644 --- a/addons/analytic_user_function/i18n/pl_PL.po +++ b/addons/analytic_user_function/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/pt_BR.po b/addons/analytic_user_function/i18n/pt_BR.po index d8085dc9823..7d0c1f434cd 100644 --- a/addons/analytic_user_function/i18n/pt_BR.po +++ b/addons/analytic_user_function/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/pt_PT.po b/addons/analytic_user_function/i18n/pt_PT.po index 64d23c4e718..20dffa6e4f3 100644 --- a/addons/analytic_user_function/i18n/pt_PT.po +++ b/addons/analytic_user_function/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/ro_RO.po b/addons/analytic_user_function/i18n/ro_RO.po index 134c96b0417..1de4acd520f 100644 --- a/addons/analytic_user_function/i18n/ro_RO.po +++ b/addons/analytic_user_function/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/ru_RU.po b/addons/analytic_user_function/i18n/ru_RU.po index 5b8af3d0b39..7dd857a1a34 100644 --- a/addons/analytic_user_function/i18n/ru_RU.po +++ b/addons/analytic_user_function/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/sl_SL.po b/addons/analytic_user_function/i18n/sl_SL.po index 18c5775cbf7..e4280931637 100644 --- a/addons/analytic_user_function/i18n/sl_SL.po +++ b/addons/analytic_user_function/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/cs_CS.po b/addons/analytic_user_function/i18n/sq_AL.po similarity index 91% rename from addons/analytic_user_function/i18n/cs_CS.po rename to addons/analytic_user_function/i18n/sq_AL.po index 5202c45aad4..441eba351a6 100644 --- a/addons/analytic_user_function/i18n/cs_CS.po +++ b/addons/analytic_user_function/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/sv_SE.po b/addons/analytic_user_function/i18n/sv_SE.po index 6c6e07b0460..5b21fb8b6d2 100644 --- a/addons/analytic_user_function/i18n/sv_SE.po +++ b/addons/analytic_user_function/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/tr_TR.po b/addons/analytic_user_function/i18n/tr_TR.po index d667b4461d4..2bf9692f83f 100644 --- a/addons/analytic_user_function/i18n/tr_TR.po +++ b/addons/analytic_user_function/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/uk_UK.po b/addons/analytic_user_function/i18n/uk_UA.po similarity index 92% rename from addons/analytic_user_function/i18n/uk_UK.po rename to addons/analytic_user_function/i18n/uk_UA.po index f98d5c02fb9..f41d094e992 100644 --- a/addons/analytic_user_function/i18n/uk_UK.po +++ b/addons/analytic_user_function/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/sv_SV.po b/addons/analytic_user_function/i18n/vi_VN.po similarity index 87% rename from addons/analytic_user_function/i18n/sv_SV.po rename to addons/analytic_user_function/i18n/vi_VN.po index b4f5262aec5..8cf951c9e62 100644 --- a/addons/analytic_user_function/i18n/sv_SV.po +++ b/addons/analytic_user_function/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "" #. module: analytic_user_function #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: analytic_user_function #: model:ir.module.module,shortdesc:analytic_user_function.module_meta_information diff --git a/addons/analytic_user_function/i18n/zh_CN.po b/addons/analytic_user_function/i18n/zh_CN.po index 9ccc950a265..12826420337 100644 --- a/addons/analytic_user_function/i18n/zh_CN.po +++ b/addons/analytic_user_function/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/zh_TW.po b/addons/analytic_user_function/i18n/zh_TW.po index a56e3a0b1d4..6d93f142bc1 100644 --- a/addons/analytic_user_function/i18n/zh_TW.po +++ b/addons/analytic_user_function/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/ar_AR.po b/addons/auction/i18n/ar_AR.po index 5f74e67551c..cec5555f390 100644 --- a/addons/auction/i18n/ar_AR.po +++ b/addons/auction/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/auction.pot b/addons/auction/i18n/auction.pot index a640c1bcd80..8e02e986623 100644 --- a/addons/auction/i18n/auction.pot +++ b/addons/auction/i18n/auction.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/bg_BG.po b/addons/auction/i18n/bg_BG.po index c09a7cabf64..f1591317e8f 100644 --- a/addons/auction/i18n/bg_BG.po +++ b/addons/auction/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/bs_BS.po b/addons/auction/i18n/bs_BS.po index 3c73abc706c..f6b3b3675ea 100644 --- a/addons/auction/i18n/bs_BS.po +++ b/addons/auction/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/ca_ES.po b/addons/auction/i18n/ca_ES.po index 4a1b4350412..3bc452f5427 100644 --- a/addons/auction/i18n/ca_ES.po +++ b/addons/auction/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "Objectes de subhasta" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "Antigüedades / Estores i tèxtils" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "Adj." @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "Número document" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "Compte d'ingressos" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "Art cont. / Arts" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/cs_CZ.po b/addons/auction/i18n/cs_CZ.po index a3325a1f8aa..a4a25b4f70c 100644 --- a/addons/auction/i18n/cs_CZ.po +++ b/addons/auction/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/de_DE.po b/addons/auction/i18n/de_DE.po index 0c597eddf73..1708cf75668 100644 --- a/addons/auction/i18n/de_DE.po +++ b/addons/auction/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "Auktion Versteigerungsobjekte" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -980,7 +979,6 @@ msgstr "Antik/Teppiche und Textilien" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "Zuschlag" @@ -1669,7 +1667,6 @@ msgid "Document Number" msgstr "Dokumentennummer" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2019,7 +2016,6 @@ msgstr "Ertragskonto" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2433,7 +2429,6 @@ msgstr "Zeitg. Kunst/Kunst" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/es_AR.po b/addons/auction/i18n/es_AR.po index 094557324b1..732b0bc12f6 100644 --- a/addons/auction/i18n/es_AR.po +++ b/addons/auction/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/es_ES.po b/addons/auction/i18n/es_ES.po index e18f9c2c64a..02460f20c2d 100644 --- a/addons/auction/i18n/es_ES.po +++ b/addons/auction/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "Objetos de subasta" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -980,7 +979,6 @@ msgstr "Antigüedades / Alfombras y textiles" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "Adj." @@ -1669,7 +1667,6 @@ msgid "Document Number" msgstr "Número documento" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2019,7 +2016,6 @@ msgstr "Cuenta de ingresos" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2433,7 +2429,6 @@ msgstr "Arte cont. / Artes" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/et_EE.po b/addons/auction/i18n/et_EE.po index 979b22d94f5..707aa900284 100644 --- a/addons/auction/i18n/et_EE.po +++ b/addons/auction/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "Oksjoni objektid" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "Antiik/Vaibad ja tekstiilid" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "Dokumendi number" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "Tulude konto" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/fi_FI.po b/addons/auction/i18n/fi_FI.po index fc4e24f515f..ebab4edb7bb 100644 --- a/addons/auction/i18n/fi_FI.po +++ b/addons/auction/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/fr_FR.po b/addons/auction/i18n/fr_FR.po index e37cc8dfeb3..3b8e328e406 100644 --- a/addons/auction/i18n/fr_FR.po +++ b/addons/auction/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Vendeur" #. module: auction #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: auction #: selection:auction.lots.send.aie,date_ask,numerotation:0 @@ -286,7 +286,7 @@ msgstr "Dates" #. module: auction #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "Erreur: l'unité de vente doit appartenir à une catégorie différente que l'unité de mesure" +msgstr "Erreur : l'Unité Secondaire doit appartenir à une autre catégorie que l'Unité de Mesure." #. module: auction #: rml:auction.total.rml:0 @@ -492,7 +492,6 @@ msgstr "Objets aux enchères" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "Antiquités/Tapis et Textiles" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "Adj." @@ -1574,7 +1572,7 @@ msgstr "Créer les factures" #. module: auction #: constraint:product.template:0 msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "Erreur: l'unité de mesure par défaut et l'unité de mesure d'achat doivent faire partie de la même catégorie" +msgstr "Erreur: l'UdM par défaut et l'UdM d'achat doivent appartenir à la même catégorie." #. module: auction #: xsl:report.auction.vnd_bordereau:0 @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "Numéro du Document" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "Compte des entrées" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/hr_HR.po b/addons/auction/i18n/hr_HR.po index f87e6363598..77f7a0bf883 100644 --- a/addons/auction/i18n/hr_HR.po +++ b/addons/auction/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/hu_HU.po b/addons/auction/i18n/hu_HU.po index ea28c14c0ae..77ef1228bc9 100644 --- a/addons/auction/i18n/hu_HU.po +++ b/addons/auction/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/id_ID.po b/addons/auction/i18n/id_ID.po index 5305ffe7504..616a3b4f187 100644 --- a/addons/auction/i18n/id_ID.po +++ b/addons/auction/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/it_IT.po b/addons/auction/i18n/it_IT.po index b4b36194aa6..7afa5b1a9c3 100644 --- a/addons/auction/i18n/it_IT.po +++ b/addons/auction/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/lt_LT.po b/addons/auction/i18n/lt_LT.po index 53c5f3af078..a4c2abfb763 100644 --- a/addons/auction/i18n/lt_LT.po +++ b/addons/auction/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/nl_BE.po b/addons/auction/i18n/nl_BE.po index 548d47e11ad..cd20d747a9e 100644 --- a/addons/auction/i18n/nl_BE.po +++ b/addons/auction/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/nl_NL.po b/addons/auction/i18n/nl_NL.po index b9c2dd4f9fa..55bc310e253 100644 --- a/addons/auction/i18n/nl_NL.po +++ b/addons/auction/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/pl_PL.po b/addons/auction/i18n/pl_PL.po index e26d2453cba..16319856f49 100644 --- a/addons/auction/i18n/pl_PL.po +++ b/addons/auction/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/pt_BR.po b/addons/auction/i18n/pt_BR.po index e09344129eb..4bb5a5e0d90 100644 --- a/addons/auction/i18n/pt_BR.po +++ b/addons/auction/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/pt_PT.po b/addons/auction/i18n/pt_PT.po index 4d8c9faca54..9abda8f0f4a 100644 --- a/addons/auction/i18n/pt_PT.po +++ b/addons/auction/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/ro_RO.po b/addons/auction/i18n/ro_RO.po index 8f1018261c5..3fb675128b9 100644 --- a/addons/auction/i18n/ro_RO.po +++ b/addons/auction/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/ru_RU.po b/addons/auction/i18n/ru_RU.po index 4659ab99a10..a9059fcec9e 100644 --- a/addons/auction/i18n/ru_RU.po +++ b/addons/auction/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "Объекты аукциона" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "Антиквариат/ ковры и текстиль" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "Рез-т" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "Номер документа" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "Совр. искусство/ Ремесла" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/sl_SL.po b/addons/auction/i18n/sl_SL.po index 341dab2ec62..51972f96a33 100644 --- a/addons/auction/i18n/sl_SL.po +++ b/addons/auction/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/cs_CS.po b/addons/auction/i18n/sq_AL.po similarity index 99% rename from addons/auction/i18n/cs_CS.po rename to addons/auction/i18n/sq_AL.po index 09ca7dad8c1..07e2b68b0bc 100644 --- a/addons/auction/i18n/cs_CS.po +++ b/addons/auction/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2149,7 +2145,7 @@ msgstr "" #. module: auction #: model:ir.ui.menu,name:auction.auction_config_menu msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: auction #: model:ir.ui.menu,name:auction.auction_outils_menu @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/sv_SE.po b/addons/auction/i18n/sv_SE.po index be10364beee..84233c0a4cd 100644 --- a/addons/auction/i18n/sv_SE.po +++ b/addons/auction/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/tr_TR.po b/addons/auction/i18n/tr_TR.po index 3bc4e4eaf53..fc894d52616 100644 --- a/addons/auction/i18n/tr_TR.po +++ b/addons/auction/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/uk_UK.po b/addons/auction/i18n/uk_UA.po similarity index 99% rename from addons/auction/i18n/uk_UK.po rename to addons/auction/i18n/uk_UA.po index bfec33592bf..9a9ba95667b 100644 --- a/addons/auction/i18n/uk_UK.po +++ b/addons/auction/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/sv_SV.po b/addons/auction/i18n/vi_VN.po similarity index 99% rename from addons/auction/i18n/sv_SV.po rename to addons/auction/i18n/vi_VN.po index 2abe519a92a..55f451a89df 100644 --- a/addons/auction/i18n/sv_SV.po +++ b/addons/auction/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -1709,7 +1706,7 @@ msgstr "" #. module: auction #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: auction #: field:auction.deposit,transfer:0 @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2149,7 +2145,7 @@ msgstr "" #. module: auction #: model:ir.ui.menu,name:auction.auction_config_menu msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: auction #: model:ir.ui.menu,name:auction.auction_outils_menu @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/zh_CN.po b/addons/auction/i18n/zh_CN.po index 9a9523d08f4..6cacc6a5460 100644 --- a/addons/auction/i18n/zh_CN.po +++ b/addons/auction/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/auction/i18n/zh_TW.po b/addons/auction/i18n/zh_TW.po index cce3cc25749..97864d427ab 100644 --- a/addons/auction/i18n/zh_TW.po +++ b/addons/auction/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -492,7 +492,6 @@ msgstr "" #. module: auction #: field:auction.lots,gross_revenue:0 #: field:report.auction.view2,gross_revenue:0 -#: field:report.object.encoded,gross_revenue:0 #: field:report.object.encoded.manager,gross_revenue:0 #: field:report.seller.auction2,gross_revenue:0 msgid "Gross revenue" @@ -976,7 +975,6 @@ msgstr "" #. module: auction #: xsl:report.auction.seller.list:0 -#: field:report.object.encoded,adj:0 #: field:report.object.encoded.manager,adj:0 msgid "Adj." msgstr "" @@ -1665,7 +1663,6 @@ msgid "Document Number" msgstr "" #. module: auction -#: field:report.object.encoded,obj_margin:0 #: field:report.object.encoded.manager,obj_margin:0 #: field:report.seller.auction2,net_margin:0 msgid "Net margin" @@ -2015,7 +2012,6 @@ msgstr "" #. module: auction #: field:auction.lots,net_revenue:0 #: field:report.auction.view2,net_revenue:0 -#: field:report.object.encoded,net_revenue:0 #: field:report.object.encoded.manager,net_revenue:0 #: field:report.seller.auction2,net_revenue:0 msgid "Net revenue" @@ -2429,7 +2425,6 @@ msgstr "" #. module: auction #: field:auction.lots,obj_price:0 -#: field:report.auction.estimation.adj.category,obj_price:0 #: field:report.auction.view,adj_price:0 #: field:report.unclassified.objects,obj_price:0 msgid "Adjudication price" diff --git a/addons/audittrail/i18n/ar_AR.po b/addons/audittrail/i18n/ar_AR.po index 6605f7ea217..f5ccf88facb 100644 --- a/addons/audittrail/i18n/ar_AR.po +++ b/addons/audittrail/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24: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 56ce6d616ac..dc26f9c4224 100644 --- a/addons/audittrail/i18n/audittrail.pot +++ b/addons/audittrail/i18n/audittrail.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/bg_BG.po b/addons/audittrail/i18n/bg_BG.po index 55364bd4fe2..554025089bc 100644 --- a/addons/audittrail/i18n/bg_BG.po +++ b/addons/audittrail/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/bs_BS.po b/addons/audittrail/i18n/bs_BS.po index 1dcbd975537..37619dffa9f 100644 --- a/addons/audittrail/i18n/bs_BS.po +++ b/addons/audittrail/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/ca_ES.po b/addons/audittrail/i18n/ca_ES.po index 728c620493c..43d96b7c96c 100644 --- a/addons/audittrail/i18n/ca_ES.po +++ b/addons/audittrail/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/cs_CZ.po b/addons/audittrail/i18n/cs_CZ.po index 45468c216e2..55b485fc3fc 100644 --- a/addons/audittrail/i18n/cs_CZ.po +++ b/addons/audittrail/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/de_DE.po b/addons/audittrail/i18n/de_DE.po index d8b81df310b..cf000dfdbd8 100644 --- a/addons/audittrail/i18n/de_DE.po +++ b/addons/audittrail/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po index c2dc02f61c7..3bc5bac5b27 100644 --- a/addons/audittrail/i18n/es_AR.po +++ b/addons/audittrail/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/es_ES.po b/addons/audittrail/i18n/es_ES.po index 3c7ee9d6d1f..b958018878a 100644 --- a/addons/audittrail/i18n/es_ES.po +++ b/addons/audittrail/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/et_EE.po b/addons/audittrail/i18n/et_EE.po index ad84309aae6..6d01d643318 100644 --- a/addons/audittrail/i18n/et_EE.po +++ b/addons/audittrail/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/fi_FI.po b/addons/audittrail/i18n/fi_FI.po index e2e989d87e8..667a62efe80 100644 --- a/addons/audittrail/i18n/fi_FI.po +++ b/addons/audittrail/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/fr_FR.po b/addons/audittrail/i18n/fr_FR.po index d3646f6025a..4213900185a 100644 --- a/addons/audittrail/i18n/fr_FR.po +++ b/addons/audittrail/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "Ancienne valeur" #. module: audittrail #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: audittrail #: model:ir.actions.wizard,name:audittrail.wizard_audittrail_log diff --git a/addons/audittrail/i18n/hr_HR.po b/addons/audittrail/i18n/hr_HR.po index 9a6403b5492..c66d9c5e278 100644 --- a/addons/audittrail/i18n/hr_HR.po +++ b/addons/audittrail/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/hu_HU.po b/addons/audittrail/i18n/hu_HU.po index 97ab36b3661..e5b02bf4171 100644 --- a/addons/audittrail/i18n/hu_HU.po +++ b/addons/audittrail/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/id_ID.po b/addons/audittrail/i18n/id_ID.po index f8761fb0d6f..c07197c833d 100644 --- a/addons/audittrail/i18n/id_ID.po +++ b/addons/audittrail/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/it_IT.po b/addons/audittrail/i18n/it_IT.po index 45278b4c78b..bc3684a4f5d 100644 --- a/addons/audittrail/i18n/it_IT.po +++ b/addons/audittrail/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/lt_LT.po b/addons/audittrail/i18n/lt_LT.po index 1142bb4d43e..bae3b804952 100644 --- a/addons/audittrail/i18n/lt_LT.po +++ b/addons/audittrail/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po index 4506a149a96..a00ac49a0a9 100644 --- a/addons/audittrail/i18n/nl_BE.po +++ b/addons/audittrail/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/nl_NL.po b/addons/audittrail/i18n/nl_NL.po index 82a6ce42881..7e011688a8f 100644 --- a/addons/audittrail/i18n/nl_NL.po +++ b/addons/audittrail/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/pl_PL.po b/addons/audittrail/i18n/pl_PL.po index d57dc14882a..60c94a97582 100644 --- a/addons/audittrail/i18n/pl_PL.po +++ b/addons/audittrail/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po index 7218817e730..de82527530b 100644 --- a/addons/audittrail/i18n/pt_BR.po +++ b/addons/audittrail/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/pt_PT.po b/addons/audittrail/i18n/pt_PT.po index 0e53aacbe9b..556e6e2d027 100644 --- a/addons/audittrail/i18n/pt_PT.po +++ b/addons/audittrail/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/ro_RO.po b/addons/audittrail/i18n/ro_RO.po index 0ca1167aade..5284612a4b2 100644 --- a/addons/audittrail/i18n/ro_RO.po +++ b/addons/audittrail/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/ru_RU.po b/addons/audittrail/i18n/ru_RU.po index e8b9ac6fd62..d2308bd8947 100644 --- a/addons/audittrail/i18n/ru_RU.po +++ b/addons/audittrail/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/sl_SL.po b/addons/audittrail/i18n/sl_SL.po index 0bcc4534db7..8edeaac1c75 100644 --- a/addons/audittrail/i18n/sl_SL.po +++ b/addons/audittrail/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/cs_CS.po b/addons/audittrail/i18n/sq_AL.po similarity index 97% rename from addons/audittrail/i18n/cs_CS.po rename to addons/audittrail/i18n/sq_AL.po index 9f901e37e29..eebc42a8bdb 100644 --- a/addons/audittrail/i18n/cs_CS.po +++ b/addons/audittrail/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/sv_SE.po b/addons/audittrail/i18n/sv_SE.po index b3bc21b6578..8d5734573bc 100644 --- a/addons/audittrail/i18n/sv_SE.po +++ b/addons/audittrail/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/tr_TR.po b/addons/audittrail/i18n/tr_TR.po index 119f58a5d2f..b7a7a9b689b 100644 --- a/addons/audittrail/i18n/tr_TR.po +++ b/addons/audittrail/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/uk_UK.po b/addons/audittrail/i18n/uk_UA.po similarity index 97% rename from addons/audittrail/i18n/uk_UK.po rename to addons/audittrail/i18n/uk_UA.po index 250028ff0c1..e01986410ef 100644 --- a/addons/audittrail/i18n/uk_UK.po +++ b/addons/audittrail/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/sv_SV.po b/addons/audittrail/i18n/vi_VN.po similarity index 96% rename from addons/audittrail/i18n/sv_SV.po rename to addons/audittrail/i18n/vi_VN.po index 845570c5ac9..04ac384cfeb 100644 --- a/addons/audittrail/i18n/sv_SV.po +++ b/addons/audittrail/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: audittrail #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: audittrail #: field:audittrail.log.line,log_id:0 diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index ebe43965b8e..273d52662ba 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po index 3e73245ee87..1016643e3f6 100644 --- a/addons/audittrail/i18n/zh_TW.po +++ b/addons/audittrail/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/ar_AR.po b/addons/base_contact/i18n/ar_AR.po index ef0a199b226..79edb0cba08 100644 --- a/addons/base_contact/i18n/ar_AR.po +++ b/addons/base_contact/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24: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 8e23f231f09..36b1a0e86b5 100644 --- a/addons/base_contact/i18n/base_contact.pot +++ b/addons/base_contact/i18n/base_contact.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/bg_BG.po b/addons/base_contact/i18n/bg_BG.po index 245638c0646..7ff40bc2187 100644 --- a/addons/base_contact/i18n/bg_BG.po +++ b/addons/base_contact/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/bs_BS.po b/addons/base_contact/i18n/bs_BS.po index f608ccd2750..c52e393e964 100644 --- a/addons/base_contact/i18n/bs_BS.po +++ b/addons/base_contact/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/ca_ES.po b/addons/base_contact/i18n/ca_ES.po index 2145548a7a1..021e8d09f4b 100644 --- a/addons/base_contact/i18n/ca_ES.po +++ b/addons/base_contact/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/cs_CZ.po b/addons/base_contact/i18n/cs_CZ.po index cc1b7d082a6..ec41c100444 100644 --- a/addons/base_contact/i18n/cs_CZ.po +++ b/addons/base_contact/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/de_DE.po b/addons/base_contact/i18n/de_DE.po index 3ea05cb4502..09e2365bcc2 100644 --- a/addons/base_contact/i18n/de_DE.po +++ b/addons/base_contact/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/es_AR.po b/addons/base_contact/i18n/es_AR.po index 90e390c8024..5c533133c95 100644 --- a/addons/base_contact/i18n/es_AR.po +++ b/addons/base_contact/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/es_ES.po b/addons/base_contact/i18n/es_ES.po index 64c749e264c..6ccd060d67a 100644 --- a/addons/base_contact/i18n/es_ES.po +++ b/addons/base_contact/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/et_EE.po b/addons/base_contact/i18n/et_EE.po index ba0f6fd7780..bb36ab4c546 100644 --- a/addons/base_contact/i18n/et_EE.po +++ b/addons/base_contact/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/fi_FI.po b/addons/base_contact/i18n/fi_FI.po index 143cc179609..47733aa3faf 100644 --- a/addons/base_contact/i18n/fi_FI.po +++ b/addons/base_contact/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/fr_FR.po b/addons/base_contact/i18n/fr_FR.po index 4b5150583c5..bd3190a6681 100644 --- a/addons/base_contact/i18n/fr_FR.po +++ b/addons/base_contact/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Séq. du partenaire" #. module: base_contact #: selection:res.partner.job,state:0 msgid "Current" -msgstr "Actuel" +msgstr "Courante" #. module: base_contact #: field:res.partner.contact,first_name:0 @@ -68,7 +68,7 @@ msgstr "Fonction du contact du partenaire" #. module: base_contact #: field:res.partner.job,other:0 msgid "Other" -msgstr "Autre" +msgstr "" #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 @@ -78,7 +78,7 @@ msgstr "Contact vers fonction" #. module: base_contact #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: base_contact #: model:process.transition,name:base_contact.process_transition_partnertoaddress0 @@ -93,7 +93,7 @@ msgstr "# de contacts" #. module: base_contact #: help:res.partner.job,other:0 msgid "Additional phone field" -msgstr "Champ téléphone additionnel" +msgstr "" #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 @@ -133,7 +133,7 @@ msgstr "Fonctions du contact" #. module: base_contact #: model:ir.module.module,shortdesc:base_contact.module_meta_information msgid "Base Contact" -msgstr "Base Contact" +msgstr "" #. module: base_contact #: help:res.partner.job,sequence_partner:0 @@ -212,7 +212,7 @@ msgstr "Séq." #. module: base_contact #: field:res.partner.job,extension:0 msgid "Extension" -msgstr "Extension" +msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 @@ -222,7 +222,7 @@ msgstr "Portable" #. module: base_contact #: help:res.partner.job,extension:0 msgid "Internal/External extension phone number" -msgstr "Extension du numéro de téléphone interne/externe" +msgstr "" #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 @@ -232,7 +232,7 @@ msgstr "Personne avec qui vous travaillez" #. module: base_contact #: view:res.partner.contact:0 msgid "Extra Information" -msgstr "Information complémentaire" +msgstr "Information supplémentaire" #. module: base_contact #: view:res.partner.contact:0 @@ -310,7 +310,7 @@ msgstr "Général" #. module: base_contact #: selection:res.partner.job,state:0 msgid "Past" -msgstr "Passé" +msgstr "Passée" #. module: base_contact #: view:res.partner.contact:0 diff --git a/addons/base_contact/i18n/hr_HR.po b/addons/base_contact/i18n/hr_HR.po index 59a1b3cfdd1..eaa7da88bcb 100644 --- a/addons/base_contact/i18n/hr_HR.po +++ b/addons/base_contact/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -103,7 +103,7 @@ msgstr "" #. module: base_contact #: field:res.partner.job,fax:0 msgid "Fax" -msgstr "" +msgstr "Fax" #. module: base_contact #: field:res.partner.contact,lang_id:0 diff --git a/addons/base_contact/i18n/hu_HU.po b/addons/base_contact/i18n/hu_HU.po index d5e813ef6a8..679f6a6ec83 100644 --- a/addons/base_contact/i18n/hu_HU.po +++ b/addons/base_contact/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/id_ID.po b/addons/base_contact/i18n/id_ID.po index f67bfd794d5..d808ea421c4 100644 --- a/addons/base_contact/i18n/id_ID.po +++ b/addons/base_contact/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/it_IT.po b/addons/base_contact/i18n/it_IT.po index 5186d338ade..381e085faa4 100644 --- a/addons/base_contact/i18n/it_IT.po +++ b/addons/base_contact/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/lt_LT.po b/addons/base_contact/i18n/lt_LT.po index f8ccd9a1f43..29e38c067f3 100644 --- a/addons/base_contact/i18n/lt_LT.po +++ b/addons/base_contact/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" #. module: base_contact #: field:res.partner.job,other:0 msgid "Other" -msgstr "" +msgstr "Kita" #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 diff --git a/addons/base_contact/i18n/nl_BE.po b/addons/base_contact/i18n/nl_BE.po index 830011ef1ed..7ccff8d39b9 100644 --- a/addons/base_contact/i18n/nl_BE.po +++ b/addons/base_contact/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/nl_NL.po b/addons/base_contact/i18n/nl_NL.po index 782f8d67dad..dc206224da3 100644 --- a/addons/base_contact/i18n/nl_NL.po +++ b/addons/base_contact/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/pl_PL.po b/addons/base_contact/i18n/pl_PL.po index c910e1af9bc..ab29fee2aa9 100644 --- a/addons/base_contact/i18n/pl_PL.po +++ b/addons/base_contact/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/pt_BR.po b/addons/base_contact/i18n/pt_BR.po index 7f73234ac60..fedc6db919c 100644 --- a/addons/base_contact/i18n/pt_BR.po +++ b/addons/base_contact/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/pt_PT.po b/addons/base_contact/i18n/pt_PT.po index 3b359a30926..8a9af942b27 100644 --- a/addons/base_contact/i18n/pt_PT.po +++ b/addons/base_contact/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "Função de contacto do terceiro" #. module: base_contact #: field:res.partner.job,other:0 msgid "Other" -msgstr "" +msgstr "Outro" #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 @@ -93,7 +93,7 @@ msgstr "" #. module: base_contact #: help:res.partner.job,other:0 msgid "Additional phone field" -msgstr "" +msgstr "Campo de telefone Adicional" #. module: base_contact #: model:process.node,name:base_contact.process_node_function0 @@ -103,7 +103,7 @@ msgstr "Função" #. module: base_contact #: field:res.partner.job,fax:0 msgid "Fax" -msgstr "" +msgstr "Fax" #. module: base_contact #: field:res.partner.contact,lang_id:0 @@ -212,7 +212,7 @@ msgstr "Seq." #. module: base_contact #: field:res.partner.job,extension:0 msgid "Extension" -msgstr "" +msgstr "Extensão" #. module: base_contact #: field:res.partner.contact,mobile:0 @@ -222,7 +222,7 @@ msgstr "Telemóvel" #. module: base_contact #: help:res.partner.job,extension:0 msgid "Internal/External extension phone number" -msgstr "" +msgstr "Extensão Interna / Externa do número de telefone" #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 diff --git a/addons/base_contact/i18n/ro_RO.po b/addons/base_contact/i18n/ro_RO.po index 1079ef29e75..4b0da17d25f 100644 --- a/addons/base_contact/i18n/ro_RO.po +++ b/addons/base_contact/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/ru_RU.po b/addons/base_contact/i18n/ru_RU.po index d528a929706..5bd525e7d7f 100644 --- a/addons/base_contact/i18n/ru_RU.po +++ b/addons/base_contact/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/sl_SL.po b/addons/base_contact/i18n/sl_SL.po index c49566539aa..48cf77ed037 100644 --- a/addons/base_contact/i18n/sl_SL.po +++ b/addons/base_contact/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/cs_CS.po b/addons/base_contact/i18n/sq_AL.po similarity index 97% rename from addons/base_contact/i18n/cs_CS.po rename to addons/base_contact/i18n/sq_AL.po index cd9125854e3..12bccefff6b 100644 --- a/addons/base_contact/i18n/cs_CS.po +++ b/addons/base_contact/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "" #: view:res.partner.address:0 #: field:res.partner.address,job_ids:0 msgid "Contacts" -msgstr "Kotakty" +msgstr "" #. module: base_contact #: field:res.partner.job,sequence_partner:0 @@ -182,7 +182,7 @@ msgstr "" #. module: base_contact #: view:res.partner:0 msgid "Categories" -msgstr "Kategorie" +msgstr "" #. module: base_contact #: field:res.partner.contact,function_id:0 diff --git a/addons/base_contact/i18n/sv_SE.po b/addons/base_contact/i18n/sv_SE.po index b0535a6457b..637fd47ba18 100644 --- a/addons/base_contact/i18n/sv_SE.po +++ b/addons/base_contact/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/tr_TR.po b/addons/base_contact/i18n/tr_TR.po index 42392cfe0be..1f3cf9ee250 100644 --- a/addons/base_contact/i18n/tr_TR.po +++ b/addons/base_contact/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/uk_UK.po b/addons/base_contact/i18n/uk_UA.po similarity index 98% rename from addons/base_contact/i18n/uk_UK.po rename to addons/base_contact/i18n/uk_UA.po index 12be4ea728c..3b12b07afbf 100644 --- a/addons/base_contact/i18n/uk_UK.po +++ b/addons/base_contact/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/sv_SV.po b/addons/base_contact/i18n/vi_VN.po similarity index 96% rename from addons/base_contact/i18n/sv_SV.po rename to addons/base_contact/i18n/vi_VN.po index 84dd884a574..1c7fca8f8c6 100644 --- a/addons/base_contact/i18n/sv_SV.po +++ b/addons/base_contact/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "" #. module: base_contact #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: base_contact #: field:res.partner.job,function_id:0 @@ -43,7 +43,7 @@ msgstr "" #: view:res.partner.address:0 #: field:res.partner.address,job_ids:0 msgid "Contacts" -msgstr "Kontakter" +msgstr "" #. module: base_contact #: field:res.partner.job,sequence_partner:0 diff --git a/addons/base_contact/i18n/zh_CN.po b/addons/base_contact/i18n/zh_CN.po index 14fc4a5ebdd..0722c744d15 100644 --- a/addons/base_contact/i18n/zh_CN.po +++ b/addons/base_contact/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/zh_TW.po b/addons/base_contact/i18n/zh_TW.po index 5820a66039e..8f58b8bf909 100644 --- a/addons/base_contact/i18n/zh_TW.po +++ b/addons/base_contact/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/ar_AR.po b/addons/base_iban/i18n/ar_AR.po index bb16d3c7d68..2038fd63f91 100644 --- a/addons/base_iban/i18n/ar_AR.po +++ b/addons/base_iban/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/base_iban.pot b/addons/base_iban/i18n/base_iban.pot index 1755ad863b0..b1c8a05720b 100644 --- a/addons/base_iban/i18n/base_iban.pot +++ b/addons/base_iban/i18n/base_iban.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/bg_BG.po b/addons/base_iban/i18n/bg_BG.po index 9bb2e1640af..bb3acb77fd0 100644 --- a/addons/base_iban/i18n/bg_BG.po +++ b/addons/base_iban/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/bs_BS.po b/addons/base_iban/i18n/bs_BS.po index a164a79741a..5c6fad41d70 100644 --- a/addons/base_iban/i18n/bs_BS.po +++ b/addons/base_iban/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/ca_ES.po b/addons/base_iban/i18n/ca_ES.po index b9a2d88d6a1..9e29a78b688 100644 --- a/addons/base_iban/i18n/ca_ES.po +++ b/addons/base_iban/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/cs_CZ.po b/addons/base_iban/i18n/cs_CZ.po index 875e0bf3d28..31ea5472971 100644 --- a/addons/base_iban/i18n/cs_CZ.po +++ b/addons/base_iban/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/de_DE.po b/addons/base_iban/i18n/de_DE.po index 3691c618bb3..c2b8343c400 100644 --- a/addons/base_iban/i18n/de_DE.po +++ b/addons/base_iban/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/es_AR.po b/addons/base_iban/i18n/es_AR.po index c13dcd28596..941410f711e 100644 --- a/addons/base_iban/i18n/es_AR.po +++ b/addons/base_iban/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/es_ES.po b/addons/base_iban/i18n/es_ES.po index 090408152ae..d12b61b5573 100644 --- a/addons/base_iban/i18n/es_ES.po +++ b/addons/base_iban/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/et_EE.po b/addons/base_iban/i18n/et_EE.po index 4d436ce799a..31553e8f815 100644 --- a/addons/base_iban/i18n/et_EE.po +++ b/addons/base_iban/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/fi_FI.po b/addons/base_iban/i18n/fi_FI.po index cb073c82052..84e3f8a05b4 100644 --- a/addons/base_iban/i18n/fi_FI.po +++ b/addons/base_iban/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/fr_FR.po b/addons/base_iban/i18n/fr_FR.po index 2e63110f261..9b8c151ed55 100644 --- a/addons/base_iban/i18n/fr_FR.po +++ b/addons/base_iban/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/hr_HR.po b/addons/base_iban/i18n/hr_HR.po index 85767a35383..d9b3dbc3c54 100644 --- a/addons/base_iban/i18n/hr_HR.po +++ b/addons/base_iban/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/hu_HU.po b/addons/base_iban/i18n/hu_HU.po index 5163c4fb567..31d05cbb3eb 100644 --- a/addons/base_iban/i18n/hu_HU.po +++ b/addons/base_iban/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/id_ID.po b/addons/base_iban/i18n/id_ID.po index 1751979f3db..4bcc5c4c29c 100644 --- a/addons/base_iban/i18n/id_ID.po +++ b/addons/base_iban/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/it_IT.po b/addons/base_iban/i18n/it_IT.po index 9f332b4704c..ab31c10f93a 100644 --- a/addons/base_iban/i18n/it_IT.po +++ b/addons/base_iban/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/lt_LT.po b/addons/base_iban/i18n/lt_LT.po index cdab8bd4388..87da9a1b470 100644 --- a/addons/base_iban/i18n/lt_LT.po +++ b/addons/base_iban/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/nl_BE.po b/addons/base_iban/i18n/nl_BE.po index 726c185dd4c..5720e861572 100644 --- a/addons/base_iban/i18n/nl_BE.po +++ b/addons/base_iban/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/nl_NL.po b/addons/base_iban/i18n/nl_NL.po index 8e03ce914f0..a671321d10a 100644 --- a/addons/base_iban/i18n/nl_NL.po +++ b/addons/base_iban/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/pl_PL.po b/addons/base_iban/i18n/pl_PL.po index 96bc3ea6e67..179e70044ff 100644 --- a/addons/base_iban/i18n/pl_PL.po +++ b/addons/base_iban/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:03+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:03+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/pt_BR.po b/addons/base_iban/i18n/pt_BR.po index 33dc585f7f5..6d1b4e7f791 100644 --- a/addons/base_iban/i18n/pt_BR.po +++ b/addons/base_iban/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/pt_PT.po b/addons/base_iban/i18n/pt_PT.po index 1f5e3f67276..1e6deaaa8de 100644 --- a/addons/base_iban/i18n/pt_PT.po +++ b/addons/base_iban/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/ro_RO.po b/addons/base_iban/i18n/ro_RO.po index 3020bc8ae02..175b951aed3 100644 --- a/addons/base_iban/i18n/ro_RO.po +++ b/addons/base_iban/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/ru_RU.po b/addons/base_iban/i18n/ru_RU.po index 96726d40844..38d658e4a0c 100644 --- a/addons/base_iban/i18n/ru_RU.po +++ b/addons/base_iban/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/sl_SL.po b/addons/base_iban/i18n/sl_SL.po index 01044abebff..086c1e09c11 100644 --- a/addons/base_iban/i18n/sl_SL.po +++ b/addons/base_iban/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/sv_SV.po b/addons/base_iban/i18n/sq_AL.po similarity index 90% rename from addons/base_iban/i18n/sv_SV.po rename to addons/base_iban/i18n/sq_AL.po index 693950c95db..d38aa39513a 100644 --- a/addons/base_iban/i18n/sv_SV.po +++ b/addons/base_iban/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/sv_SE.po b/addons/base_iban/i18n/sv_SE.po index 7b50294c68b..ee33a712f8a 100644 --- a/addons/base_iban/i18n/sv_SE.po +++ b/addons/base_iban/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/tr_TR.po b/addons/base_iban/i18n/tr_TR.po index 1573e3656df..bc58a90b1a9 100644 --- a/addons/base_iban/i18n/tr_TR.po +++ b/addons/base_iban/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/uk_UK.po b/addons/base_iban/i18n/uk_UA.po similarity index 91% rename from addons/base_iban/i18n/uk_UK.po rename to addons/base_iban/i18n/uk_UA.po index 2bafe436e94..af5aefb0ac5 100644 --- a/addons/base_iban/i18n/uk_UK.po +++ b/addons/base_iban/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/cs_CS.po b/addons/base_iban/i18n/vi_VN.po similarity index 90% rename from addons/base_iban/i18n/cs_CS.po rename to addons/base_iban/i18n/vi_VN.po index a5804394284..55df0937b5b 100644 --- a/addons/base_iban/i18n/cs_CS.po +++ b/addons/base_iban/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/zh_CN.po b/addons/base_iban/i18n/zh_CN.po index 050abb0950e..465804d00c4 100644 --- a/addons/base_iban/i18n/zh_CN.po +++ b/addons/base_iban/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/zh_TW.po b/addons/base_iban/i18n/zh_TW.po index f4dc7d6cba2..adc3f01a87f 100644 --- a/addons/base_iban/i18n/zh_TW.po +++ b/addons/base_iban/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/ar_AR.po b/addons/base_module_merge/i18n/ar_AR.po index 0008bf068ff..67936962edd 100644 --- a/addons/base_module_merge/i18n/ar_AR.po +++ b/addons/base_module_merge/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24: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 39257c1459f..cc1d75a3759 100644 --- a/addons/base_module_merge/i18n/base_module_merge.pot +++ b/addons/base_module_merge/i18n/base_module_merge.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/bg_BG.po b/addons/base_module_merge/i18n/bg_BG.po index 3139702024c..ecef15da49a 100644 --- a/addons/base_module_merge/i18n/bg_BG.po +++ b/addons/base_module_merge/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/bs_BS.po b/addons/base_module_merge/i18n/bs_BS.po index c3dd7dba13c..d8b16763626 100644 --- a/addons/base_module_merge/i18n/bs_BS.po +++ b/addons/base_module_merge/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/ca_ES.po b/addons/base_module_merge/i18n/ca_ES.po index a46810f5842..2485cecad00 100644 --- a/addons/base_module_merge/i18n/ca_ES.po +++ b/addons/base_module_merge/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/cs_CZ.po b/addons/base_module_merge/i18n/cs_CZ.po index 9c1fbbae07c..3e5c10be990 100644 --- a/addons/base_module_merge/i18n/cs_CZ.po +++ b/addons/base_module_merge/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/de_DE.po b/addons/base_module_merge/i18n/de_DE.po index a3cea226454..08501737003 100644 --- a/addons/base_module_merge/i18n/de_DE.po +++ b/addons/base_module_merge/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/es_AR.po b/addons/base_module_merge/i18n/es_AR.po index b12806b77f5..a2072468664 100644 --- a/addons/base_module_merge/i18n/es_AR.po +++ b/addons/base_module_merge/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/es_EC.po b/addons/base_module_merge/i18n/es_EC.po index 47b413b9951..163e686894a 100644 --- a/addons/base_module_merge/i18n/es_EC.po +++ b/addons/base_module_merge/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:07+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:59+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_module_merge diff --git a/addons/base_module_merge/i18n/es_ES.po b/addons/base_module_merge/i18n/es_ES.po index f0f4b13d062..cdb102bf0df 100644 --- a/addons/base_module_merge/i18n/es_ES.po +++ b/addons/base_module_merge/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/et_EE.po b/addons/base_module_merge/i18n/et_EE.po index 3ef1de10b16..3249a6a81ab 100644 --- a/addons/base_module_merge/i18n/et_EE.po +++ b/addons/base_module_merge/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/fi_FI.po b/addons/base_module_merge/i18n/fi_FI.po index ee7a4d86394..47a45dfc7fe 100644 --- a/addons/base_module_merge/i18n/fi_FI.po +++ b/addons/base_module_merge/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/fr_FR.po b/addons/base_module_merge/i18n/fr_FR.po index 0504df3f4aa..0bf31b51362 100644 --- a/addons/base_module_merge/i18n/fr_FR.po +++ b/addons/base_module_merge/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/hr_HR.po b/addons/base_module_merge/i18n/hr_HR.po index 75d95aff57d..4370c44831e 100644 --- a/addons/base_module_merge/i18n/hr_HR.po +++ b/addons/base_module_merge/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/hu_HU.po b/addons/base_module_merge/i18n/hu_HU.po index daa89abcd38..8b1c9e0a2c9 100644 --- a/addons/base_module_merge/i18n/hu_HU.po +++ b/addons/base_module_merge/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/id_ID.po b/addons/base_module_merge/i18n/id_ID.po index 62a35b7549e..afc67c157a4 100644 --- a/addons/base_module_merge/i18n/id_ID.po +++ b/addons/base_module_merge/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/it_IT.po b/addons/base_module_merge/i18n/it_IT.po index a126643fb59..dd91c62f196 100644 --- a/addons/base_module_merge/i18n/it_IT.po +++ b/addons/base_module_merge/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/lt_LT.po b/addons/base_module_merge/i18n/lt_LT.po index 017ac1aa59b..19fba9556d3 100644 --- a/addons/base_module_merge/i18n/lt_LT.po +++ b/addons/base_module_merge/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/nl_BE.po b/addons/base_module_merge/i18n/nl_BE.po index 23b74a8f4fe..dcce6ddf7f3 100644 --- a/addons/base_module_merge/i18n/nl_BE.po +++ b/addons/base_module_merge/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/nl_NL.po b/addons/base_module_merge/i18n/nl_NL.po index edaea9eeb24..bf7d37e64c8 100644 --- a/addons/base_module_merge/i18n/nl_NL.po +++ b/addons/base_module_merge/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/pl_PL.po b/addons/base_module_merge/i18n/pl_PL.po index 591e86c22c1..54067710161 100644 --- a/addons/base_module_merge/i18n/pl_PL.po +++ b/addons/base_module_merge/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/pt_BR.po b/addons/base_module_merge/i18n/pt_BR.po index 49fc67f83c2..99f6ad6ca1f 100644 --- a/addons/base_module_merge/i18n/pt_BR.po +++ b/addons/base_module_merge/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/pt_PT.po b/addons/base_module_merge/i18n/pt_PT.po index b343d3c6a20..3f468fdb691 100644 --- a/addons/base_module_merge/i18n/pt_PT.po +++ b/addons/base_module_merge/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/ro_RO.po b/addons/base_module_merge/i18n/ro_RO.po index e124506d108..5623e3e7a07 100644 --- a/addons/base_module_merge/i18n/ro_RO.po +++ b/addons/base_module_merge/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/ru_RU.po b/addons/base_module_merge/i18n/ru_RU.po index 482cccc104b..bde79efcd4c 100644 --- a/addons/base_module_merge/i18n/ru_RU.po +++ b/addons/base_module_merge/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/sl_SL.po b/addons/base_module_merge/i18n/sl_SL.po index 6daea5099b3..4bff08df200 100644 --- a/addons/base_module_merge/i18n/sl_SL.po +++ b/addons/base_module_merge/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/uk_UK.po b/addons/base_module_merge/i18n/sq_AL.po similarity index 96% rename from addons/base_module_merge/i18n/uk_UK.po rename to addons/base_module_merge/i18n/sq_AL.po index 0a0500cb035..f36c1a24071 100644 --- a/addons/base_module_merge/i18n/uk_UK.po +++ b/addons/base_module_merge/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/sv_SE.po b/addons/base_module_merge/i18n/sv_SE.po index b3bd7d0423d..697b62c6a17 100644 --- a/addons/base_module_merge/i18n/sv_SE.po +++ b/addons/base_module_merge/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/tr_TR.po b/addons/base_module_merge/i18n/tr_TR.po index 9ef17fd5fb0..142ac7aa856 100644 --- a/addons/base_module_merge/i18n/tr_TR.po +++ b/addons/base_module_merge/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/sv_SV.po b/addons/base_module_merge/i18n/uk_UA.po similarity index 96% rename from addons/base_module_merge/i18n/sv_SV.po rename to addons/base_module_merge/i18n/uk_UA.po index 474945ad719..6ad5d40062d 100644 --- a/addons/base_module_merge/i18n/sv_SV.po +++ b/addons/base_module_merge/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/cs_CS.po b/addons/base_module_merge/i18n/vi_VN.po similarity index 96% rename from addons/base_module_merge/i18n/cs_CS.po rename to addons/base_module_merge/i18n/vi_VN.po index 4719647112d..c0eccaf0ec5 100644 --- a/addons/base_module_merge/i18n/cs_CS.po +++ b/addons/base_module_merge/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/zh_CN.po b/addons/base_module_merge/i18n/zh_CN.po index 99ecf134135..4861b7ecd9c 100644 --- a/addons/base_module_merge/i18n/zh_CN.po +++ b/addons/base_module_merge/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/zh_TW.po b/addons/base_module_merge/i18n/zh_TW.po index 364f9b8b2af..fc17a0e7e02 100644 --- a/addons/base_module_merge/i18n/zh_TW.po +++ b/addons/base_module_merge/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/ar_AR.po b/addons/base_module_publish/i18n/ar_AR.po index 277e6f56796..eb011c7d32b 100644 --- a/addons/base_module_publish/i18n/ar_AR.po +++ b/addons/base_module_publish/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+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 2fae41fb8f2..1a6962a1d6b 100644 --- a/addons/base_module_publish/i18n/base_module_publish.pot +++ b/addons/base_module_publish/i18n/base_module_publish.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/bg_BG.po b/addons/base_module_publish/i18n/bg_BG.po index b9b892dfde3..a0db7f71024 100644 --- a/addons/base_module_publish/i18n/bg_BG.po +++ b/addons/base_module_publish/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/bs_BS.po b/addons/base_module_publish/i18n/bs_BS.po index 47220083d7f..89ea2a82c1a 100644 --- a/addons/base_module_publish/i18n/bs_BS.po +++ b/addons/base_module_publish/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/ca_ES.po b/addons/base_module_publish/i18n/ca_ES.po index 99250332815..2f58a990bdb 100644 --- a/addons/base_module_publish/i18n/ca_ES.po +++ b/addons/base_module_publish/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/cs_CZ.po b/addons/base_module_publish/i18n/cs_CZ.po index b5ace40104b..c99208cced9 100644 --- a/addons/base_module_publish/i18n/cs_CZ.po +++ b/addons/base_module_publish/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/de_DE.po b/addons/base_module_publish/i18n/de_DE.po index ea518ce520c..093c0a182f8 100644 --- a/addons/base_module_publish/i18n/de_DE.po +++ b/addons/base_module_publish/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/es_AR.po b/addons/base_module_publish/i18n/es_AR.po index c613b5079de..ddf7d2f3d5b 100644 --- a/addons/base_module_publish/i18n/es_AR.po +++ b/addons/base_module_publish/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/es_ES.po b/addons/base_module_publish/i18n/es_ES.po index 99146539749..1777879cccd 100644 --- a/addons/base_module_publish/i18n/es_ES.po +++ b/addons/base_module_publish/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/et_EE.po b/addons/base_module_publish/i18n/et_EE.po index c1e29f45cba..a0c3e5e090a 100644 --- a/addons/base_module_publish/i18n/et_EE.po +++ b/addons/base_module_publish/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/fi_FI.po b/addons/base_module_publish/i18n/fi_FI.po index 6e478ce803e..36d18a0c346 100644 --- a/addons/base_module_publish/i18n/fi_FI.po +++ b/addons/base_module_publish/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/fr_FR.po b/addons/base_module_publish/i18n/fr_FR.po index d7953fb54dc..b5e5d92b09c 100644 --- a/addons/base_module_publish/i18n/fr_FR.po +++ b/addons/base_module_publish/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/hr_HR.po b/addons/base_module_publish/i18n/hr_HR.po index e2c20f36cdc..950b39e4053 100644 --- a/addons/base_module_publish/i18n/hr_HR.po +++ b/addons/base_module_publish/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/hu_HU.po b/addons/base_module_publish/i18n/hu_HU.po index 1924bb787c0..47e414798a0 100644 --- a/addons/base_module_publish/i18n/hu_HU.po +++ b/addons/base_module_publish/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/id_ID.po b/addons/base_module_publish/i18n/id_ID.po index 1ca7fb2880b..dd9ca04c80a 100644 --- a/addons/base_module_publish/i18n/id_ID.po +++ b/addons/base_module_publish/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/it_IT.po b/addons/base_module_publish/i18n/it_IT.po index 32a46c14565..0c384797d4e 100644 --- a/addons/base_module_publish/i18n/it_IT.po +++ b/addons/base_module_publish/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/lt_LT.po b/addons/base_module_publish/i18n/lt_LT.po index 1a1681b415f..6fc465bfbfa 100644 --- a/addons/base_module_publish/i18n/lt_LT.po +++ b/addons/base_module_publish/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/nl_BE.po b/addons/base_module_publish/i18n/nl_BE.po index 41947e064ae..3c70f515a42 100644 --- a/addons/base_module_publish/i18n/nl_BE.po +++ b/addons/base_module_publish/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/nl_NL.po b/addons/base_module_publish/i18n/nl_NL.po index 5c589ad5a0f..12a0471b076 100644 --- a/addons/base_module_publish/i18n/nl_NL.po +++ b/addons/base_module_publish/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/pl_PL.po b/addons/base_module_publish/i18n/pl_PL.po index 3013e023f0b..24cf73eeddc 100644 --- a/addons/base_module_publish/i18n/pl_PL.po +++ b/addons/base_module_publish/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/pt_BR.po b/addons/base_module_publish/i18n/pt_BR.po index 4ce1d1c809c..8f853679812 100644 --- a/addons/base_module_publish/i18n/pt_BR.po +++ b/addons/base_module_publish/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/pt_PT.po b/addons/base_module_publish/i18n/pt_PT.po index 9c09ef9c4be..d35536c9cca 100644 --- a/addons/base_module_publish/i18n/pt_PT.po +++ b/addons/base_module_publish/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/ro_RO.po b/addons/base_module_publish/i18n/ro_RO.po index 74bc5d4c41c..3103e3f7dcf 100644 --- a/addons/base_module_publish/i18n/ro_RO.po +++ b/addons/base_module_publish/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/ru_RU.po b/addons/base_module_publish/i18n/ru_RU.po index 3cdf12d18fa..c1cb53aee4c 100644 --- a/addons/base_module_publish/i18n/ru_RU.po +++ b/addons/base_module_publish/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/sl_SL.po b/addons/base_module_publish/i18n/sl_SL.po index eb2b43524af..5739a8cca52 100644 --- a/addons/base_module_publish/i18n/sl_SL.po +++ b/addons/base_module_publish/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/sv_SV.po b/addons/base_module_publish/i18n/sq_AL.po similarity index 98% rename from addons/base_module_publish/i18n/sv_SV.po rename to addons/base_module_publish/i18n/sq_AL.po index 8fdee1d5365..ae267f99c4d 100644 --- a/addons/base_module_publish/i18n/sv_SV.po +++ b/addons/base_module_publish/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/sv_SE.po b/addons/base_module_publish/i18n/sv_SE.po index 35012b174df..03c347742d9 100644 --- a/addons/base_module_publish/i18n/sv_SE.po +++ b/addons/base_module_publish/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/tr_TR.po b/addons/base_module_publish/i18n/tr_TR.po index 2cbba6dc8a7..75c08bdf281 100644 --- a/addons/base_module_publish/i18n/tr_TR.po +++ b/addons/base_module_publish/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/uk_UK.po b/addons/base_module_publish/i18n/uk_UA.po similarity index 98% rename from addons/base_module_publish/i18n/uk_UK.po rename to addons/base_module_publish/i18n/uk_UA.po index fbc0cf304df..d536b3fb1e4 100644 --- a/addons/base_module_publish/i18n/uk_UK.po +++ b/addons/base_module_publish/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/cs_CS.po b/addons/base_module_publish/i18n/vi_VN.po similarity index 90% rename from addons/base_module_publish/i18n/cs_CS.po rename to addons/base_module_publish/i18n/vi_VN.po index 9a7308a1abf..bd8520b515f 100644 --- a/addons/base_module_publish/i18n/cs_CS.po +++ b/addons/base_module_publish/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,45 +18,45 @@ msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,category:0 msgid "Category" -msgstr "Kategorie" +msgstr "" #. module: base_module_publish #: wizard_view:base_module_publish.module_publish,publish:0 msgid "Information" -msgstr "Informace" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,shortdesc:0 msgid "Small description" -msgstr "Krátký popis" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,author:0 msgid "Author" -msgstr "Autor" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,init,text:0 #: wizard_field:base_module_publish.module_publish_all,init,text:0 msgid "Introduction" -msgstr "Úvod" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,url:0 #: wizard_field:base_module_publish.module_publish,step1,url_download:0 msgid "Download URL" -msgstr "Adresa pro stažení" +msgstr "" #. module: base_module_publish #: wizard_button:base_module_publish.module_publish,step2,publish:0 #: wizard_button:base_module_publish.module_publish_all,login,publish:0 msgid "Publish" -msgstr "Publikovat" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_export,zip,module_filename:0 msgid "Filename" -msgstr "Název souboru" +msgstr "" #. module: base_module_publish #: model:ir.module.module,shortdesc:base_module_publish.module_meta_information @@ -71,7 +71,7 @@ msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,version:0 msgid "Version" -msgstr "Verze" +msgstr "" #. module: base_module_publish #: selection:base_module_publish.module_publish,step1,license:0 @@ -107,7 +107,7 @@ msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,website:0 msgid "Website" -msgstr "Webová stránka" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_export,zip,module_file:0 @@ -117,13 +117,13 @@ msgstr "" #. module: base_module_publish #: wizard_view:base_module_publish.module_export,zip:0 msgid "Finish" -msgstr "Konec" +msgstr "" #. module: base_module_publish #: wizard_view:base_module_publish.module_publish,step1:0 #: wizard_field:base_module_publish.module_publish,step1,description:0 msgid "Description" -msgstr "Popis" +msgstr "" #. module: base_module_publish #: wizard_view:base_module_publish.module_publish,step2:0 @@ -135,14 +135,14 @@ msgstr "" #: wizard_view:base_module_publish.module_publish,init:0 #: wizard_view:base_module_publish.module_publish_all,init:0 msgid "Publication information" -msgstr "Informace o zveřejnění" +msgstr "" #. module: base_module_publish #: wizard_button:base_module_publish.module_export,zip,end:0 #: wizard_button:base_module_publish.module_publish,publish,end:0 #: wizard_button:base_module_publish.module_publish_all,publish,end:0 msgid "Close" -msgstr "Zavřít" +msgstr "" #. module: base_module_publish #: wizard_view:base_module_publish.module_publish,init:0 @@ -153,12 +153,12 @@ msgstr "Zavřít" #: wizard_view:base_module_publish.module_publish_all,login:0 #: wizard_view:base_module_publish.module_publish_all,publish:0 msgid "Module publication" -msgstr "Zveřejnění modulu" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,license:0 msgid "Licence" -msgstr "Licence" +msgstr "" #. module: base_module_publish #: wizard_view:base_module_publish.module_publish,step1:0 @@ -169,7 +169,7 @@ msgstr "" #: wizard_field:base_module_publish.module_publish,step2,password:0 #: wizard_field:base_module_publish.module_publish_all,login,password:0 msgid "Password" -msgstr "Heslo" +msgstr "" #. module: base_module_publish #: model:ir.actions.wizard,name:base_module_publish.wizard_base_module_publish_all @@ -179,7 +179,7 @@ msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,publish,result:0 msgid "Result page" -msgstr "Stránka s výsledky" +msgstr "" #. module: base_module_publish #: wizard_button:base_module_publish.module_export,init,zip:0 @@ -190,22 +190,22 @@ msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,name:0 msgid "Name" -msgstr "Název" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish_all,publish,update:0 msgid "Modules updated" -msgstr "Moduly aktualizovány" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish_all,publish,error:0 msgid "Modules in error" -msgstr "Chyby modulů" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,docurl:0 msgid "Documentation URL" -msgstr "Adresa dokumentace" +msgstr "" #. module: base_module_publish #: help:base_module_publish.module_publish,step1,image:0 @@ -215,18 +215,18 @@ msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,publish,text_end:0 msgid "Summary" -msgstr "Rekapitulace" +msgstr "" #. module: base_module_publish #: wizard_button:base_module_publish.module_publish,init,step1:0 #: wizard_button:base_module_publish.module_publish,step1,step2:0 msgid "Continue" -msgstr "Pokračovat" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish_all,publish,already:0 msgid "Modules already updated" -msgstr "Moduly jsou již aktualizovány" +msgstr "" #. module: base_module_publish #: wizard_view:base_module_publish.module_export,init:0 @@ -244,7 +244,7 @@ msgstr "" #: wizard_field:base_module_publish.module_publish,step2,login:0 #: wizard_field:base_module_publish.module_publish_all,login,login:0 msgid "Login" -msgstr "Uživatelské jméno" +msgstr "" #. module: base_module_publish #: selection:base_module_publish.module_publish,step1,license:0 @@ -269,23 +269,23 @@ msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,include_src:0 msgid "Include source" -msgstr "Vložit zdrojový text" +msgstr "" #. module: base_module_publish #: wizard_view:base_module_publish.module_publish,step1:0 msgid "General" -msgstr "Obecné" +msgstr "" #. module: base_module_publish #: wizard_view:base_module_publish.module_publish,step2:0 #: wizard_view:base_module_publish.module_publish_all,login:0 msgid "User information" -msgstr "Informace pro uživatele" +msgstr "" #. module: base_module_publish #: wizard_view:base_module_publish.module_publish,publish:0 msgid "Result" -msgstr "Výsledek" +msgstr "" #. module: base_module_publish #: wizard_button:base_module_publish.module_export,init,end:0 @@ -295,17 +295,17 @@ msgstr "Výsledek" #: wizard_button:base_module_publish.module_publish_all,init,end:0 #: wizard_button:base_module_publish.module_publish_all,login,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,image:0 msgid "Image file" -msgstr "Soubor s obrázkem" +msgstr "" #. module: base_module_publish #: wizard_field:base_module_publish.module_publish,step1,operation:0 msgid "Operation" -msgstr "Operace" +msgstr "" #. module: base_module_publish #: help:base_module_publish.module_publish,step1,docurl:0 @@ -321,5 +321,5 @@ msgstr "" #: wizard_button:base_module_publish.module_publish,step1,init:0 #: wizard_button:base_module_publish.module_publish,step2,step1:0 msgid "Previous" -msgstr "Předchozí" +msgstr "" diff --git a/addons/base_module_publish/i18n/zh_CN.po b/addons/base_module_publish/i18n/zh_CN.po index 392d2a27265..a5e499c7704 100644 --- a/addons/base_module_publish/i18n/zh_CN.po +++ b/addons/base_module_publish/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/zh_TW.po b/addons/base_module_publish/i18n/zh_TW.po index 7284ed115e5..8375e6acfa3 100644 --- a/addons/base_module_publish/i18n/zh_TW.po +++ b/addons/base_module_publish/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_quality/i18n/ar_AR.po b/addons/base_module_quality/i18n/ar_AR.po index 0c0354c5de5..b5249f1e935 100644 --- a/addons/base_module_quality/i18n/ar_AR.po +++ b/addons/base_module_quality/i18n/ar_AR.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:00:15+0000\n" -"PO-Revision-Date: 2009-01-03 02:00:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" #. module: base_module_quality @@ -36,21 +26,132 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/base_module_quality.pot b/addons/base_module_quality/i18n/base_module_quality.pot index d2f44ccc23e..be66dbffd7f 100644 --- a/addons/base_module_quality/i18n/base_module_quality.pot +++ b/addons/base_module_quality/i18n/base_module_quality.pot @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:18:25+0000\n" -"PO-Revision-Date: 2009-01-03 02:18:25+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:quality.check.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:quality.check.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" #. module: base_module_quality @@ -36,39 +26,150 @@ 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 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:wizard.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail -msgid "quality.check.detail" +#: field:module.quality.detail,state:0 +msgid "State" msgstr "" #. module: base_module_quality -#: view:wizard.quality.check:0 -#: view:quality.check.detail:0 +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail +msgid "module.quality.detail" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: view:module.quality.detail:0 msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "wizard.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:wizard.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:quality.check.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/bg_BG.po b/addons/base_module_quality/i18n/bg_BG.po index 5a9da30c7e8..093f3df3fd7 100644 --- a/addons/base_module_quality/i18n/bg_BG.po +++ b/addons/base_module_quality/i18n/bg_BG.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:00:56+0000\n" -"PO-Revision-Date: 2009-01-03 02:00:56+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "Невалиден XML за преглед на архитектурата" #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/bs_BS.po b/addons/base_module_quality/i18n/bs_BS.po index 214027f6faf..1538930a61b 100644 --- a/addons/base_module_quality/i18n/bs_BS.po +++ b/addons/base_module_quality/i18n/bs_BS.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:17:41+0000\n" -"PO-Revision-Date: 2009-01-03 02:17:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +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 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "Neodgovarajući XML za arhitekturu prikaza!" #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/ca_ES.po b/addons/base_module_quality/i18n/ca_ES.po index 53637ebd6cf..58ef3774a52 100644 --- a/addons/base_module_quality/i18n/ca_ES.po +++ b/addons/base_module_quality/i18n/ca_ES.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:01:35+0000\n" -"PO-Revision-Date: 2009-01-03 02:01:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "XML invàlid per a la definició de la vista!" #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/cs_CZ.po b/addons/base_module_quality/i18n/cs_CZ.po index 62c5ce10b22..b647302aaa5 100644 --- a/addons/base_module_quality/i18n/cs_CZ.po +++ b/addons/base_module_quality/i18n/cs_CZ.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:04:15+0000\n" -"PO-Revision-Date: 2009-01-03 02:04:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" #. module: base_module_quality @@ -36,21 +26,132 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/de_DE.po b/addons/base_module_quality/i18n/de_DE.po index 7ef5729e297..64de6abf443 100644 --- a/addons/base_module_quality/i18n/de_DE.po +++ b/addons/base_module_quality/i18n/de_DE.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:06:58+0000\n" -"PO-Revision-Date: 2009-01-03 02:06:58+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,41 +16,142 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" #. module: base_module_quality #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Fehlerhafter xml Code für diese Ansicht!" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/es_AR.po b/addons/base_module_quality/i18n/es_AR.po index a764318b134..9a314035ad7 100644 --- a/addons/base_module_quality/i18n/es_AR.po +++ b/addons/base_module_quality/i18n/es_AR.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:13:59+0000\n" -"PO-Revision-Date: 2009-01-03 02:13:59+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" #. module: base_module_quality @@ -36,21 +26,132 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/es_ES.po b/addons/base_module_quality/i18n/es_ES.po index 0b684af333c..e6a730f834e 100644 --- a/addons/base_module_quality/i18n/es_ES.po +++ b/addons/base_module_quality/i18n/es_ES.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:14:45+0000\n" -"PO-Revision-Date: 2009-01-03 02:14:45+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "¡XML inválido para la definición de la vista!" #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/et_EE.po b/addons/base_module_quality/i18n/et_EE.po index 3c75cb382ca..b1a6cd7e1a7 100644 --- a/addons/base_module_quality/i18n/et_EE.po +++ b/addons/base_module_quality/i18n/et_EE.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:05:36+0000\n" -"PO-Revision-Date: 2009-01-03 02:05:36+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,41 +16,142 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Vigane vaate arhitektuuri XML!" - #. module: base_module_quality #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" #. module: base_module_quality -#: field:module.quality.detail,detail:0 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Vigane XML vaate arhitektuurile!" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/fr_FR.po b/addons/base_module_quality/i18n/fr_FR.po index 182fd177005..504a95d5db0 100644 --- a/addons/base_module_quality/i18n/fr_FR.po +++ b/addons/base_module_quality/i18n/fr_FR.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:06:17+0000\n" -"PO-Revision-Date: 2009-01-03 02:06:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "XML non valide pour l'architecture de la vue" #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères spéciaux !" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/hr_HR.po b/addons/base_module_quality/i18n/hr_HR.po index 1d785eac40d..74597c779fe 100644 --- a/addons/base_module_quality/i18n/hr_HR.po +++ b/addons/base_module_quality/i18n/hr_HR.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:03:35+0000\n" -"PO-Revision-Date: 2009-01-03 02:03:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" #. module: base_module_quality @@ -36,21 +26,132 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/hu_HU.po b/addons/base_module_quality/i18n/hu_HU.po index 0295de5226f..d9274b3fb6c 100644 --- a/addons/base_module_quality/i18n/hu_HU.po +++ b/addons/base_module_quality/i18n/hu_HU.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:07:39+0000\n" -"PO-Revision-Date: 2009-01-03 02:07:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" #. module: base_module_quality @@ -36,21 +26,132 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/it_IT.po b/addons/base_module_quality/i18n/it_IT.po index 82490ab4073..c1cf4b41b38 100644 --- a/addons/base_module_quality/i18n/it_IT.po +++ b/addons/base_module_quality/i18n/it_IT.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:08:21+0000\n" -"PO-Revision-Date: 2009-01-03 02:08:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "XML non valido per Visualizzazione Architettura!" #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Il nome oggetto deve iniziare con x_ e non può contenere caratteri speciali !" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/lt_LT.po b/addons/base_module_quality/i18n/lt_LT.po index 936b89c5868..83f2004b301 100644 --- a/addons/base_module_quality/i18n/lt_LT.po +++ b/addons/base_module_quality/i18n/lt_LT.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:09:02+0000\n" -"PO-Revision-Date: 2009-01-03 02:09:02+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" #. module: base_module_quality @@ -36,21 +26,132 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/nl_NL.po b/addons/base_module_quality/i18n/nl_NL.po index 585d3d9aacf..7ac728844e9 100644 --- a/addons/base_module_quality/i18n/nl_NL.po +++ b/addons/base_module_quality/i18n/nl_NL.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:04:56+0000\n" -"PO-Revision-Date: 2009-01-03 02:04:56+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,41 +16,142 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Ongeldige XML voor weergave opbouw" - #. module: base_module_quality #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" #. module: base_module_quality -#: field:module.quality.detail,detail:0 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Ongeldige XML voor overzicht" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/pl_PL.po b/addons/base_module_quality/i18n/pl_PL.po index 85cd247350b..c148bc72fb7 100644 --- a/addons/base_module_quality/i18n/pl_PL.po +++ b/addons/base_module_quality/i18n/pl_PL.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:09:43+0000\n" -"PO-Revision-Date: 2009-01-03 02:09:43+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "XML niewłaściwy dla tej architektury wyświetlania!" #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/pt_BR.po b/addons/base_module_quality/i18n/pt_BR.po index 6ab229d6eea..4968f24f3b7 100644 --- a/addons/base_module_quality/i18n/pt_BR.po +++ b/addons/base_module_quality/i18n/pt_BR.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:10:25+0000\n" -"PO-Revision-Date: 2009-01-03 02:10:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "Invalido XML para Arquitetura da View" #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/pt_PT.po b/addons/base_module_quality/i18n/pt_PT.po index dad89f71a20..8bd52bdc1f0 100644 --- a/addons/base_module_quality/i18n/pt_PT.po +++ b/addons/base_module_quality/i18n/pt_PT.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:11:07+0000\n" -"PO-Revision-Date: 2009-01-03 02:11:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "XML inválido para a arquitectura de vista" #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "O nome do objecto deve começar com x_ e não pode conter um caracter especial!" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/ro_RO.po b/addons/base_module_quality/i18n/ro_RO.po index 8a1790e667e..619fd6a2775 100644 --- a/addons/base_module_quality/i18n/ro_RO.po +++ b/addons/base_module_quality/i18n/ro_RO.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:11:49+0000\n" -"PO-Revision-Date: 2009-01-03 02:11:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" #. module: base_module_quality @@ -36,21 +26,132 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/ru_RU.po b/addons/base_module_quality/i18n/ru_RU.po index 8866fa39f2d..cbe1ec41238 100644 --- a/addons/base_module_quality/i18n/ru_RU.po +++ b/addons/base_module_quality/i18n/ru_RU.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:12:32+0000\n" -"PO-Revision-Date: 2009-01-03 02:12:32+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "Неправильный XML для просмотра архитектуры!" #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/sl_SL.po b/addons/base_module_quality/i18n/sl_SL.po index d5e1e04e714..3a43651b119 100644 --- a/addons/base_module_quality/i18n/sl_SL.po +++ b/addons/base_module_quality/i18n/sl_SL.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:13:15+0000\n" -"PO-Revision-Date: 2009-01-03 02:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "Neveljaven XML za arhitekturo pogleda." #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/sq_AL.po b/addons/base_module_quality/i18n/sq_AL.po new file mode 100644 index 00000000000..158668f7d29 --- /dev/null +++ b/addons/base_module_quality/i18n/sq_AL.po @@ -0,0 +1,175 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * base_module_quality +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.4\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+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_module_quality +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +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 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail +msgid "module.quality.detail" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: view:module.quality.detail:0 +msgid "Result" +msgstr "" + +#. module: base_module_quality +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,message:0 +msgid "Message" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,quality_check_id:0 +msgid "Quality" +msgstr "" + diff --git a/addons/base_module_quality/i18n/sv_SE.po b/addons/base_module_quality/i18n/sv_SE.po index 6e28079bb9e..59fa0a36988 100644 --- a/addons/base_module_quality/i18n/sv_SE.po +++ b/addons/base_module_quality/i18n/sv_SE.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:15:28+0000\n" -"PO-Revision-Date: 2009-01-03 02:15:28+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ 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 !" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/tr_TR.po b/addons/base_module_quality/i18n/tr_TR.po index 7395bc56d32..c08f86913d6 100644 --- a/addons/base_module_quality/i18n/tr_TR.po +++ b/addons/base_module_quality/i18n/tr_TR.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:16:12+0000\n" -"PO-Revision-Date: 2009-01-03 02:16:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,13 +16,69 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +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 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" msgstr "" #. module: base_module_quality #: view:module.quality.detail:0 -msgid "Summary" +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." msgstr "" #. module: base_module_quality @@ -31,26 +87,71 @@ msgid "Invalid XML for View Architecture!" msgstr "Görüntüleme mimarisi için Geçersiz XML" #. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 #: view:module.quality.detail:0 -msgid "Detail" +#: field:module.quality.detail,summary:0 +msgid "Summary" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/uk_UA.po b/addons/base_module_quality/i18n/uk_UA.po new file mode 100644 index 00000000000..57316f421d5 --- /dev/null +++ b/addons/base_module_quality/i18n/uk_UA.po @@ -0,0 +1,175 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * base_module_quality +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.4\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+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_module_quality +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" + +#. module: base_module_quality +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Неправильний XML для Архітектури Вигляду!" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail +msgid "module.quality.detail" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: view:module.quality.detail:0 +msgid "Result" +msgstr "" + +#. module: base_module_quality +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,message:0 +msgid "Message" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,quality_check_id:0 +msgid "Quality" +msgstr "" + diff --git a/addons/base_module_quality/i18n/uk_UK.po b/addons/base_module_quality/i18n/uk_UK.po deleted file mode 100644 index 92174cf4277..00000000000 --- a/addons/base_module_quality/i18n/uk_UK.po +++ /dev/null @@ -1,74 +0,0 @@ -# Translation of OpenERP Server. -# This file containt the translation of the following modules: -# * base_module_quality -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:16:57+0000\n" -"PO-Revision-Date: 2009-01-03 02:16:57+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_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Неправильний XML для Архітектури Вигляду!" - -#. module: base_module_quality -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" - -#. module: base_module_quality -#: field:module.quality.detail,detail:0 -#: view:module.quality.detail:0 -msgid "Detail" -msgstr "" - -#. module: base_module_quality -#: field:module.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 "module.quality.detail" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.check:0 -#: view:module.quality.detail:0 -msgid "Result" -msgstr "" - -#. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" -msgstr "" - -#. module: base_module_quality -#: field:module.quality.detail,quality_check:0 -msgid "Quality" -msgstr "" - diff --git a/addons/base_module_quality/i18n/vi_VN.po b/addons/base_module_quality/i18n/vi_VN.po new file mode 100644 index 00000000000..008f5d0a1f5 --- /dev/null +++ b/addons/base_module_quality/i18n/vi_VN.po @@ -0,0 +1,175 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * base_module_quality +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.4\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_module_quality +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" +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 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,note:0 +msgid "Note" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail +msgid "module.quality.detail" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: view:module.quality.detail:0 +msgid "Result" +msgstr "" + +#. module: base_module_quality +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,message:0 +msgid "Message" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,quality_check_id:0 +msgid "Quality" +msgstr "" + diff --git a/addons/base_module_quality/i18n/zh_CN.po b/addons/base_module_quality/i18n/zh_CN.po index 1534b874388..78d7f8764fe 100644 --- a/addons/base_module_quality/i18n/zh_CN.po +++ b/addons/base_module_quality/i18n/zh_CN.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:02:15+0000\n" -"PO-Revision-Date: 2009-01-03 02:02:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" #. module: base_module_quality @@ -36,21 +26,132 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_quality/i18n/zh_TW.po b/addons/base_module_quality/i18n/zh_TW.po index 00d1b15bbe9..9b8314f68da 100644 --- a/addons/base_module_quality/i18n/zh_TW.po +++ b/addons/base_module_quality/i18n/zh_TW.po @@ -1,13 +1,13 @@ # Translation of OpenERP Server. -# This file containt the translation of the following modules: +# This file contains the translation of the following modules: # * base_module_quality # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-03 02:02:55+0000\n" -"PO-Revision-Date: 2009-01-03 02:02:55+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,18 +16,8 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: field:module.quality.detail,general_info:0 -msgid "General Info" -msgstr "" - -#. module: base_module_quality -#: view:module.quality.detail:0 -msgid "Summary" -msgstr "" - -#. module: base_module_quality -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: field:module.quality.check,final_score:0 +msgid "Final Score (%)" msgstr "" #. module: base_module_quality @@ -36,21 +26,132 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: base_module_quality -#: field:module.quality.detail,detail:0 +#: model:ir.module.module,shortdesc:base_module_quality.module_meta_information +msgid "Base module quality" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.check,name:0 +msgid "Rated Module" +msgstr "" + +#. module: base_module_quality #: view:module.quality.detail:0 msgid "Detail" msgstr "" #. module: base_module_quality -#: field:module.quality.check,verbose_detail:0 -msgid "Verbose Detail" +#: field:module.quality.detail,note:0 +msgid "Note" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_quality_check_detail +#: field:module.quality.detail,state:0 +msgid "State" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,detail:0 +msgid "Details" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,ponderation:0 +msgid "Ponderation" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,ponderation:0 +msgid "Some tests are more critical than others, so they have a bigger weight in the computation of final rating" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.check:0 +#: field:module.quality.check,check_detail_ids:0 +msgid "Tests" +msgstr "" + +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Skipped" +msgstr "" + +#. module: base_module_quality +#: help:module.quality.detail,state:0 +msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module." +msgstr "" + +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_check +msgid "module.quality.check" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,name:0 +msgid "Name" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,module_file:0 +msgid "Save report" +msgstr "" + +#. module: base_module_quality +#: wizard_field:quality_detail_save,init,name:0 +msgid "File name" +msgstr "" + +#. module: base_module_quality +#: field:module.quality.detail,score:0 +msgid "Score (%)" +msgstr "" + +#. module: base_module_quality +#: help:quality_detail_save,init,name:0 +msgid "Save report as .html format" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +#: field:module.quality.detail,summary:0 +msgid "Summary" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.quality_detail_save +msgid "Report Save" +msgstr "" + +#. module: base_module_quality +#: wizard_view:quality_detail_save,init:0 +msgid "Standard entries" +msgstr "" + +#. module: base_module_quality +#: view:module.quality.detail:0 +msgid "Save Report" +msgstr "" + +#. module: base_module_quality +#: model:ir.actions.wizard,name:base_module_quality.create_quality_check_id +msgid "Quality Check" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_module_quality_detail msgid "module.quality.detail" msgstr "" +#. module: base_module_quality +#: selection:module.quality.detail,state:0 +msgid "Done" +msgstr "" + #. module: base_module_quality #: view:module.quality.check:0 #: view:module.quality.detail:0 @@ -58,17 +159,17 @@ msgid "Result" msgstr "" #. module: base_module_quality -#: model:ir.model,name:base_module_quality.model_wizard_quality_check -msgid "module.quality.check" +#: wizard_button:quality_detail_save,init,end:0 +msgid "Cancel" msgstr "" #. module: base_module_quality -#: view:module.quality.check:0 -msgid "Verbose detail" +#: field:module.quality.detail,message:0 +msgid "Message" msgstr "" #. module: base_module_quality -#: field:module.quality.detail,quality_check:0 +#: field:module.quality.detail,quality_check_id:0 msgid "Quality" msgstr "" diff --git a/addons/base_module_record/i18n/ar_AR.po b/addons/base_module_record/i18n/ar_AR.po index 10321b3be89..2d1d2656ed6 100644 --- a/addons/base_module_record/i18n/ar_AR.po +++ b/addons/base_module_record/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/base_module_record.pot b/addons/base_module_record/i18n/base_module_record.pot index f3bcb80b35b..0eece67839a 100644 --- a/addons/base_module_record/i18n/base_module_record.pot +++ b/addons/base_module_record/i18n/base_module_record.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/bg_BG.po b/addons/base_module_record/i18n/bg_BG.po index ee2e7c9eb77..d6313ead5bf 100644 --- a/addons/base_module_record/i18n/bg_BG.po +++ b/addons/base_module_record/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/bs_BS.po b/addons/base_module_record/i18n/bs_BS.po index d8b2599809a..e760a4bb033 100644 --- a/addons/base_module_record/i18n/bs_BS.po +++ b/addons/base_module_record/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/ca_ES.po b/addons/base_module_record/i18n/ca_ES.po index 7c647185b2e..a7a87c729e1 100644 --- a/addons/base_module_record/i18n/ca_ES.po +++ b/addons/base_module_record/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/cs_CZ.po b/addons/base_module_record/i18n/cs_CZ.po index 53776f1e165..98cc1513002 100644 --- a/addons/base_module_record/i18n/cs_CZ.po +++ b/addons/base_module_record/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/de_DE.po b/addons/base_module_record/i18n/de_DE.po index 9fe8c0dd6cd..13f642c35d4 100644 --- a/addons/base_module_record/i18n/de_DE.po +++ b/addons/base_module_record/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/es_AR.po b/addons/base_module_record/i18n/es_AR.po index 63c6769788c..b13d5125250 100644 --- a/addons/base_module_record/i18n/es_AR.po +++ b/addons/base_module_record/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/es_ES.po b/addons/base_module_record/i18n/es_ES.po index 9f3de07f368..322dda92b90 100644 --- a/addons/base_module_record/i18n/es_ES.po +++ b/addons/base_module_record/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/et_EE.po b/addons/base_module_record/i18n/et_EE.po index fb3acaec26f..4daed8a8ac9 100644 --- a/addons/base_module_record/i18n/et_EE.po +++ b/addons/base_module_record/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/fi_FI.po b/addons/base_module_record/i18n/fi_FI.po index 48b29bce285..20c8c868d32 100644 --- a/addons/base_module_record/i18n/fi_FI.po +++ b/addons/base_module_record/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/fr_FR.po b/addons/base_module_record/i18n/fr_FR.po index d139d4970d1..2951c5172ab 100644 --- a/addons/base_module_record/i18n/fr_FR.po +++ b/addons/base_module_record/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/hr_HR.po b/addons/base_module_record/i18n/hr_HR.po index 137e66f6a2f..1a1976cba82 100644 --- a/addons/base_module_record/i18n/hr_HR.po +++ b/addons/base_module_record/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/hu_HU.po b/addons/base_module_record/i18n/hu_HU.po index 7c89a855e8f..30303a76f6e 100644 --- a/addons/base_module_record/i18n/hu_HU.po +++ b/addons/base_module_record/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/id_ID.po b/addons/base_module_record/i18n/id_ID.po index 8975a2818ba..f45be718882 100644 --- a/addons/base_module_record/i18n/id_ID.po +++ b/addons/base_module_record/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/it_IT.po b/addons/base_module_record/i18n/it_IT.po index 72852d46382..e33c4299aae 100644 --- a/addons/base_module_record/i18n/it_IT.po +++ b/addons/base_module_record/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/lt_LT.po b/addons/base_module_record/i18n/lt_LT.po index ba07b30578c..e7bbaef3e35 100644 --- a/addons/base_module_record/i18n/lt_LT.po +++ b/addons/base_module_record/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/nl_BE.po b/addons/base_module_record/i18n/nl_BE.po index 95a683bd769..7914e76fcda 100644 --- a/addons/base_module_record/i18n/nl_BE.po +++ b/addons/base_module_record/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/nl_NL.po b/addons/base_module_record/i18n/nl_NL.po index 81d20cd56f7..259ea056a97 100644 --- a/addons/base_module_record/i18n/nl_NL.po +++ b/addons/base_module_record/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/pl_PL.po b/addons/base_module_record/i18n/pl_PL.po index 0e90330b15e..e4b90e0b861 100644 --- a/addons/base_module_record/i18n/pl_PL.po +++ b/addons/base_module_record/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/pt_BR.po b/addons/base_module_record/i18n/pt_BR.po index 1656e72812b..1feaa0aa6e6 100644 --- a/addons/base_module_record/i18n/pt_BR.po +++ b/addons/base_module_record/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/pt_PT.po b/addons/base_module_record/i18n/pt_PT.po index 855795cb1da..50787926daa 100644 --- a/addons/base_module_record/i18n/pt_PT.po +++ b/addons/base_module_record/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/ro_RO.po b/addons/base_module_record/i18n/ro_RO.po index 428d62c3f88..9bd81ee4b47 100644 --- a/addons/base_module_record/i18n/ro_RO.po +++ b/addons/base_module_record/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/ru_RU.po b/addons/base_module_record/i18n/ru_RU.po index 8fb0a58b8b6..978e572c2c1 100644 --- a/addons/base_module_record/i18n/ru_RU.po +++ b/addons/base_module_record/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/sl_SL.po b/addons/base_module_record/i18n/sl_SL.po index 3f0d80fa40d..5992f0d8006 100644 --- a/addons/base_module_record/i18n/sl_SL.po +++ b/addons/base_module_record/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/cs_CS.po b/addons/base_module_record/i18n/sq_AL.po similarity index 98% rename from addons/base_module_record/i18n/cs_CS.po rename to addons/base_module_record/i18n/sq_AL.po index 42971f02d59..964e038ac29 100644 --- a/addons/base_module_record/i18n/cs_CS.po +++ b/addons/base_module_record/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/sv_SE.po b/addons/base_module_record/i18n/sv_SE.po index ad24376c9ff..a5c2eb02d11 100644 --- a/addons/base_module_record/i18n/sv_SE.po +++ b/addons/base_module_record/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/tr_TR.po b/addons/base_module_record/i18n/tr_TR.po index 9a550f3e62b..ad275574f57 100644 --- a/addons/base_module_record/i18n/tr_TR.po +++ b/addons/base_module_record/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/uk_UK.po b/addons/base_module_record/i18n/uk_UA.po similarity index 98% rename from addons/base_module_record/i18n/uk_UK.po rename to addons/base_module_record/i18n/uk_UA.po index 2e5244192e7..5a9348460c8 100644 --- a/addons/base_module_record/i18n/uk_UK.po +++ b/addons/base_module_record/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/sv_SV.po b/addons/base_module_record/i18n/vi_VN.po similarity index 97% rename from addons/base_module_record/i18n/sv_SV.po rename to addons/base_module_record/i18n/vi_VN.po index adbb1875eaf..21132e75801 100644 --- a/addons/base_module_record/i18n/sv_SV.po +++ b/addons/base_module_record/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,7 +36,7 @@ msgstr "" #. module: base_module_record #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: base_module_record #: wizard_view:base_module_record.module_record_objects,init:0 diff --git a/addons/base_module_record/i18n/zh_CN.po b/addons/base_module_record/i18n/zh_CN.po index 55f00b0bb1b..8eefafece61 100644 --- a/addons/base_module_record/i18n/zh_CN.po +++ b/addons/base_module_record/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_record/i18n/zh_TW.po b/addons/base_module_record/i18n/zh_TW.po index f3344508a94..6b4b7c03ace 100644 --- a/addons/base_module_record/i18n/zh_TW.po +++ b/addons/base_module_record/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/ar_AR.po b/addons/base_report_creator/i18n/ar_AR.po index 3b624b1ed98..b8bba0f82fa 100644 --- a/addons/base_report_creator/i18n/ar_AR.po +++ b/addons/base_report_creator/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+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 576fbe68533..2aa0dcb9420 100644 --- a/addons/base_report_creator/i18n/base_report_creator.pot +++ b/addons/base_report_creator/i18n/base_report_creator.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/bg_BG.po b/addons/base_report_creator/i18n/bg_BG.po index 6b73ea054ac..b39c60155dc 100644 --- a/addons/base_report_creator/i18n/bg_BG.po +++ b/addons/base_report_creator/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/bs_BS.po b/addons/base_report_creator/i18n/bs_BS.po index e39dcd028d0..8b9dcd030b4 100644 --- a/addons/base_report_creator/i18n/bs_BS.po +++ b/addons/base_report_creator/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/ca_ES.po b/addons/base_report_creator/i18n/ca_ES.po index d33346d4947..e4da626cded 100644 --- a/addons/base_report_creator/i18n/ca_ES.po +++ b/addons/base_report_creator/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/cs_CZ.po b/addons/base_report_creator/i18n/cs_CZ.po index af57dd818dd..f1507d9443c 100644 --- a/addons/base_report_creator/i18n/cs_CZ.po +++ b/addons/base_report_creator/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/de_DE.po b/addons/base_report_creator/i18n/de_DE.po index 20e978acbad..cfbf41ebb00 100644 --- a/addons/base_report_creator/i18n/de_DE.po +++ b/addons/base_report_creator/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/es_AR.po b/addons/base_report_creator/i18n/es_AR.po index 61c696675b7..21adac076c1 100644 --- a/addons/base_report_creator/i18n/es_AR.po +++ b/addons/base_report_creator/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/es_ES.po b/addons/base_report_creator/i18n/es_ES.po index 5063eda6390..c4a6a8b4a4a 100644 --- a/addons/base_report_creator/i18n/es_ES.po +++ b/addons/base_report_creator/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/et_EE.po b/addons/base_report_creator/i18n/et_EE.po index 1155ce55afa..b2927edfa37 100644 --- a/addons/base_report_creator/i18n/et_EE.po +++ b/addons/base_report_creator/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/fi_FI.po b/addons/base_report_creator/i18n/fi_FI.po index ffc5415a7c6..d745cbfff1e 100644 --- a/addons/base_report_creator/i18n/fi_FI.po +++ b/addons/base_report_creator/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/fr_FR.po b/addons/base_report_creator/i18n/fr_FR.po index 6053687b854..e93f08f184d 100644 --- a/addons/base_report_creator/i18n/fr_FR.po +++ b/addons/base_report_creator/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Mode Graphe" #. module: base_report_creator #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: base_report_creator #: view:base_report_creator.report:0 diff --git a/addons/base_report_creator/i18n/hr_HR.po b/addons/base_report_creator/i18n/hr_HR.po index 0433aec95c5..8a835977802 100644 --- a/addons/base_report_creator/i18n/hr_HR.po +++ b/addons/base_report_creator/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/hu_HU.po b/addons/base_report_creator/i18n/hu_HU.po index 8917bb61279..7a787f564dd 100644 --- a/addons/base_report_creator/i18n/hu_HU.po +++ b/addons/base_report_creator/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/id_ID.po b/addons/base_report_creator/i18n/id_ID.po index ca6c95b64c3..9939439c5ab 100644 --- a/addons/base_report_creator/i18n/id_ID.po +++ b/addons/base_report_creator/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/it_IT.po b/addons/base_report_creator/i18n/it_IT.po index a78000a3842..bf3d0d30ae7 100644 --- a/addons/base_report_creator/i18n/it_IT.po +++ b/addons/base_report_creator/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/lt_LT.po b/addons/base_report_creator/i18n/lt_LT.po index 3439031a835..80c2c5d5edd 100644 --- a/addons/base_report_creator/i18n/lt_LT.po +++ b/addons/base_report_creator/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/nl_BE.po b/addons/base_report_creator/i18n/nl_BE.po index 59874e4b9b7..cc7d4fb18ed 100644 --- a/addons/base_report_creator/i18n/nl_BE.po +++ b/addons/base_report_creator/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/nl_NL.po b/addons/base_report_creator/i18n/nl_NL.po index c9287b3308f..ee2f940530a 100644 --- a/addons/base_report_creator/i18n/nl_NL.po +++ b/addons/base_report_creator/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/pl_PL.po b/addons/base_report_creator/i18n/pl_PL.po index 4bd92cdaff1..e1f2c9f30ed 100644 --- a/addons/base_report_creator/i18n/pl_PL.po +++ b/addons/base_report_creator/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/pt_BR.po b/addons/base_report_creator/i18n/pt_BR.po index f3692ed8360..d7147d1fde1 100644 --- a/addons/base_report_creator/i18n/pt_BR.po +++ b/addons/base_report_creator/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/pt_PT.po b/addons/base_report_creator/i18n/pt_PT.po index 3bdc931c49a..1d2352f8cba 100644 --- a/addons/base_report_creator/i18n/pt_PT.po +++ b/addons/base_report_creator/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/ro_RO.po b/addons/base_report_creator/i18n/ro_RO.po index 2325eaa33a7..fb408f7b989 100644 --- a/addons/base_report_creator/i18n/ro_RO.po +++ b/addons/base_report_creator/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/ru_RU.po b/addons/base_report_creator/i18n/ru_RU.po index 1eb492b15de..e33212917d9 100644 --- a/addons/base_report_creator/i18n/ru_RU.po +++ b/addons/base_report_creator/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/sl_SL.po b/addons/base_report_creator/i18n/sl_SL.po index 2c633bab6a2..0d98daac7d8 100644 --- a/addons/base_report_creator/i18n/sl_SL.po +++ b/addons/base_report_creator/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/cs_CS.po b/addons/base_report_creator/i18n/sq_AL.po similarity index 98% rename from addons/base_report_creator/i18n/cs_CS.po rename to addons/base_report_creator/i18n/sq_AL.po index 213f0245368..720bd19b061 100644 --- a/addons/base_report_creator/i18n/cs_CS.po +++ b/addons/base_report_creator/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/sv_SE.po b/addons/base_report_creator/i18n/sv_SE.po index 41708ca1844..871eead1a04 100644 --- a/addons/base_report_creator/i18n/sv_SE.po +++ b/addons/base_report_creator/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/tr_TR.po b/addons/base_report_creator/i18n/tr_TR.po index 9fc7e24d495..cbef1d80953 100644 --- a/addons/base_report_creator/i18n/tr_TR.po +++ b/addons/base_report_creator/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/uk_UK.po b/addons/base_report_creator/i18n/uk_UA.po similarity index 98% rename from addons/base_report_creator/i18n/uk_UK.po rename to addons/base_report_creator/i18n/uk_UA.po index efbd8cb8140..d8b1c2cdb4c 100644 --- a/addons/base_report_creator/i18n/uk_UK.po +++ b/addons/base_report_creator/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/sv_SV.po b/addons/base_report_creator/i18n/vi_VN.po similarity index 98% rename from addons/base_report_creator/i18n/sv_SV.po rename to addons/base_report_creator/i18n/vi_VN.po index 418b7e2c5ce..4163c9a9f0d 100644 --- a/addons/base_report_creator/i18n/sv_SV.po +++ b/addons/base_report_creator/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -360,7 +360,7 @@ msgstr "" #. module: base_report_creator #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: base_report_creator #: field:base_report_creator.report,view_type1:0 diff --git a/addons/base_report_creator/i18n/zh_CN.po b/addons/base_report_creator/i18n/zh_CN.po index 4a7e6b8af3f..345effa23d9 100644 --- a/addons/base_report_creator/i18n/zh_CN.po +++ b/addons/base_report_creator/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/zh_TW.po b/addons/base_report_creator/i18n/zh_TW.po index 3b24c19aa9d..32f4811c5e9 100644 --- a/addons/base_report_creator/i18n/zh_TW.po +++ b/addons/base_report_creator/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/ar_AR.po b/addons/base_report_designer/i18n/ar_AR.po index 497185a0844..5d798a4967f 100644 --- a/addons/base_report_designer/i18n/ar_AR.po +++ b/addons/base_report_designer/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/base_report_designer.pot b/addons/base_report_designer/i18n/base_report_designer.pot index 925235de675..50e52bd841c 100644 --- a/addons/base_report_designer/i18n/base_report_designer.pot +++ b/addons/base_report_designer/i18n/base_report_designer.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/bg_BG.po b/addons/base_report_designer/i18n/bg_BG.po index 7963ccb3681..92cbb83d6db 100644 --- a/addons/base_report_designer/i18n/bg_BG.po +++ b/addons/base_report_designer/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/bs_BS.po b/addons/base_report_designer/i18n/bs_BS.po index 7dc5f8238d8..5f4c1eb6819 100644 --- a/addons/base_report_designer/i18n/bs_BS.po +++ b/addons/base_report_designer/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/ca_ES.po b/addons/base_report_designer/i18n/ca_ES.po index a034cb09316..d08608e435c 100644 --- a/addons/base_report_designer/i18n/ca_ES.po +++ b/addons/base_report_designer/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/cs_CZ.po b/addons/base_report_designer/i18n/cs_CZ.po index 5273d9066ed..0673cfdb7c6 100644 --- a/addons/base_report_designer/i18n/cs_CZ.po +++ b/addons/base_report_designer/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/de_DE.po b/addons/base_report_designer/i18n/de_DE.po index ee9abc52f15..5e1aa8c0ea4 100644 --- a/addons/base_report_designer/i18n/de_DE.po +++ b/addons/base_report_designer/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/es_AR.po b/addons/base_report_designer/i18n/es_AR.po index 26e136e0481..76acf5e7d4a 100644 --- a/addons/base_report_designer/i18n/es_AR.po +++ b/addons/base_report_designer/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/es_ES.po b/addons/base_report_designer/i18n/es_ES.po index 7d0d910ebe8..ee107c5d9c8 100644 --- a/addons/base_report_designer/i18n/es_ES.po +++ b/addons/base_report_designer/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/et_EE.po b/addons/base_report_designer/i18n/et_EE.po index f094e121b04..0cde957d18c 100644 --- a/addons/base_report_designer/i18n/et_EE.po +++ b/addons/base_report_designer/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/fi_FI.po b/addons/base_report_designer/i18n/fi_FI.po index 6bf8f090a2e..69760dda73d 100644 --- a/addons/base_report_designer/i18n/fi_FI.po +++ b/addons/base_report_designer/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/fr_FR.po b/addons/base_report_designer/i18n/fr_FR.po index 32157239332..be2de013cf8 100644 --- a/addons/base_report_designer/i18n/fr_FR.po +++ b/addons/base_report_designer/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/hr_HR.po b/addons/base_report_designer/i18n/hr_HR.po index 435663bb1f8..b47d641bd12 100644 --- a/addons/base_report_designer/i18n/hr_HR.po +++ b/addons/base_report_designer/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/hu_HU.po b/addons/base_report_designer/i18n/hu_HU.po index 350f6e3c68d..08f0a6780db 100644 --- a/addons/base_report_designer/i18n/hu_HU.po +++ b/addons/base_report_designer/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/id_ID.po b/addons/base_report_designer/i18n/id_ID.po index e8f3b4c808e..95bd37bb599 100644 --- a/addons/base_report_designer/i18n/id_ID.po +++ b/addons/base_report_designer/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/it_IT.po b/addons/base_report_designer/i18n/it_IT.po index c86e821bdf0..cc23e1fbafb 100644 --- a/addons/base_report_designer/i18n/it_IT.po +++ b/addons/base_report_designer/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/lt_LT.po b/addons/base_report_designer/i18n/lt_LT.po index eb28f74f07b..1da20be0e68 100644 --- a/addons/base_report_designer/i18n/lt_LT.po +++ b/addons/base_report_designer/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/nl_BE.po b/addons/base_report_designer/i18n/nl_BE.po index cbafd303184..a3b907b1635 100644 --- a/addons/base_report_designer/i18n/nl_BE.po +++ b/addons/base_report_designer/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/nl_NL.po b/addons/base_report_designer/i18n/nl_NL.po index 2733ba669b4..7b8b7758f7c 100644 --- a/addons/base_report_designer/i18n/nl_NL.po +++ b/addons/base_report_designer/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/pl_PL.po b/addons/base_report_designer/i18n/pl_PL.po index 9b7e248df97..2ef9060bfb7 100644 --- a/addons/base_report_designer/i18n/pl_PL.po +++ b/addons/base_report_designer/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/pt_BR.po b/addons/base_report_designer/i18n/pt_BR.po index 1a9f8d3e609..49d5d525f22 100644 --- a/addons/base_report_designer/i18n/pt_BR.po +++ b/addons/base_report_designer/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/pt_PT.po b/addons/base_report_designer/i18n/pt_PT.po index 0bce3dc5f8b..f667d4aeaa4 100644 --- a/addons/base_report_designer/i18n/pt_PT.po +++ b/addons/base_report_designer/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/ro_RO.po b/addons/base_report_designer/i18n/ro_RO.po index 118de6da51d..4ed9d1b8036 100644 --- a/addons/base_report_designer/i18n/ro_RO.po +++ b/addons/base_report_designer/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/ru_RU.po b/addons/base_report_designer/i18n/ru_RU.po index 68ff3a3ba85..1dff33f10ae 100644 --- a/addons/base_report_designer/i18n/ru_RU.po +++ b/addons/base_report_designer/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/sl_SL.po b/addons/base_report_designer/i18n/sl_SL.po index c71fa2cd5d1..74d67b025b2 100644 --- a/addons/base_report_designer/i18n/sl_SL.po +++ b/addons/base_report_designer/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/sv_SV.po b/addons/base_report_designer/i18n/sq_AL.po similarity index 96% rename from addons/base_report_designer/i18n/sv_SV.po rename to addons/base_report_designer/i18n/sq_AL.po index 50bf78db6ea..e38ce5e95ae 100644 --- a/addons/base_report_designer/i18n/sv_SV.po +++ b/addons/base_report_designer/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/sv_SE.po b/addons/base_report_designer/i18n/sv_SE.po index f14feed2c7c..3bbfdad2e78 100644 --- a/addons/base_report_designer/i18n/sv_SE.po +++ b/addons/base_report_designer/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/tr_TR.po b/addons/base_report_designer/i18n/tr_TR.po index ce6a880b98e..2c833b7a108 100644 --- a/addons/base_report_designer/i18n/tr_TR.po +++ b/addons/base_report_designer/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/uk_UK.po b/addons/base_report_designer/i18n/uk_UA.po similarity index 97% rename from addons/base_report_designer/i18n/uk_UK.po rename to addons/base_report_designer/i18n/uk_UA.po index 7a181772e62..c112a8c0f17 100644 --- a/addons/base_report_designer/i18n/uk_UK.po +++ b/addons/base_report_designer/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/cs_CS.po b/addons/base_report_designer/i18n/vi_VN.po similarity index 96% rename from addons/base_report_designer/i18n/cs_CS.po rename to addons/base_report_designer/i18n/vi_VN.po index 91f168652b4..1e3dc4c2353 100644 --- a/addons/base_report_designer/i18n/cs_CS.po +++ b/addons/base_report_designer/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -115,7 +115,7 @@ msgstr "" #: wizard_button:base_report_designer.modify,get_form,end:0 #: wizard_button:base_report_designer.modify,init,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: base_report_designer #: wizard_button:base_report_designer.modify,get_form_result,end:0 diff --git a/addons/base_report_designer/i18n/zh_CN.po b/addons/base_report_designer/i18n/zh_CN.po index 02f09d4c534..1a671448c7f 100644 --- a/addons/base_report_designer/i18n/zh_CN.po +++ b/addons/base_report_designer/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/zh_TW.po b/addons/base_report_designer/i18n/zh_TW.po index 16eec4c7fc4..948716ae9fc 100644 --- a/addons/base_report_designer/i18n/zh_TW.po +++ b/addons/base_report_designer/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/ar_AR.po b/addons/base_setup/i18n/ar_AR.po index fd484d121bc..80ef15ae703 100644 --- a/addons/base_setup/i18n/ar_AR.po +++ b/addons/base_setup/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24: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 b1b81c00f14..94336ce20c8 100644 --- a/addons/base_setup/i18n/base_setup.pot +++ b/addons/base_setup/i18n/base_setup.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/bg_BG.po b/addons/base_setup/i18n/bg_BG.po index 04b531cb99b..204beae4165 100644 --- a/addons/base_setup/i18n/bg_BG.po +++ b/addons/base_setup/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/bs_BS.po b/addons/base_setup/i18n/bs_BS.po index 86e06d8d06b..7018bc462e5 100644 --- a/addons/base_setup/i18n/bs_BS.po +++ b/addons/base_setup/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/ca_ES.po b/addons/base_setup/i18n/ca_ES.po index eac0ac19955..023e8bb4d6c 100644 --- a/addons/base_setup/i18n/ca_ES.po +++ b/addons/base_setup/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/cs_CZ.po b/addons/base_setup/i18n/cs_CZ.po index 9a4b1e09582..71f983644fd 100644 --- a/addons/base_setup/i18n/cs_CZ.po +++ b/addons/base_setup/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/de_DE.po b/addons/base_setup/i18n/de_DE.po index 15cbf918ad9..c6c81b9bf0f 100644 --- a/addons/base_setup/i18n/de_DE.po +++ b/addons/base_setup/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/es_AR.po b/addons/base_setup/i18n/es_AR.po index ccf0d7177ef..fb30f6aa12a 100644 --- a/addons/base_setup/i18n/es_AR.po +++ b/addons/base_setup/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/es_EC.po b/addons/base_setup/i18n/es_EC.po index 7667dbd09c8..b0df8e51cbe 100644 --- a/addons/base_setup/i18n/es_EC.po +++ b/addons/base_setup/i18n/es_EC.po @@ -9,12 +9,12 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-05-19 14:36+0000\n" "PO-Revision-Date: 2009-06-09 05:52+0000\n" -"Last-Translator: Cristian Salamea \n" +"Last-Translator: Cristian Salamea \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:06+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/es_ES.po b/addons/base_setup/i18n/es_ES.po index 2de42dc36c1..410c67be5a1 100644 --- a/addons/base_setup/i18n/es_ES.po +++ b/addons/base_setup/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/et_EE.po b/addons/base_setup/i18n/et_EE.po index 0a3a30e4e10..5270dc49e23 100644 --- a/addons/base_setup/i18n/et_EE.po +++ b/addons/base_setup/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/fi_FI.po b/addons/base_setup/i18n/fi_FI.po index 6e8e69bb85e..dec1fa1ce08 100644 --- a/addons/base_setup/i18n/fi_FI.po +++ b/addons/base_setup/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/fr_FR.po b/addons/base_setup/i18n/fr_FR.po index f16d877ee3e..3064df13774 100644 --- a/addons/base_setup/i18n/fr_FR.po +++ b/addons/base_setup/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/hr_HR.po b/addons/base_setup/i18n/hr_HR.po index fa6603a88a4..f7446f482f8 100644 --- a/addons/base_setup/i18n/hr_HR.po +++ b/addons/base_setup/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/hu_HU.po b/addons/base_setup/i18n/hu_HU.po index 95921cecd9f..3556244df47 100644 --- a/addons/base_setup/i18n/hu_HU.po +++ b/addons/base_setup/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/id_ID.po b/addons/base_setup/i18n/id_ID.po index 9dfc07cc949..3fbd1e8a882 100644 --- a/addons/base_setup/i18n/id_ID.po +++ b/addons/base_setup/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/it_IT.po b/addons/base_setup/i18n/it_IT.po index 2ced0462334..7fece7be731 100644 --- a/addons/base_setup/i18n/it_IT.po +++ b/addons/base_setup/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/lt_LT.po b/addons/base_setup/i18n/lt_LT.po index 407eeb3aecd..7bf474815c9 100644 --- a/addons/base_setup/i18n/lt_LT.po +++ b/addons/base_setup/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/nl_BE.po b/addons/base_setup/i18n/nl_BE.po index 0ab8bdab428..30cc937a4d2 100644 --- a/addons/base_setup/i18n/nl_BE.po +++ b/addons/base_setup/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/nl_NL.po b/addons/base_setup/i18n/nl_NL.po index 6e0d22778ca..e8aa0fd0e07 100644 --- a/addons/base_setup/i18n/nl_NL.po +++ b/addons/base_setup/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/pl_PL.po b/addons/base_setup/i18n/pl_PL.po index de21a11de2a..31f698c0248 100644 --- a/addons/base_setup/i18n/pl_PL.po +++ b/addons/base_setup/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po index f7042f77dc0..929c0f52a9e 100644 --- a/addons/base_setup/i18n/pt_BR.po +++ b/addons/base_setup/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/pt_PT.po b/addons/base_setup/i18n/pt_PT.po index ace7fa74e21..4e4c1e61b41 100644 --- a/addons/base_setup/i18n/pt_PT.po +++ b/addons/base_setup/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/ro_RO.po b/addons/base_setup/i18n/ro_RO.po index ef39c775592..be855dedb04 100644 --- a/addons/base_setup/i18n/ro_RO.po +++ b/addons/base_setup/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/ru_RU.po b/addons/base_setup/i18n/ru_RU.po index a03b9480d0d..52f4f6b648e 100644 --- a/addons/base_setup/i18n/ru_RU.po +++ b/addons/base_setup/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/sl_SL.po b/addons/base_setup/i18n/sl_SL.po index 079413db744..d47effb235f 100644 --- a/addons/base_setup/i18n/sl_SL.po +++ b/addons/base_setup/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/sv_SV.po b/addons/base_setup/i18n/sq_AL.po similarity index 98% rename from addons/base_setup/i18n/sv_SV.po rename to addons/base_setup/i18n/sq_AL.po index 767c3b7eedf..660ae72edf5 100644 --- a/addons/base_setup/i18n/sv_SV.po +++ b/addons/base_setup/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/sv_SE.po b/addons/base_setup/i18n/sv_SE.po index 49ff27e69dc..6ac1e65d06b 100644 --- a/addons/base_setup/i18n/sv_SE.po +++ b/addons/base_setup/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/tr_TR.po b/addons/base_setup/i18n/tr_TR.po index a4336bb215f..eed98ca87cd 100644 --- a/addons/base_setup/i18n/tr_TR.po +++ b/addons/base_setup/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/uk_UK.po b/addons/base_setup/i18n/uk_UA.po similarity index 98% rename from addons/base_setup/i18n/uk_UK.po rename to addons/base_setup/i18n/uk_UA.po index c81265fb07c..f00dea9925b 100644 --- a/addons/base_setup/i18n/uk_UK.po +++ b/addons/base_setup/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/cs_CS.po b/addons/base_setup/i18n/vi_VN.po similarity index 92% rename from addons/base_setup/i18n/cs_CS.po rename to addons/base_setup/i18n/vi_VN.po index 823fbfbde40..bfeccc538da 100644 --- a/addons/base_setup/i18n/cs_CS.po +++ b/addons/base_setup/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" #: wizard_field:base_setup.base_setup,init,city:0 #: wizard_field:base_setup.base_setup,update,city:0 msgid "City" -msgstr "Město" +msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 @@ -32,7 +32,7 @@ msgstr "" #: wizard_field:base_setup.base_setup,init,zip:0 #: wizard_field:base_setup.base_setup,update,zip:0 msgid "Zip code" -msgstr "PSČ" +msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,init:0 @@ -42,7 +42,7 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 msgid "Report header" -msgstr "Hlavička výpisu" +msgstr "" #. module: base_setup #: wizard_button:base_setup.base_setup,finish,config:0 @@ -63,7 +63,7 @@ msgstr "" #: wizard_button:base_setup.base_setup,company,update:0 #: wizard_button:base_setup.base_setup,init,company:0 msgid "Next" -msgstr "Další" +msgstr "" #. module: base_setup #: wizard_field:base_setup.base_setup,company,email:0 @@ -77,33 +77,33 @@ msgstr "" #: wizard_field:base_setup.base_setup,init,state_id:0 #: wizard_field:base_setup.base_setup,update,state_id:0 msgid "State" -msgstr "Stav" +msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 msgid "Your new database is now fully installed." -msgstr "Vaše nová databáze je nyní plně nainstalována." +msgstr "" #. module: base_setup #: wizard_field:base_setup.base_setup,company,profile:0 #: wizard_field:base_setup.base_setup,init,profile:0 #: wizard_field:base_setup.base_setup,update,profile:0 msgid "Profile" -msgstr "Profil" +msgstr "" #. module: base_setup #: wizard_field:base_setup.base_setup,company,rml_footer1:0 #: wizard_field:base_setup.base_setup,init,rml_footer1:0 #: wizard_field:base_setup.base_setup,update,rml_footer1:0 msgid "Report Footer 1" -msgstr "Patička výpisu 1" +msgstr "" #. module: base_setup #: wizard_field:base_setup.base_setup,company,rml_footer2:0 #: wizard_field:base_setup.base_setup,init,rml_footer2:0 #: wizard_field:base_setup.base_setup,update,rml_footer2:0 msgid "Report Footer 2" -msgstr "Patička výpisu 2" +msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 @@ -115,7 +115,7 @@ msgstr "" #: wizard_field:base_setup.base_setup,init,street2:0 #: wizard_field:base_setup.base_setup,update,street2:0 msgid "Street2" -msgstr "Ulice2" +msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 @@ -127,7 +127,7 @@ msgstr "" #: wizard_field:base_setup.base_setup,init,phone:0 #: wizard_field:base_setup.base_setup,update,phone:0 msgid "Phone" -msgstr "Telefon" +msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 @@ -139,7 +139,7 @@ msgstr "" #: wizard_field:base_setup.base_setup,init,name:0 #: wizard_field:base_setup.base_setup,update,name:0 msgid "Company Name" -msgstr "Název společnosti" +msgstr "" #. module: base_setup #: help:base_setup.base_setup,company,rml_footer2:0 @@ -155,7 +155,7 @@ msgstr "" #: wizard_field:base_setup.base_setup,init,country_id:0 #: wizard_field:base_setup.base_setup,update,country_id:0 msgid "Country" -msgstr "Země" +msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 @@ -165,7 +165,7 @@ msgstr "Země" #: model:ir.actions.wizard,name:base_setup.action_wizard_setup #: model:ir.actions.wizard,name:base_setup.wizard_base_setup msgid "Setup" -msgstr "Nastavení" +msgstr "" #. module: base_setup #: help:base_setup.base_setup,company,rml_footer1:0 @@ -179,12 +179,12 @@ msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,update:0 msgid "Summary" -msgstr "Souhrn" +msgstr "" #. module: base_setup #: wizard_button:base_setup.base_setup,update,finish:0 msgid "Install" -msgstr "Instalovat" +msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,finish:0 @@ -205,7 +205,7 @@ msgstr "" #: wizard_field:base_setup.base_setup,init,rml_header1:0 #: wizard_field:base_setup.base_setup,update,rml_header1:0 msgid "Report Header" -msgstr "Hlavička výpisu" +msgstr "" #. module: base_setup #: wizard_view:base_setup.base_setup,company:0 @@ -217,14 +217,14 @@ msgstr "" #: wizard_field:base_setup.base_setup,init,currency:0 #: wizard_field:base_setup.base_setup,update,currency:0 msgid "Currency" -msgstr "Měna" +msgstr "" #. module: base_setup #: wizard_field:base_setup.base_setup,company,street:0 #: wizard_field:base_setup.base_setup,init,street:0 #: wizard_field:base_setup.base_setup,update,street:0 msgid "Street" -msgstr "Ulice" +msgstr "" #. module: base_setup #: wizard_button:base_setup.base_setup,finish,menu:0 @@ -234,7 +234,7 @@ msgstr "" #. module: base_setup #: wizard_button:base_setup.base_setup,init,menu:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: base_setup #: wizard_field:base_setup.base_setup,company,logo:0 @@ -252,5 +252,5 @@ msgstr "" #: wizard_button:base_setup.base_setup,company,init:0 #: wizard_button:base_setup.base_setup,update,company:0 msgid "Previous" -msgstr "Předchozí" +msgstr "" diff --git a/addons/base_setup/i18n/zh_CN.po b/addons/base_setup/i18n/zh_CN.po index 07b188d7c5d..b3a0b7eda6a 100644 --- a/addons/base_setup/i18n/zh_CN.po +++ b/addons/base_setup/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/zh_TW.po b/addons/base_setup/i18n/zh_TW.po index c8c1ef176b3..cbe3b2394cd 100644 --- a/addons/base_setup/i18n/zh_TW.po +++ b/addons/base_setup/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/ab_AB.po b/addons/base_vat/i18n/ab_AB.po index e9a25e4d77a..babcebda3b5 100644 --- a/addons/base_vat/i18n/ab_AB.po +++ b/addons/base_vat/i18n/ab_AB.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:06+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/ar_AR.po b/addons/base_vat/i18n/ar_AR.po index 5b4a9af229c..502e3d87d92 100644 --- a/addons/base_vat/i18n/ar_AR.po +++ b/addons/base_vat/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/base_vat.pot b/addons/base_vat/i18n/base_vat.pot index 63958a5e5f5..980ec9766ea 100644 --- a/addons/base_vat/i18n/base_vat.pot +++ b/addons/base_vat/i18n/base_vat.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/bg_BG.po b/addons/base_vat/i18n/bg_BG.po index 91d44958c3e..eec36b12308 100644 --- a/addons/base_vat/i18n/bg_BG.po +++ b/addons/base_vat/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/bs_BS.po b/addons/base_vat/i18n/bs_BS.po index 727cb18ddc9..3505363f449 100644 --- a/addons/base_vat/i18n/bs_BS.po +++ b/addons/base_vat/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/ca_ES.po b/addons/base_vat/i18n/ca_ES.po index d8ecbf2bfd8..1b6f30125ee 100644 --- a/addons/base_vat/i18n/ca_ES.po +++ b/addons/base_vat/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/cs_CZ.po b/addons/base_vat/i18n/cs_CZ.po index 4644ca938cb..86da12454c3 100644 --- a/addons/base_vat/i18n/cs_CZ.po +++ b/addons/base_vat/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/de_DE.po b/addons/base_vat/i18n/de_DE.po index 19fa3940519..4f5ab85d6ba 100644 --- a/addons/base_vat/i18n/de_DE.po +++ b/addons/base_vat/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/es_AR.po b/addons/base_vat/i18n/es_AR.po index 73cfad202ef..8a7e029b831 100644 --- a/addons/base_vat/i18n/es_AR.po +++ b/addons/base_vat/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/es_ES.po b/addons/base_vat/i18n/es_ES.po index d802fbb0846..9d3a9f44b59 100644 --- a/addons/base_vat/i18n/es_ES.po +++ b/addons/base_vat/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/et_EE.po b/addons/base_vat/i18n/et_EE.po index b03983078b7..cebd1a7f155 100644 --- a/addons/base_vat/i18n/et_EE.po +++ b/addons/base_vat/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/fi_FI.po b/addons/base_vat/i18n/fi_FI.po index f36f6ead824..ef8b6fb0853 100644 --- a/addons/base_vat/i18n/fi_FI.po +++ b/addons/base_vat/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/fr_FR.po b/addons/base_vat/i18n/fr_FR.po index 15afbac94a8..9aac8f12d2f 100644 --- a/addons/base_vat/i18n/fr_FR.po +++ b/addons/base_vat/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: base_vat #: model:ir.module.module,description:base_vat.module_meta_information msgid "Enable the VAT Number for the partner. Check the validity of that VAT Number." -msgstr "Active le numéro de TVA sur la fiche partenaire. Vérifie la validité du numéro de TVA Intracom" +msgstr "" #. module: base_vat #: constraint:ir.ui.view:0 diff --git a/addons/base_vat/i18n/hr_HR.po b/addons/base_vat/i18n/hr_HR.po index 5aa05de7403..2b14112a098 100644 --- a/addons/base_vat/i18n/hr_HR.po +++ b/addons/base_vat/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/hu_HU.po b/addons/base_vat/i18n/hu_HU.po index ef2b7a9d26f..be2869688e5 100644 --- a/addons/base_vat/i18n/hu_HU.po +++ b/addons/base_vat/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/id_ID.po b/addons/base_vat/i18n/id_ID.po index a7c148a8d2c..cbfa0912cde 100644 --- a/addons/base_vat/i18n/id_ID.po +++ b/addons/base_vat/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/it_IT.po b/addons/base_vat/i18n/it_IT.po index 1d9f6a85870..c09fd207294 100644 --- a/addons/base_vat/i18n/it_IT.po +++ b/addons/base_vat/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/lt_LT.po b/addons/base_vat/i18n/lt_LT.po index eed63338c10..30a71e0b449 100644 --- a/addons/base_vat/i18n/lt_LT.po +++ b/addons/base_vat/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po index 9beaef459b9..310cb28c5bd 100644 --- a/addons/base_vat/i18n/nl_BE.po +++ b/addons/base_vat/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/nl_NL.po b/addons/base_vat/i18n/nl_NL.po index f2ddba325e4..d0d40069f5d 100644 --- a/addons/base_vat/i18n/nl_NL.po +++ b/addons/base_vat/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/pl_PL.po b/addons/base_vat/i18n/pl_PL.po index 3fd1816f7be..339f617b73a 100644 --- a/addons/base_vat/i18n/pl_PL.po +++ b/addons/base_vat/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po index 2aec1272f6a..7a6aa1baa83 100644 --- a/addons/base_vat/i18n/pt_BR.po +++ b/addons/base_vat/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/pt_PT.po b/addons/base_vat/i18n/pt_PT.po index 2fb27e3501d..83ed40195ca 100644 --- a/addons/base_vat/i18n/pt_PT.po +++ b/addons/base_vat/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/ro_RO.po b/addons/base_vat/i18n/ro_RO.po index 9b384d33a58..b4e2565e32e 100644 --- a/addons/base_vat/i18n/ro_RO.po +++ b/addons/base_vat/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/ru_RU.po b/addons/base_vat/i18n/ru_RU.po index 3f5e0adbf57..f8d78817508 100644 --- a/addons/base_vat/i18n/ru_RU.po +++ b/addons/base_vat/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/sl_SL.po b/addons/base_vat/i18n/sl_SL.po index 87897b23ef7..4c22f6a9ea0 100644 --- a/addons/base_vat/i18n/sl_SL.po +++ b/addons/base_vat/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/sv_SV.po b/addons/base_vat/i18n/sq_AL.po similarity index 85% rename from addons/base_vat/i18n/sv_SV.po rename to addons/base_vat/i18n/sq_AL.po index ed2d16f3d3f..ad17f5951b6 100644 --- a/addons/base_vat/i18n/sv_SV.po +++ b/addons/base_vat/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/sv_SE.po b/addons/base_vat/i18n/sv_SE.po index be5686c75a9..af56cd0ec37 100644 --- a/addons/base_vat/i18n/sv_SE.po +++ b/addons/base_vat/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/tr_TR.po b/addons/base_vat/i18n/tr_TR.po index 200b1ff4e27..636044d1298 100644 --- a/addons/base_vat/i18n/tr_TR.po +++ b/addons/base_vat/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/uk_UK.po b/addons/base_vat/i18n/uk_UA.po similarity index 86% rename from addons/base_vat/i18n/uk_UK.po rename to addons/base_vat/i18n/uk_UA.po index f940c2cf5c6..81f1cf6d762 100644 --- a/addons/base_vat/i18n/uk_UK.po +++ b/addons/base_vat/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/cs_CS.po b/addons/base_vat/i18n/vi_VN.po similarity index 85% rename from addons/base_vat/i18n/cs_CS.po rename to addons/base_vat/i18n/vi_VN.po index 0779cd4915b..9a126ac1258 100644 --- a/addons/base_vat/i18n/cs_CS.po +++ b/addons/base_vat/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po index af655c97c82..9ec750007e5 100644 --- a/addons/base_vat/i18n/zh_CN.po +++ b/addons/base_vat/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po index 1b10a135334..ef30f1c17fe 100644 --- a/addons/base_vat/i18n/zh_TW.po +++ b/addons/base_vat/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/ar_AR.po b/addons/board/i18n/ar_AR.po index 2dd673eae43..677850187cf 100644 --- a/addons/board/i18n/ar_AR.po +++ b/addons/board/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/bg_BG.po b/addons/board/i18n/bg_BG.po index 6e2eb802ded..e8b1be41920 100644 --- a/addons/board/i18n/bg_BG.po +++ b/addons/board/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+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 79e2cfb27f0..f39805f5fe6 100644 --- a/addons/board/i18n/board.pot +++ b/addons/board/i18n/board.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/bs_BS.po b/addons/board/i18n/bs_BS.po index cc6f0d90c05..7dc81917e59 100644 --- a/addons/board/i18n/bs_BS.po +++ b/addons/board/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/ca_ES.po b/addons/board/i18n/ca_ES.po index 0367446b668..8c58571b64f 100644 --- a/addons/board/i18n/ca_ES.po +++ b/addons/board/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/cs_CZ.po b/addons/board/i18n/cs_CZ.po index 01ccb75087f..883662266b5 100644 --- a/addons/board/i18n/cs_CZ.po +++ b/addons/board/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/de_DE.po b/addons/board/i18n/de_DE.po index d4d2429eeaa..391ebb3545c 100644 --- a/addons/board/i18n/de_DE.po +++ b/addons/board/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/es_AR.po b/addons/board/i18n/es_AR.po index 2e112e92030..163ec9ec042 100644 --- a/addons/board/i18n/es_AR.po +++ b/addons/board/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/es_ES.po b/addons/board/i18n/es_ES.po index 842c2ac631b..9f351438d55 100644 --- a/addons/board/i18n/es_ES.po +++ b/addons/board/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/et_EE.po b/addons/board/i18n/et_EE.po index 09fa656d193..1d48b66c2e9 100644 --- a/addons/board/i18n/et_EE.po +++ b/addons/board/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/fi_FI.po b/addons/board/i18n/fi_FI.po index 78283f05a59..07c4ca81d71 100644 --- a/addons/board/i18n/fi_FI.po +++ b/addons/board/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/fr_FR.po b/addons/board/i18n/fr_FR.po index 86bba55ff2e..77f94106509 100644 --- a/addons/board/i18n/fr_FR.po +++ b/addons/board/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "Largeur" #. module: board #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: board #: field:board.board.line,name:0 diff --git a/addons/board/i18n/hr_HR.po b/addons/board/i18n/hr_HR.po index 4a05ce8ddab..9d94fa46ca9 100644 --- a/addons/board/i18n/hr_HR.po +++ b/addons/board/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/hu_HU.po b/addons/board/i18n/hu_HU.po index f9ee25ec363..bbfdb4d2bed 100644 --- a/addons/board/i18n/hu_HU.po +++ b/addons/board/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/id_ID.po b/addons/board/i18n/id_ID.po index 84dc5598ee0..c34afb55a92 100644 --- a/addons/board/i18n/id_ID.po +++ b/addons/board/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/it_IT.po b/addons/board/i18n/it_IT.po index c3e3829a6d6..991faaf317f 100644 --- a/addons/board/i18n/it_IT.po +++ b/addons/board/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/lt_LT.po b/addons/board/i18n/lt_LT.po index 1ad3c81b997..f16cb7ad808 100644 --- a/addons/board/i18n/lt_LT.po +++ b/addons/board/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/nl_BE.po b/addons/board/i18n/nl_BE.po index 9f0e409e1ad..1926da01dce 100644 --- a/addons/board/i18n/nl_BE.po +++ b/addons/board/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/nl_NL.po b/addons/board/i18n/nl_NL.po index b9fd82d1013..93ce44d476a 100644 --- a/addons/board/i18n/nl_NL.po +++ b/addons/board/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/pl_PL.po b/addons/board/i18n/pl_PL.po index 2344f377eb1..1ef2a5e0749 100644 --- a/addons/board/i18n/pl_PL.po +++ b/addons/board/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/pt_BR.po b/addons/board/i18n/pt_BR.po index 5c55c668f62..bf21474e93f 100644 --- a/addons/board/i18n/pt_BR.po +++ b/addons/board/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/pt_PT.po b/addons/board/i18n/pt_PT.po index 4af45b861ef..fd722663301 100644 --- a/addons/board/i18n/pt_PT.po +++ b/addons/board/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/ro_RO.po b/addons/board/i18n/ro_RO.po index 0945b6921b4..7e60e7b8542 100644 --- a/addons/board/i18n/ro_RO.po +++ b/addons/board/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/ru_RU.po b/addons/board/i18n/ru_RU.po index bc84c360543..3c248a3e954 100644 --- a/addons/board/i18n/ru_RU.po +++ b/addons/board/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/sl_SL.po b/addons/board/i18n/sl_SL.po index 98dc631d3c3..92f41b4582e 100644 --- a/addons/board/i18n/sl_SL.po +++ b/addons/board/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/cs_CS.po b/addons/board/i18n/sq_AL.po similarity index 96% rename from addons/board/i18n/cs_CS.po rename to addons/board/i18n/sq_AL.po index e65a7beda17..aa993f11ed0 100644 --- a/addons/board/i18n/cs_CS.po +++ b/addons/board/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -91,7 +91,7 @@ msgstr "" #. module: board #: model:ir.ui.menu,name:board.next_id_50 msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: board #: field:board.note.type,name:0 diff --git a/addons/board/i18n/sv_SE.po b/addons/board/i18n/sv_SE.po index 1906fcebaba..1446d3baa08 100644 --- a/addons/board/i18n/sv_SE.po +++ b/addons/board/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/tr_TR.po b/addons/board/i18n/tr_TR.po index 5bfb52322fa..a46084424f4 100644 --- a/addons/board/i18n/tr_TR.po +++ b/addons/board/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/uk_UK.po b/addons/board/i18n/uk_UA.po similarity index 97% rename from addons/board/i18n/uk_UK.po rename to addons/board/i18n/uk_UA.po index d3e06b734b4..df493a78f0e 100644 --- a/addons/board/i18n/uk_UK.po +++ b/addons/board/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/sv_SV.po b/addons/board/i18n/vi_VN.po similarity index 94% rename from addons/board/i18n/sv_SV.po rename to addons/board/i18n/vi_VN.po index 2800bc050f2..bd36f9baa11 100644 --- a/addons/board/i18n/sv_SV.po +++ b/addons/board/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: board #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: board #: model:ir.model,name:board.model_board_board @@ -91,7 +91,7 @@ msgstr "" #. module: board #: model:ir.ui.menu,name:board.next_id_50 msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: board #: field:board.note.type,name:0 diff --git a/addons/board/i18n/zh_CN.po b/addons/board/i18n/zh_CN.po index 391556954f1..9581254b8ae 100644 --- a/addons/board/i18n/zh_CN.po +++ b/addons/board/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/zh_TW.po b/addons/board/i18n/zh_TW.po index 7931ad0512c..17258af9bfa 100644 --- a/addons/board/i18n/zh_TW.po +++ b/addons/board/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/ar_AR.po b/addons/board_account/i18n/ar_AR.po index 81ebf3d0eb2..a17811b3fd7 100644 --- a/addons/board_account/i18n/ar_AR.po +++ b/addons/board_account/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/bg_BG.po b/addons/board_account/i18n/bg_BG.po index a09e2c7d4ce..f943ccfc26f 100644 --- a/addons/board_account/i18n/bg_BG.po +++ b/addons/board_account/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+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 61ae3ce22d3..a8a6dfb1eba 100644 --- a/addons/board_account/i18n/board_account.pot +++ b/addons/board_account/i18n/board_account.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/bs_BS.po b/addons/board_account/i18n/bs_BS.po index 86f3fd20595..00f46ebb58c 100644 --- a/addons/board_account/i18n/bs_BS.po +++ b/addons/board_account/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/ca_ES.po b/addons/board_account/i18n/ca_ES.po index 657a53b25f5..1dbb8593f65 100644 --- a/addons/board_account/i18n/ca_ES.po +++ b/addons/board_account/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/cs_CZ.po b/addons/board_account/i18n/cs_CZ.po index aa70ed84396..c6447970fc1 100644 --- a/addons/board_account/i18n/cs_CZ.po +++ b/addons/board_account/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/de_DE.po b/addons/board_account/i18n/de_DE.po index 57416bd368a..a23970cc460 100644 --- a/addons/board_account/i18n/de_DE.po +++ b/addons/board_account/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/es_AR.po b/addons/board_account/i18n/es_AR.po index 7fed5ea3e04..c1c2ac139fd 100644 --- a/addons/board_account/i18n/es_AR.po +++ b/addons/board_account/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/es_ES.po b/addons/board_account/i18n/es_ES.po index 80e80202e00..137664f60db 100644 --- a/addons/board_account/i18n/es_ES.po +++ b/addons/board_account/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/et_EE.po b/addons/board_account/i18n/et_EE.po index 32cf1345fac..53f92a9bb36 100644 --- a/addons/board_account/i18n/et_EE.po +++ b/addons/board_account/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/fi_FI.po b/addons/board_account/i18n/fi_FI.po index b5035a60924..b8cc826cb09 100644 --- a/addons/board_account/i18n/fi_FI.po +++ b/addons/board_account/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/fr_FR.po b/addons/board_account/i18n/fr_FR.po index d7ffb455a0a..59073f5a3d8 100644 --- a/addons/board_account/i18n/fr_FR.po +++ b/addons/board_account/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "Mes indicateurs" #. module: board_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: board_account #: model:ir.ui.menu,name:board_account.next_id_68 diff --git a/addons/board_account/i18n/hr_HR.po b/addons/board_account/i18n/hr_HR.po index 8c36320e71f..29f454c7c3c 100644 --- a/addons/board_account/i18n/hr_HR.po +++ b/addons/board_account/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/hu_HU.po b/addons/board_account/i18n/hu_HU.po index baa5e56d785..c5a7ebaa67d 100644 --- a/addons/board_account/i18n/hu_HU.po +++ b/addons/board_account/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/id_ID.po b/addons/board_account/i18n/id_ID.po index 11874256b3f..29e5ece537f 100644 --- a/addons/board_account/i18n/id_ID.po +++ b/addons/board_account/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/it_IT.po b/addons/board_account/i18n/it_IT.po index a837871a97d..2467728038f 100644 --- a/addons/board_account/i18n/it_IT.po +++ b/addons/board_account/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/lt_LT.po b/addons/board_account/i18n/lt_LT.po index 4f23ef126d8..ae8daf84bbb 100644 --- a/addons/board_account/i18n/lt_LT.po +++ b/addons/board_account/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/nl_BE.po b/addons/board_account/i18n/nl_BE.po index 03249aa5ea6..2f1cc22cae6 100644 --- a/addons/board_account/i18n/nl_BE.po +++ b/addons/board_account/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/nl_NL.po b/addons/board_account/i18n/nl_NL.po index cb289575979..c33bcd0ff19 100644 --- a/addons/board_account/i18n/nl_NL.po +++ b/addons/board_account/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/pl_PL.po b/addons/board_account/i18n/pl_PL.po index 202cdab5aaa..985ede242f8 100644 --- a/addons/board_account/i18n/pl_PL.po +++ b/addons/board_account/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/pt_BR.po b/addons/board_account/i18n/pt_BR.po index 59e0eda35eb..fd9a1626ea5 100644 --- a/addons/board_account/i18n/pt_BR.po +++ b/addons/board_account/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/pt_PT.po b/addons/board_account/i18n/pt_PT.po index 1c62c274312..67c6099e446 100644 --- a/addons/board_account/i18n/pt_PT.po +++ b/addons/board_account/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/ro_RO.po b/addons/board_account/i18n/ro_RO.po index a7b60c7bc3f..3e9c6b08d09 100644 --- a/addons/board_account/i18n/ro_RO.po +++ b/addons/board_account/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/ru_RU.po b/addons/board_account/i18n/ru_RU.po index d53c2f7c744..ddf6ac1aac6 100644 --- a/addons/board_account/i18n/ru_RU.po +++ b/addons/board_account/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/sl_SL.po b/addons/board_account/i18n/sl_SL.po index 00444593b02..d51e72873bf 100644 --- a/addons/board_account/i18n/sl_SL.po +++ b/addons/board_account/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/cs_CS.po b/addons/board_account/i18n/sq_AL.po similarity index 93% rename from addons/board_account/i18n/cs_CS.po rename to addons/board_account/i18n/sq_AL.po index be3150dd646..66c6e84d0be 100644 --- a/addons/board_account/i18n/cs_CS.po +++ b/addons/board_account/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/sv_SE.po b/addons/board_account/i18n/sv_SE.po index 5d8709f3f03..3d150a4514b 100644 --- a/addons/board_account/i18n/sv_SE.po +++ b/addons/board_account/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/tr_TR.po b/addons/board_account/i18n/tr_TR.po index b702552473f..0e4917a14cc 100644 --- a/addons/board_account/i18n/tr_TR.po +++ b/addons/board_account/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/uk_UK.po b/addons/board_account/i18n/uk_UA.po similarity index 94% rename from addons/board_account/i18n/uk_UK.po rename to addons/board_account/i18n/uk_UA.po index 4021c708b99..b4c6b7ffc75 100644 --- a/addons/board_account/i18n/uk_UK.po +++ b/addons/board_account/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/sv_SV.po b/addons/board_account/i18n/vi_VN.po similarity index 93% rename from addons/board_account/i18n/sv_SV.po rename to addons/board_account/i18n/vi_VN.po index eb1c43179b0..da748e7d6cf 100644 --- a/addons/board_account/i18n/sv_SV.po +++ b/addons/board_account/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/zh_CN.po b/addons/board_account/i18n/zh_CN.po index 47856278c73..37fd215b225 100644 --- a/addons/board_account/i18n/zh_CN.po +++ b/addons/board_account/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/zh_TW.po b/addons/board_account/i18n/zh_TW.po index 75463a5648d..abf3bab7f6d 100644 --- a/addons/board_account/i18n/zh_TW.po +++ b/addons/board_account/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/ar_AR.po b/addons/board_association/i18n/ar_AR.po index 47294a4aa8f..bf614f6d5bb 100644 --- a/addons/board_association/i18n/ar_AR.po +++ b/addons/board_association/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/bg_BG.po b/addons/board_association/i18n/bg_BG.po index c85b15abd0f..9b58d369936 100644 --- a/addons/board_association/i18n/bg_BG.po +++ b/addons/board_association/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+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 bdd421e5e1c..0c90ee7e52e 100644 --- a/addons/board_association/i18n/board_association.pot +++ b/addons/board_association/i18n/board_association.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/bs_BS.po b/addons/board_association/i18n/bs_BS.po index e039fed8cfc..617c166f5ae 100644 --- a/addons/board_association/i18n/bs_BS.po +++ b/addons/board_association/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/ca_ES.po b/addons/board_association/i18n/ca_ES.po index 9247d213451..1aee9d226d1 100644 --- a/addons/board_association/i18n/ca_ES.po +++ b/addons/board_association/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/cs_CZ.po b/addons/board_association/i18n/cs_CZ.po index 94935bf1b11..bf5c4d3b312 100644 --- a/addons/board_association/i18n/cs_CZ.po +++ b/addons/board_association/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/de_DE.po b/addons/board_association/i18n/de_DE.po index 3073b5bfd3d..08159738e41 100644 --- a/addons/board_association/i18n/de_DE.po +++ b/addons/board_association/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/es_AR.po b/addons/board_association/i18n/es_AR.po index c40ddd8e0e0..f9d5edd8e36 100644 --- a/addons/board_association/i18n/es_AR.po +++ b/addons/board_association/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/es_ES.po b/addons/board_association/i18n/es_ES.po index 88096536331..36f95bebd10 100644 --- a/addons/board_association/i18n/es_ES.po +++ b/addons/board_association/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/et_EE.po b/addons/board_association/i18n/et_EE.po index b72c6169de9..b2d6ec9b39b 100644 --- a/addons/board_association/i18n/et_EE.po +++ b/addons/board_association/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/fi_FI.po b/addons/board_association/i18n/fi_FI.po index 27985151956..7ea2834f941 100644 --- a/addons/board_association/i18n/fi_FI.po +++ b/addons/board_association/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/fr_FR.po b/addons/board_association/i18n/fr_FR.po index 7d6c28fcc53..e0a094798ae 100644 --- a/addons/board_association/i18n/fr_FR.po +++ b/addons/board_association/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Factures impayées" #. module: board_association #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: board_association #: view:board.board:0 diff --git a/addons/board_association/i18n/hr_HR.po b/addons/board_association/i18n/hr_HR.po index 96d39b84522..9414c929f23 100644 --- a/addons/board_association/i18n/hr_HR.po +++ b/addons/board_association/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/hu_HU.po b/addons/board_association/i18n/hu_HU.po index 38ab846bf94..7f9eb786390 100644 --- a/addons/board_association/i18n/hu_HU.po +++ b/addons/board_association/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/id_ID.po b/addons/board_association/i18n/id_ID.po index 364f7f4307d..963085ec3a1 100644 --- a/addons/board_association/i18n/id_ID.po +++ b/addons/board_association/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/it_IT.po b/addons/board_association/i18n/it_IT.po index 85575f6bfae..d222dec9f31 100644 --- a/addons/board_association/i18n/it_IT.po +++ b/addons/board_association/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/lt_LT.po b/addons/board_association/i18n/lt_LT.po index bb3c670e37b..d25041f92d6 100644 --- a/addons/board_association/i18n/lt_LT.po +++ b/addons/board_association/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/nl_BE.po b/addons/board_association/i18n/nl_BE.po index a4217169a31..5d218c1a604 100644 --- a/addons/board_association/i18n/nl_BE.po +++ b/addons/board_association/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/nl_NL.po b/addons/board_association/i18n/nl_NL.po index df0d727a599..e4edf54f057 100644 --- a/addons/board_association/i18n/nl_NL.po +++ b/addons/board_association/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/pl_PL.po b/addons/board_association/i18n/pl_PL.po index 0a80fa17d6f..dda0c915d46 100644 --- a/addons/board_association/i18n/pl_PL.po +++ b/addons/board_association/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/pt_BR.po b/addons/board_association/i18n/pt_BR.po index 8fa7c89caf7..7d77e7bc89f 100644 --- a/addons/board_association/i18n/pt_BR.po +++ b/addons/board_association/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/pt_PT.po b/addons/board_association/i18n/pt_PT.po index b2e434b1851..81539fd6ca4 100644 --- a/addons/board_association/i18n/pt_PT.po +++ b/addons/board_association/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/ro_RO.po b/addons/board_association/i18n/ro_RO.po index baee108008a..326f2cc5456 100644 --- a/addons/board_association/i18n/ro_RO.po +++ b/addons/board_association/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/ru_RU.po b/addons/board_association/i18n/ru_RU.po index 316ea52f1e9..20aab1ca110 100644 --- a/addons/board_association/i18n/ru_RU.po +++ b/addons/board_association/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/sl_SL.po b/addons/board_association/i18n/sl_SL.po index 783863cb377..2b252ddcd0d 100644 --- a/addons/board_association/i18n/sl_SL.po +++ b/addons/board_association/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/cs_CS.po b/addons/board_association/i18n/sq_AL.po similarity index 91% rename from addons/board_association/i18n/cs_CS.po rename to addons/board_association/i18n/sq_AL.po index 76349fb0d46..00779e0f38e 100644 --- a/addons/board_association/i18n/cs_CS.po +++ b/addons/board_association/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/sv_SE.po b/addons/board_association/i18n/sv_SE.po index 18cba881ca5..1dcd10129c4 100644 --- a/addons/board_association/i18n/sv_SE.po +++ b/addons/board_association/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/tr_TR.po b/addons/board_association/i18n/tr_TR.po index 02bb98a2580..c01e689bd5d 100644 --- a/addons/board_association/i18n/tr_TR.po +++ b/addons/board_association/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/uk_UK.po b/addons/board_association/i18n/uk_UA.po similarity index 91% rename from addons/board_association/i18n/uk_UK.po rename to addons/board_association/i18n/uk_UA.po index 66a7c9d53ef..f3c86851327 100644 --- a/addons/board_association/i18n/uk_UK.po +++ b/addons/board_association/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/sv_SV.po b/addons/board_association/i18n/vi_VN.po similarity index 91% rename from addons/board_association/i18n/sv_SV.po rename to addons/board_association/i18n/vi_VN.po index 1f0f4f400c9..290e64512bb 100644 --- a/addons/board_association/i18n/sv_SV.po +++ b/addons/board_association/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/zh_CN.po b/addons/board_association/i18n/zh_CN.po index 3be11e189ce..05062a3044a 100644 --- a/addons/board_association/i18n/zh_CN.po +++ b/addons/board_association/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/zh_TW.po b/addons/board_association/i18n/zh_TW.po index f2ea018f991..bdc8237ca75 100644 --- a/addons/board_association/i18n/zh_TW.po +++ b/addons/board_association/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/ar_AR.po b/addons/board_auction/i18n/ar_AR.po index 6dea7749940..121071cb3c8 100644 --- a/addons/board_auction/i18n/ar_AR.po +++ b/addons/board_auction/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/bg_BG.po b/addons/board_auction/i18n/bg_BG.po index 47baecf6ea2..9fee8adfad1 100644 --- a/addons/board_auction/i18n/bg_BG.po +++ b/addons/board_auction/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+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 a3fd8478d79..ed4b0948e67 100644 --- a/addons/board_auction/i18n/board_auction.pot +++ b/addons/board_auction/i18n/board_auction.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/bs_BS.po b/addons/board_auction/i18n/bs_BS.po index 18f5fd80393..ed607f69a21 100644 --- a/addons/board_auction/i18n/bs_BS.po +++ b/addons/board_auction/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/ca_ES.po b/addons/board_auction/i18n/ca_ES.po index 377370c74a3..cbe6d1228a2 100644 --- a/addons/board_auction/i18n/ca_ES.po +++ b/addons/board_auction/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/cs_CZ.po b/addons/board_auction/i18n/cs_CZ.po index ec3338cfc40..1a57d6e1edc 100644 --- a/addons/board_auction/i18n/cs_CZ.po +++ b/addons/board_auction/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/de_DE.po b/addons/board_auction/i18n/de_DE.po index 2bc9f2201bb..219d082ac2e 100644 --- a/addons/board_auction/i18n/de_DE.po +++ b/addons/board_auction/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/es_AR.po b/addons/board_auction/i18n/es_AR.po index dfc82791a8e..9eea1217af3 100644 --- a/addons/board_auction/i18n/es_AR.po +++ b/addons/board_auction/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/es_ES.po b/addons/board_auction/i18n/es_ES.po index 67b6960b995..b83920d0da6 100644 --- a/addons/board_auction/i18n/es_ES.po +++ b/addons/board_auction/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/et_EE.po b/addons/board_auction/i18n/et_EE.po index 347d147cb0d..f816a51a351 100644 --- a/addons/board_auction/i18n/et_EE.po +++ b/addons/board_auction/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/fi_FI.po b/addons/board_auction/i18n/fi_FI.po index 128cdd2c859..2ca0c74b269 100644 --- a/addons/board_auction/i18n/fi_FI.po +++ b/addons/board_auction/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/fr_FR.po b/addons/board_auction/i18n/fr_FR.po index 1289948674b..9f1f9b04643 100644 --- a/addons/board_auction/i18n/fr_FR.po +++ b/addons/board_auction/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ msgstr "Derniers Dépôts" #. module: board_auction #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: board_auction #: view:board.board:0 diff --git a/addons/board_auction/i18n/hr_HR.po b/addons/board_auction/i18n/hr_HR.po index e6952cd774a..637c9871208 100644 --- a/addons/board_auction/i18n/hr_HR.po +++ b/addons/board_auction/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/hu_HU.po b/addons/board_auction/i18n/hu_HU.po index 4674e62576f..e73119660e6 100644 --- a/addons/board_auction/i18n/hu_HU.po +++ b/addons/board_auction/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/id_ID.po b/addons/board_auction/i18n/id_ID.po index 96fd1d66e8c..0a0ad567b84 100644 --- a/addons/board_auction/i18n/id_ID.po +++ b/addons/board_auction/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/it_IT.po b/addons/board_auction/i18n/it_IT.po index 49692cc51da..016240a8c83 100644 --- a/addons/board_auction/i18n/it_IT.po +++ b/addons/board_auction/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/lt_LT.po b/addons/board_auction/i18n/lt_LT.po index ec7022e58fe..7709cd90e03 100644 --- a/addons/board_auction/i18n/lt_LT.po +++ b/addons/board_auction/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/nl_BE.po b/addons/board_auction/i18n/nl_BE.po index a803d05ab2e..422d9a7d8df 100644 --- a/addons/board_auction/i18n/nl_BE.po +++ b/addons/board_auction/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/nl_NL.po b/addons/board_auction/i18n/nl_NL.po index 8b1a4e83c85..c568662a4ef 100644 --- a/addons/board_auction/i18n/nl_NL.po +++ b/addons/board_auction/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/pl_PL.po b/addons/board_auction/i18n/pl_PL.po index 556be8538c0..a2f04315fbf 100644 --- a/addons/board_auction/i18n/pl_PL.po +++ b/addons/board_auction/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/pt_BR.po b/addons/board_auction/i18n/pt_BR.po index 1c87b483402..d6fd4ae7a17 100644 --- a/addons/board_auction/i18n/pt_BR.po +++ b/addons/board_auction/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/pt_PT.po b/addons/board_auction/i18n/pt_PT.po index 39082f2c8fc..e9f29add1d4 100644 --- a/addons/board_auction/i18n/pt_PT.po +++ b/addons/board_auction/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/ro_RO.po b/addons/board_auction/i18n/ro_RO.po index caf49429a66..9433ea0e9cc 100644 --- a/addons/board_auction/i18n/ro_RO.po +++ b/addons/board_auction/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/ru_RU.po b/addons/board_auction/i18n/ru_RU.po index c7606808b44..6422c3d1d7a 100644 --- a/addons/board_auction/i18n/ru_RU.po +++ b/addons/board_auction/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/sl_SL.po b/addons/board_auction/i18n/sl_SL.po index c679f372ee1..4da2d82d78b 100644 --- a/addons/board_auction/i18n/sl_SL.po +++ b/addons/board_auction/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/cs_CS.po b/addons/board_auction/i18n/sq_AL.po similarity index 94% rename from addons/board_auction/i18n/cs_CS.po rename to addons/board_auction/i18n/sq_AL.po index ef34060e6c3..6e8775ece39 100644 --- a/addons/board_auction/i18n/cs_CS.po +++ b/addons/board_auction/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/sv_SE.po b/addons/board_auction/i18n/sv_SE.po index 8d58b20ae8d..d2ba175467c 100644 --- a/addons/board_auction/i18n/sv_SE.po +++ b/addons/board_auction/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/tr_TR.po b/addons/board_auction/i18n/tr_TR.po index 1e9096ccbb3..c297804d0e8 100644 --- a/addons/board_auction/i18n/tr_TR.po +++ b/addons/board_auction/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/uk_UK.po b/addons/board_auction/i18n/uk_UA.po similarity index 94% rename from addons/board_auction/i18n/uk_UK.po rename to addons/board_auction/i18n/uk_UA.po index ceb70a9c606..63cd3c5e953 100644 --- a/addons/board_auction/i18n/uk_UK.po +++ b/addons/board_auction/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/sv_SV.po b/addons/board_auction/i18n/vi_VN.po similarity index 94% rename from addons/board_auction/i18n/sv_SV.po rename to addons/board_auction/i18n/vi_VN.po index d1a8bb22b2d..e70b07a7d53 100644 --- a/addons/board_auction/i18n/sv_SV.po +++ b/addons/board_auction/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/zh_CN.po b/addons/board_auction/i18n/zh_CN.po index f10140f03a2..f09395fea43 100644 --- a/addons/board_auction/i18n/zh_CN.po +++ b/addons/board_auction/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/zh_TW.po b/addons/board_auction/i18n/zh_TW.po index 8ca25c03756..5d1dc9aa248 100644 --- a/addons/board_auction/i18n/zh_TW.po +++ b/addons/board_auction/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/ar_AR.po b/addons/board_crm_configuration/i18n/ar_AR.po index c2e298b6960..ab7364b7a7b 100644 --- a/addons/board_crm_configuration/i18n/ar_AR.po +++ b/addons/board_crm_configuration/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/bg_BG.po b/addons/board_crm_configuration/i18n/bg_BG.po index 0ecce6f3961..b1ec3b74e11 100644 --- a/addons/board_crm_configuration/i18n/bg_BG.po +++ b/addons/board_crm_configuration/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+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 6a7ed9290c5..51d9d26b179 100644 --- a/addons/board_crm_configuration/i18n/board_crm_configuration.pot +++ b/addons/board_crm_configuration/i18n/board_crm_configuration.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/bs_BS.po b/addons/board_crm_configuration/i18n/bs_BS.po index 7f9b7ba3122..9711400d8cf 100644 --- a/addons/board_crm_configuration/i18n/bs_BS.po +++ b/addons/board_crm_configuration/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/ca_ES.po b/addons/board_crm_configuration/i18n/ca_ES.po index 72276c90010..a159641024b 100644 --- a/addons/board_crm_configuration/i18n/ca_ES.po +++ b/addons/board_crm_configuration/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/cs_CZ.po b/addons/board_crm_configuration/i18n/cs_CZ.po index b8836da0e62..0bf6348a6a9 100644 --- a/addons/board_crm_configuration/i18n/cs_CZ.po +++ b/addons/board_crm_configuration/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/de_DE.po b/addons/board_crm_configuration/i18n/de_DE.po index 35e9387cb27..8a60f62ad06 100644 --- a/addons/board_crm_configuration/i18n/de_DE.po +++ b/addons/board_crm_configuration/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/es_AR.po b/addons/board_crm_configuration/i18n/es_AR.po index 372e3c0b29d..2d3ac45399c 100644 --- a/addons/board_crm_configuration/i18n/es_AR.po +++ b/addons/board_crm_configuration/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/es_ES.po b/addons/board_crm_configuration/i18n/es_ES.po index ad2ebd9957c..869b98ef1f1 100644 --- a/addons/board_crm_configuration/i18n/es_ES.po +++ b/addons/board_crm_configuration/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/et_EE.po b/addons/board_crm_configuration/i18n/et_EE.po index 75722b67514..abce1084a0a 100644 --- a/addons/board_crm_configuration/i18n/et_EE.po +++ b/addons/board_crm_configuration/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/fi_FI.po b/addons/board_crm_configuration/i18n/fi_FI.po index 88038ec058d..34b6e08aef6 100644 --- a/addons/board_crm_configuration/i18n/fi_FI.po +++ b/addons/board_crm_configuration/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/fr_FR.po b/addons/board_crm_configuration/i18n/fr_FR.po index 7af22edbc15..9de70dec64a 100644 --- a/addons/board_crm_configuration/i18n/fr_FR.po +++ b/addons/board_crm_configuration/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "Demandes d'Emploi du Mois par Emploi Demandé" #. module: board_crm_configuration #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: board_crm_configuration #: view:board.board:0 diff --git a/addons/board_crm_configuration/i18n/hr_HR.po b/addons/board_crm_configuration/i18n/hr_HR.po index e81eb5d522e..6257cb78e4f 100644 --- a/addons/board_crm_configuration/i18n/hr_HR.po +++ b/addons/board_crm_configuration/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/hu_HU.po b/addons/board_crm_configuration/i18n/hu_HU.po index 2a74be42d13..c34ac2e14f4 100644 --- a/addons/board_crm_configuration/i18n/hu_HU.po +++ b/addons/board_crm_configuration/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/id_ID.po b/addons/board_crm_configuration/i18n/id_ID.po index 6dc52b5319b..c400ce52c8c 100644 --- a/addons/board_crm_configuration/i18n/id_ID.po +++ b/addons/board_crm_configuration/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/it_IT.po b/addons/board_crm_configuration/i18n/it_IT.po index a06af3db83d..93e322851f0 100644 --- a/addons/board_crm_configuration/i18n/it_IT.po +++ b/addons/board_crm_configuration/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/lt_LT.po b/addons/board_crm_configuration/i18n/lt_LT.po index 0bb3c9244c0..d7437b1c748 100644 --- a/addons/board_crm_configuration/i18n/lt_LT.po +++ b/addons/board_crm_configuration/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/nl_BE.po b/addons/board_crm_configuration/i18n/nl_BE.po index 416dfa24415..06c78fc3b04 100644 --- a/addons/board_crm_configuration/i18n/nl_BE.po +++ b/addons/board_crm_configuration/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/nl_NL.po b/addons/board_crm_configuration/i18n/nl_NL.po index 2c93051ac06..d9d4edd69ef 100644 --- a/addons/board_crm_configuration/i18n/nl_NL.po +++ b/addons/board_crm_configuration/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/pl_PL.po b/addons/board_crm_configuration/i18n/pl_PL.po index 451b8d847d8..7e5205c24ca 100644 --- a/addons/board_crm_configuration/i18n/pl_PL.po +++ b/addons/board_crm_configuration/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/pt_BR.po b/addons/board_crm_configuration/i18n/pt_BR.po index e1afeec599e..4a9e92810a5 100644 --- a/addons/board_crm_configuration/i18n/pt_BR.po +++ b/addons/board_crm_configuration/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/pt_PT.po b/addons/board_crm_configuration/i18n/pt_PT.po index ec6bf2d4d2e..111f8c87625 100644 --- a/addons/board_crm_configuration/i18n/pt_PT.po +++ b/addons/board_crm_configuration/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/ro_RO.po b/addons/board_crm_configuration/i18n/ro_RO.po index c83634da548..59ae20ed752 100644 --- a/addons/board_crm_configuration/i18n/ro_RO.po +++ b/addons/board_crm_configuration/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/ru_RU.po b/addons/board_crm_configuration/i18n/ru_RU.po index c6c7775c98c..46b2d23c88a 100644 --- a/addons/board_crm_configuration/i18n/ru_RU.po +++ b/addons/board_crm_configuration/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/sl_SL.po b/addons/board_crm_configuration/i18n/sl_SL.po index 16120959755..da035304c9c 100644 --- a/addons/board_crm_configuration/i18n/sl_SL.po +++ b/addons/board_crm_configuration/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/sv_SV.po b/addons/board_crm_configuration/i18n/sq_AL.po similarity index 95% rename from addons/board_crm_configuration/i18n/sv_SV.po rename to addons/board_crm_configuration/i18n/sq_AL.po index cef0f031256..89fc05db5e6 100644 --- a/addons/board_crm_configuration/i18n/sv_SV.po +++ b/addons/board_crm_configuration/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/sv_SE.po b/addons/board_crm_configuration/i18n/sv_SE.po index 3373b989576..7f3474bc535 100644 --- a/addons/board_crm_configuration/i18n/sv_SE.po +++ b/addons/board_crm_configuration/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/tr_TR.po b/addons/board_crm_configuration/i18n/tr_TR.po index 0a12be058a0..0349d062c42 100644 --- a/addons/board_crm_configuration/i18n/tr_TR.po +++ b/addons/board_crm_configuration/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/uk_UK.po b/addons/board_crm_configuration/i18n/uk_UA.po similarity index 95% rename from addons/board_crm_configuration/i18n/uk_UK.po rename to addons/board_crm_configuration/i18n/uk_UA.po index 252e130f2fa..fcf30460bb1 100644 --- a/addons/board_crm_configuration/i18n/uk_UK.po +++ b/addons/board_crm_configuration/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/cs_CS.po b/addons/board_crm_configuration/i18n/vi_VN.po similarity index 95% rename from addons/board_crm_configuration/i18n/cs_CS.po rename to addons/board_crm_configuration/i18n/vi_VN.po index 16222181ac6..d18a4c1dd7e 100644 --- a/addons/board_crm_configuration/i18n/cs_CS.po +++ b/addons/board_crm_configuration/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/zh_CN.po b/addons/board_crm_configuration/i18n/zh_CN.po index c6630e0caa1..d25cc75d5e2 100644 --- a/addons/board_crm_configuration/i18n/zh_CN.po +++ b/addons/board_crm_configuration/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/zh_TW.po b/addons/board_crm_configuration/i18n/zh_TW.po index b822f897bc8..d7d01d2840d 100644 --- a/addons/board_crm_configuration/i18n/zh_TW.po +++ b/addons/board_crm_configuration/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/ar_AR.po b/addons/board_document/i18n/ar_AR.po index eba533355c9..bc2645b947a 100644 --- a/addons/board_document/i18n/ar_AR.po +++ b/addons/board_document/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/bg_BG.po b/addons/board_document/i18n/bg_BG.po index f5c0d0acff2..953aba83d1a 100644 --- a/addons/board_document/i18n/bg_BG.po +++ b/addons/board_document/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/board_document.pot b/addons/board_document/i18n/board_document.pot index 4c18cf74a1b..223a7bffeaf 100644 --- a/addons/board_document/i18n/board_document.pot +++ b/addons/board_document/i18n/board_document.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/bs_BS.po b/addons/board_document/i18n/bs_BS.po index 3511be50cf9..4d119999f2c 100644 --- a/addons/board_document/i18n/bs_BS.po +++ b/addons/board_document/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/ca_ES.po b/addons/board_document/i18n/ca_ES.po index 5ce12d49fa1..a1c63860b89 100644 --- a/addons/board_document/i18n/ca_ES.po +++ b/addons/board_document/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/cs_CZ.po b/addons/board_document/i18n/cs_CZ.po index 822e6d1b974..674113294b0 100644 --- a/addons/board_document/i18n/cs_CZ.po +++ b/addons/board_document/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/de_DE.po b/addons/board_document/i18n/de_DE.po index fb0d378f4d3..3b889b0788f 100644 --- a/addons/board_document/i18n/de_DE.po +++ b/addons/board_document/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/es_AR.po b/addons/board_document/i18n/es_AR.po index 165200e3823..2831a13c00a 100644 --- a/addons/board_document/i18n/es_AR.po +++ b/addons/board_document/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/es_ES.po b/addons/board_document/i18n/es_ES.po index 0c2319b6314..958391f3582 100644 --- a/addons/board_document/i18n/es_ES.po +++ b/addons/board_document/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/et_EE.po b/addons/board_document/i18n/et_EE.po index 9d0fa6e2a4e..c6ac4ff22a4 100644 --- a/addons/board_document/i18n/et_EE.po +++ b/addons/board_document/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/fi_FI.po b/addons/board_document/i18n/fi_FI.po index a0c1a580d30..0e42260aee7 100644 --- a/addons/board_document/i18n/fi_FI.po +++ b/addons/board_document/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/fr_FR.po b/addons/board_document/i18n/fr_FR.po index 04748fad456..80a984c1bca 100644 --- a/addons/board_document/i18n/fr_FR.po +++ b/addons/board_document/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgstr "Fichiers par Type de Ressource" #. module: board_document #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: board_document #: model:ir.module.module,shortdesc:board_document.module_meta_information diff --git a/addons/board_document/i18n/hr_HR.po b/addons/board_document/i18n/hr_HR.po index ba518b25bcf..29a0bd05441 100644 --- a/addons/board_document/i18n/hr_HR.po +++ b/addons/board_document/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/hu_HU.po b/addons/board_document/i18n/hu_HU.po index d405afef354..54e10503d6a 100644 --- a/addons/board_document/i18n/hu_HU.po +++ b/addons/board_document/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/id_ID.po b/addons/board_document/i18n/id_ID.po index cd8f7c25a95..99231192a2a 100644 --- a/addons/board_document/i18n/id_ID.po +++ b/addons/board_document/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/it_IT.po b/addons/board_document/i18n/it_IT.po index 69b2590e305..9ae27dd28d6 100644 --- a/addons/board_document/i18n/it_IT.po +++ b/addons/board_document/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/lt_LT.po b/addons/board_document/i18n/lt_LT.po index e823435d916..2b18d9ae8f8 100644 --- a/addons/board_document/i18n/lt_LT.po +++ b/addons/board_document/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/nl_BE.po b/addons/board_document/i18n/nl_BE.po index 739b4769b5f..b093f26eb21 100644 --- a/addons/board_document/i18n/nl_BE.po +++ b/addons/board_document/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/nl_NL.po b/addons/board_document/i18n/nl_NL.po index ad28d2dc3a4..59be575cb42 100644 --- a/addons/board_document/i18n/nl_NL.po +++ b/addons/board_document/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/pl_PL.po b/addons/board_document/i18n/pl_PL.po index e6d3687afde..4a5153a963f 100644 --- a/addons/board_document/i18n/pl_PL.po +++ b/addons/board_document/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/pt_BR.po b/addons/board_document/i18n/pt_BR.po index 28c2c662d9f..0b795a1fdc8 100644 --- a/addons/board_document/i18n/pt_BR.po +++ b/addons/board_document/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/pt_PT.po b/addons/board_document/i18n/pt_PT.po index 304e7d51a0b..373a1e72eb9 100644 --- a/addons/board_document/i18n/pt_PT.po +++ b/addons/board_document/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/ro_RO.po b/addons/board_document/i18n/ro_RO.po index b4f0f8b1741..d3976799260 100644 --- a/addons/board_document/i18n/ro_RO.po +++ b/addons/board_document/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/ru_RU.po b/addons/board_document/i18n/ru_RU.po index 296d8ce5921..0f68ae223a8 100644 --- a/addons/board_document/i18n/ru_RU.po +++ b/addons/board_document/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/sl_SL.po b/addons/board_document/i18n/sl_SL.po index f1959683e15..e84631210b9 100644 --- a/addons/board_document/i18n/sl_SL.po +++ b/addons/board_document/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/cs_CS.po b/addons/board_document/i18n/sq_AL.po similarity index 93% rename from addons/board_document/i18n/cs_CS.po rename to addons/board_document/i18n/sq_AL.po index 67d7a5d91af..a08fb2d910c 100644 --- a/addons/board_document/i18n/cs_CS.po +++ b/addons/board_document/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/sv_SE.po b/addons/board_document/i18n/sv_SE.po index ad265c20320..eff74d6a04c 100644 --- a/addons/board_document/i18n/sv_SE.po +++ b/addons/board_document/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/tr_TR.po b/addons/board_document/i18n/tr_TR.po index 1a90205d39a..883bb3234f0 100644 --- a/addons/board_document/i18n/tr_TR.po +++ b/addons/board_document/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/uk_UK.po b/addons/board_document/i18n/uk_UA.po similarity index 93% rename from addons/board_document/i18n/uk_UK.po rename to addons/board_document/i18n/uk_UA.po index 21ece15cea1..ae869683e3b 100644 --- a/addons/board_document/i18n/uk_UK.po +++ b/addons/board_document/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/sv_SV.po b/addons/board_document/i18n/vi_VN.po similarity index 93% rename from addons/board_document/i18n/sv_SV.po rename to addons/board_document/i18n/vi_VN.po index 3ae5252b507..bd725516a5e 100644 --- a/addons/board_document/i18n/sv_SV.po +++ b/addons/board_document/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/zh_CN.po b/addons/board_document/i18n/zh_CN.po index c05341b11f1..ce1bf2519ba 100644 --- a/addons/board_document/i18n/zh_CN.po +++ b/addons/board_document/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_document/i18n/zh_TW.po b/addons/board_document/i18n/zh_TW.po index b6f006fe94d..6d67479473d 100644 --- a/addons/board_document/i18n/zh_TW.po +++ b/addons/board_document/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/ar_AR.po b/addons/board_manufacturing/i18n/ar_AR.po index 5556f73d95b..0cc579a484c 100644 --- a/addons/board_manufacturing/i18n/ar_AR.po +++ b/addons/board_manufacturing/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/bg_BG.po b/addons/board_manufacturing/i18n/bg_BG.po index 54969e1f77b..fad9e286a5b 100644 --- a/addons/board_manufacturing/i18n/bg_BG.po +++ b/addons/board_manufacturing/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+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 52c58e43358..3e8257509f2 100644 --- a/addons/board_manufacturing/i18n/board_manufacturing.pot +++ b/addons/board_manufacturing/i18n/board_manufacturing.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/bs_BS.po b/addons/board_manufacturing/i18n/bs_BS.po index 70b11cda8a8..507775fdb71 100644 --- a/addons/board_manufacturing/i18n/bs_BS.po +++ b/addons/board_manufacturing/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/ca_ES.po b/addons/board_manufacturing/i18n/ca_ES.po index ebcf1634281..fbf3f1c40fd 100644 --- a/addons/board_manufacturing/i18n/ca_ES.po +++ b/addons/board_manufacturing/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/cs_CZ.po b/addons/board_manufacturing/i18n/cs_CZ.po index a373da559af..99ee8480c00 100644 --- a/addons/board_manufacturing/i18n/cs_CZ.po +++ b/addons/board_manufacturing/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/de_DE.po b/addons/board_manufacturing/i18n/de_DE.po index bca663a156d..a8bf976074b 100644 --- a/addons/board_manufacturing/i18n/de_DE.po +++ b/addons/board_manufacturing/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/es_AR.po b/addons/board_manufacturing/i18n/es_AR.po index 10677d11187..7d1a6e88a25 100644 --- a/addons/board_manufacturing/i18n/es_AR.po +++ b/addons/board_manufacturing/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/es_ES.po b/addons/board_manufacturing/i18n/es_ES.po index 6d2fea4065e..8b742eca529 100644 --- a/addons/board_manufacturing/i18n/es_ES.po +++ b/addons/board_manufacturing/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/et_EE.po b/addons/board_manufacturing/i18n/et_EE.po index ef739a1cc93..c70a1b74bb6 100644 --- a/addons/board_manufacturing/i18n/et_EE.po +++ b/addons/board_manufacturing/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/fi_FI.po b/addons/board_manufacturing/i18n/fi_FI.po index 9983fb521a3..122142ebb70 100644 --- a/addons/board_manufacturing/i18n/fi_FI.po +++ b/addons/board_manufacturing/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/fr_FR.po b/addons/board_manufacturing/i18n/fr_FR.po index 93f03c886f7..7da62db40fa 100644 --- a/addons/board_manufacturing/i18n/fr_FR.po +++ b/addons/board_manufacturing/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "Gestion de la production" #. module: board_manufacturing #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: board_manufacturing #: model:ir.actions.act_window,name:board_manufacturing.open_board_manufacturing diff --git a/addons/board_manufacturing/i18n/hr_HR.po b/addons/board_manufacturing/i18n/hr_HR.po index 9604eef24d0..8feb6d1482e 100644 --- a/addons/board_manufacturing/i18n/hr_HR.po +++ b/addons/board_manufacturing/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/hu_HU.po b/addons/board_manufacturing/i18n/hu_HU.po index f3ae14967ee..759954bda41 100644 --- a/addons/board_manufacturing/i18n/hu_HU.po +++ b/addons/board_manufacturing/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/id_ID.po b/addons/board_manufacturing/i18n/id_ID.po index fa50bb347ed..0434fa8282e 100644 --- a/addons/board_manufacturing/i18n/id_ID.po +++ b/addons/board_manufacturing/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/it_IT.po b/addons/board_manufacturing/i18n/it_IT.po index abfc4849caa..7296c4ab8f1 100644 --- a/addons/board_manufacturing/i18n/it_IT.po +++ b/addons/board_manufacturing/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/lt_LT.po b/addons/board_manufacturing/i18n/lt_LT.po index 359d88b6dc7..d526daa367a 100644 --- a/addons/board_manufacturing/i18n/lt_LT.po +++ b/addons/board_manufacturing/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/nl_BE.po b/addons/board_manufacturing/i18n/nl_BE.po index 55c73b8c092..284898830ee 100644 --- a/addons/board_manufacturing/i18n/nl_BE.po +++ b/addons/board_manufacturing/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/nl_NL.po b/addons/board_manufacturing/i18n/nl_NL.po index b1975e12e33..e5c5008b0c6 100644 --- a/addons/board_manufacturing/i18n/nl_NL.po +++ b/addons/board_manufacturing/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/pl_PL.po b/addons/board_manufacturing/i18n/pl_PL.po index 9051a29d8da..89fe70da69b 100644 --- a/addons/board_manufacturing/i18n/pl_PL.po +++ b/addons/board_manufacturing/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/pt_BR.po b/addons/board_manufacturing/i18n/pt_BR.po index 6742b2f4e55..46f0b015d59 100644 --- a/addons/board_manufacturing/i18n/pt_BR.po +++ b/addons/board_manufacturing/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/pt_PT.po b/addons/board_manufacturing/i18n/pt_PT.po index fac75a7573c..41942900c23 100644 --- a/addons/board_manufacturing/i18n/pt_PT.po +++ b/addons/board_manufacturing/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/ro_RO.po b/addons/board_manufacturing/i18n/ro_RO.po index 95a7e04e573..ff65fb3588a 100644 --- a/addons/board_manufacturing/i18n/ro_RO.po +++ b/addons/board_manufacturing/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/ru_RU.po b/addons/board_manufacturing/i18n/ru_RU.po index 66824fb4031..99f79fb995f 100644 --- a/addons/board_manufacturing/i18n/ru_RU.po +++ b/addons/board_manufacturing/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/sl_SL.po b/addons/board_manufacturing/i18n/sl_SL.po index 3a18d65f744..397947e631d 100644 --- a/addons/board_manufacturing/i18n/sl_SL.po +++ b/addons/board_manufacturing/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/cs_CS.po b/addons/board_manufacturing/i18n/sq_AL.po similarity index 92% rename from addons/board_manufacturing/i18n/cs_CS.po rename to addons/board_manufacturing/i18n/sq_AL.po index afe58590e5e..8e78a9d0861 100644 --- a/addons/board_manufacturing/i18n/cs_CS.po +++ b/addons/board_manufacturing/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/sv_SE.po b/addons/board_manufacturing/i18n/sv_SE.po index e7319d40f9c..a24e86b509c 100644 --- a/addons/board_manufacturing/i18n/sv_SE.po +++ b/addons/board_manufacturing/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/tr_TR.po b/addons/board_manufacturing/i18n/tr_TR.po index 8d01d66613c..741c2161eab 100644 --- a/addons/board_manufacturing/i18n/tr_TR.po +++ b/addons/board_manufacturing/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/uk_UK.po b/addons/board_manufacturing/i18n/uk_UA.po similarity index 93% rename from addons/board_manufacturing/i18n/uk_UK.po rename to addons/board_manufacturing/i18n/uk_UA.po index d2e775c3135..0ab29b6fa8b 100644 --- a/addons/board_manufacturing/i18n/uk_UK.po +++ b/addons/board_manufacturing/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/sv_SV.po b/addons/board_manufacturing/i18n/vi_VN.po similarity index 91% rename from addons/board_manufacturing/i18n/sv_SV.po rename to addons/board_manufacturing/i18n/vi_VN.po index 897e16d1fc6..84a7b4b8d63 100644 --- a/addons/board_manufacturing/i18n/sv_SV.po +++ b/addons/board_manufacturing/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "" #. module: board_manufacturing #: model:ir.ui.menu,name:board_manufacturing.next_id_87 msgid "Production" -msgstr "Produktion" +msgstr "" #. module: board_manufacturing #: constraint:ir.actions.act_window:0 diff --git a/addons/board_manufacturing/i18n/zh_CN.po b/addons/board_manufacturing/i18n/zh_CN.po index 8edac2af424..273aadb29d8 100644 --- a/addons/board_manufacturing/i18n/zh_CN.po +++ b/addons/board_manufacturing/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/zh_TW.po b/addons/board_manufacturing/i18n/zh_TW.po index 81f6455c711..2df1cfdbe36 100644 --- a/addons/board_manufacturing/i18n/zh_TW.po +++ b/addons/board_manufacturing/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/ar_AR.po b/addons/board_project/i18n/ar_AR.po index 35e2fc7c61b..f5c6313c126 100644 --- a/addons/board_project/i18n/ar_AR.po +++ b/addons/board_project/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/bg_BG.po b/addons/board_project/i18n/bg_BG.po index 098872a6f30..e0d0e102543 100644 --- a/addons/board_project/i18n/bg_BG.po +++ b/addons/board_project/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+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 c2b1d330d48..13c6672c5f9 100644 --- a/addons/board_project/i18n/board_project.pot +++ b/addons/board_project/i18n/board_project.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/bs_BS.po b/addons/board_project/i18n/bs_BS.po index a155199254e..a38600bfed5 100644 --- a/addons/board_project/i18n/bs_BS.po +++ b/addons/board_project/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/ca_ES.po b/addons/board_project/i18n/ca_ES.po index eb6057d5a7a..34eb538854a 100644 --- a/addons/board_project/i18n/ca_ES.po +++ b/addons/board_project/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/cs_CZ.po b/addons/board_project/i18n/cs_CZ.po index 5c90c81e8cb..007053282ff 100644 --- a/addons/board_project/i18n/cs_CZ.po +++ b/addons/board_project/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/de_DE.po b/addons/board_project/i18n/de_DE.po index 4bd385007e7..1486854b0a5 100644 --- a/addons/board_project/i18n/de_DE.po +++ b/addons/board_project/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/es_AR.po b/addons/board_project/i18n/es_AR.po index 3227ddc23d9..52bd0e16a9c 100644 --- a/addons/board_project/i18n/es_AR.po +++ b/addons/board_project/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/es_ES.po b/addons/board_project/i18n/es_ES.po index cc9b01160f2..cf7ed960e93 100644 --- a/addons/board_project/i18n/es_ES.po +++ b/addons/board_project/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/et_EE.po b/addons/board_project/i18n/et_EE.po index 15e14c1adca..d5da8fab2bb 100644 --- a/addons/board_project/i18n/et_EE.po +++ b/addons/board_project/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/fi_FI.po b/addons/board_project/i18n/fi_FI.po index 5636084b06e..1409c49d47d 100644 --- a/addons/board_project/i18n/fi_FI.po +++ b/addons/board_project/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/fr_FR.po b/addons/board_project/i18n/fr_FR.po index 28017c683f6..acdb72a0479 100644 --- a/addons/board_project/i18n/fr_FR.po +++ b/addons/board_project/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "Feuille de présence" #. module: board_project #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: board_project #: view:board.board:0 diff --git a/addons/board_project/i18n/hr_HR.po b/addons/board_project/i18n/hr_HR.po index d5200b1891e..39692fc4cf4 100644 --- a/addons/board_project/i18n/hr_HR.po +++ b/addons/board_project/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/hu_HU.po b/addons/board_project/i18n/hu_HU.po index f1a2832a382..4704cde106e 100644 --- a/addons/board_project/i18n/hu_HU.po +++ b/addons/board_project/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/id_ID.po b/addons/board_project/i18n/id_ID.po index e36a4d8412c..705c85b6d97 100644 --- a/addons/board_project/i18n/id_ID.po +++ b/addons/board_project/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/it_IT.po b/addons/board_project/i18n/it_IT.po index 31254fd114b..98871f9731e 100644 --- a/addons/board_project/i18n/it_IT.po +++ b/addons/board_project/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/lt_LT.po b/addons/board_project/i18n/lt_LT.po index 306fd408883..7da0a06b13d 100644 --- a/addons/board_project/i18n/lt_LT.po +++ b/addons/board_project/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/nl_BE.po b/addons/board_project/i18n/nl_BE.po index 268b7bfa192..7d3a44961d2 100644 --- a/addons/board_project/i18n/nl_BE.po +++ b/addons/board_project/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/nl_NL.po b/addons/board_project/i18n/nl_NL.po index 9124452f5d1..909a2d38b65 100644 --- a/addons/board_project/i18n/nl_NL.po +++ b/addons/board_project/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/pl_PL.po b/addons/board_project/i18n/pl_PL.po index 701b2a6f326..35727eb4a71 100644 --- a/addons/board_project/i18n/pl_PL.po +++ b/addons/board_project/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/pt_BR.po b/addons/board_project/i18n/pt_BR.po index 1199de369b5..91cd2ed47d1 100644 --- a/addons/board_project/i18n/pt_BR.po +++ b/addons/board_project/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/pt_PT.po b/addons/board_project/i18n/pt_PT.po index b0630ef4c88..49f73ed8d71 100644 --- a/addons/board_project/i18n/pt_PT.po +++ b/addons/board_project/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/ro_RO.po b/addons/board_project/i18n/ro_RO.po index 72a11990807..503113a81b8 100644 --- a/addons/board_project/i18n/ro_RO.po +++ b/addons/board_project/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/ru_RU.po b/addons/board_project/i18n/ru_RU.po index 10d2fa1afcd..195f232f18c 100644 --- a/addons/board_project/i18n/ru_RU.po +++ b/addons/board_project/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/sl_SL.po b/addons/board_project/i18n/sl_SL.po index dae0329dc14..ec0c4c6bafe 100644 --- a/addons/board_project/i18n/sl_SL.po +++ b/addons/board_project/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/cs_CS.po b/addons/board_project/i18n/sq_AL.po similarity index 95% rename from addons/board_project/i18n/cs_CS.po rename to addons/board_project/i18n/sq_AL.po index 587f2f117fb..d3e89a592ad 100644 --- a/addons/board_project/i18n/cs_CS.po +++ b/addons/board_project/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/sv_SE.po b/addons/board_project/i18n/sv_SE.po index c89c4a62df5..b13ccaff5ea 100644 --- a/addons/board_project/i18n/sv_SE.po +++ b/addons/board_project/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/tr_TR.po b/addons/board_project/i18n/tr_TR.po index d548db97e5a..1e17ce61f14 100644 --- a/addons/board_project/i18n/tr_TR.po +++ b/addons/board_project/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/uk_UK.po b/addons/board_project/i18n/uk_UA.po similarity index 96% rename from addons/board_project/i18n/uk_UK.po rename to addons/board_project/i18n/uk_UA.po index 09942515fbd..9108cfa3f40 100644 --- a/addons/board_project/i18n/uk_UK.po +++ b/addons/board_project/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/sv_SV.po b/addons/board_project/i18n/vi_VN.po similarity index 95% rename from addons/board_project/i18n/sv_SV.po rename to addons/board_project/i18n/vi_VN.po index b90992e0e45..2ec176200fc 100644 --- a/addons/board_project/i18n/sv_SV.po +++ b/addons/board_project/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -104,7 +104,7 @@ msgstr "" #. module: board_project #: model:ir.ui.menu,name:board_project.next_id_86 msgid "Project" -msgstr "Projekt" +msgstr "" #. module: board_project #: view:board.board:0 diff --git a/addons/board_project/i18n/zh_CN.po b/addons/board_project/i18n/zh_CN.po index 626162e65f8..a3b3c016557 100644 --- a/addons/board_project/i18n/zh_CN.po +++ b/addons/board_project/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/zh_TW.po b/addons/board_project/i18n/zh_TW.po index 547387d8f10..1642982491c 100644 --- a/addons/board_project/i18n/zh_TW.po +++ b/addons/board_project/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/ar_AR.po b/addons/board_sale/i18n/ar_AR.po index 7482cd451d1..d1f534797ab 100644 --- a/addons/board_sale/i18n/ar_AR.po +++ b/addons/board_sale/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/bg_BG.po b/addons/board_sale/i18n/bg_BG.po index 56a5ad2d728..aa05b0f0e3b 100644 --- a/addons/board_sale/i18n/bg_BG.po +++ b/addons/board_sale/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+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 0eeb545e2fc..8232c8d7864 100644 --- a/addons/board_sale/i18n/board_sale.pot +++ b/addons/board_sale/i18n/board_sale.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/bs_BS.po b/addons/board_sale/i18n/bs_BS.po index 04d3c770f8e..959c2d27785 100644 --- a/addons/board_sale/i18n/bs_BS.po +++ b/addons/board_sale/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/ca_ES.po b/addons/board_sale/i18n/ca_ES.po index 5ecfb4b4a2e..7697f5328f8 100644 --- a/addons/board_sale/i18n/ca_ES.po +++ b/addons/board_sale/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/cs_CZ.po b/addons/board_sale/i18n/cs_CZ.po index c89ad610903..e809d4be87f 100644 --- a/addons/board_sale/i18n/cs_CZ.po +++ b/addons/board_sale/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/de_DE.po b/addons/board_sale/i18n/de_DE.po index 532390263fd..aa80810a6c0 100644 --- a/addons/board_sale/i18n/de_DE.po +++ b/addons/board_sale/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/es_AR.po b/addons/board_sale/i18n/es_AR.po index 5c77a65bc1f..ee9c338dd82 100644 --- a/addons/board_sale/i18n/es_AR.po +++ b/addons/board_sale/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/es_ES.po b/addons/board_sale/i18n/es_ES.po index a4db6585a77..e1fd5dd4501 100644 --- a/addons/board_sale/i18n/es_ES.po +++ b/addons/board_sale/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/et_EE.po b/addons/board_sale/i18n/et_EE.po index e6c70d86bc7..f52f2192fcd 100644 --- a/addons/board_sale/i18n/et_EE.po +++ b/addons/board_sale/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/fi_FI.po b/addons/board_sale/i18n/fi_FI.po index e26384a2882..caab8ac2875 100644 --- a/addons/board_sale/i18n/fi_FI.po +++ b/addons/board_sale/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/fr_FR.po b/addons/board_sale/i18n/fr_FR.po index b768a120315..12f695309b9 100644 --- a/addons/board_sale/i18n/fr_FR.po +++ b/addons/board_sale/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Mes Devis Ouverts" #. module: board_sale #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: board_sale #: model:ir.ui.menu,name:board_sale.next_id_88 diff --git a/addons/board_sale/i18n/hr_HR.po b/addons/board_sale/i18n/hr_HR.po index bc35c8f891c..77131edc8b3 100644 --- a/addons/board_sale/i18n/hr_HR.po +++ b/addons/board_sale/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/hu_HU.po b/addons/board_sale/i18n/hu_HU.po index 4a6dce59c6b..80cae131eb6 100644 --- a/addons/board_sale/i18n/hu_HU.po +++ b/addons/board_sale/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/id_ID.po b/addons/board_sale/i18n/id_ID.po index 0f0e7d49a3e..64696a891b1 100644 --- a/addons/board_sale/i18n/id_ID.po +++ b/addons/board_sale/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/it_IT.po b/addons/board_sale/i18n/it_IT.po index 46a714c7315..a276876a45a 100644 --- a/addons/board_sale/i18n/it_IT.po +++ b/addons/board_sale/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/lt_LT.po b/addons/board_sale/i18n/lt_LT.po index 5d2dc5b8624..7e518af73b4 100644 --- a/addons/board_sale/i18n/lt_LT.po +++ b/addons/board_sale/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/nl_BE.po b/addons/board_sale/i18n/nl_BE.po index 880a92bda65..41e63f45f66 100644 --- a/addons/board_sale/i18n/nl_BE.po +++ b/addons/board_sale/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/nl_NL.po b/addons/board_sale/i18n/nl_NL.po index 45fde9e9466..db2b35c554d 100644 --- a/addons/board_sale/i18n/nl_NL.po +++ b/addons/board_sale/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/pl_PL.po b/addons/board_sale/i18n/pl_PL.po index 2c2ea21f0d2..62b6bcf8155 100644 --- a/addons/board_sale/i18n/pl_PL.po +++ b/addons/board_sale/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/pt_BR.po b/addons/board_sale/i18n/pt_BR.po index 36fd16bb649..5e9f3b6b7c3 100644 --- a/addons/board_sale/i18n/pt_BR.po +++ b/addons/board_sale/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/pt_PT.po b/addons/board_sale/i18n/pt_PT.po index 59c97a84d93..84718146028 100644 --- a/addons/board_sale/i18n/pt_PT.po +++ b/addons/board_sale/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/ro_RO.po b/addons/board_sale/i18n/ro_RO.po index 1a268606e50..56d4414d633 100644 --- a/addons/board_sale/i18n/ro_RO.po +++ b/addons/board_sale/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/ru_RU.po b/addons/board_sale/i18n/ru_RU.po index ad2b33c4f0b..6df7332074d 100644 --- a/addons/board_sale/i18n/ru_RU.po +++ b/addons/board_sale/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/sl_SL.po b/addons/board_sale/i18n/sl_SL.po index a5d5a368805..d84eafe2878 100644 --- a/addons/board_sale/i18n/sl_SL.po +++ b/addons/board_sale/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/sv_SV.po b/addons/board_sale/i18n/sq_AL.po similarity index 91% rename from addons/board_sale/i18n/sv_SV.po rename to addons/board_sale/i18n/sq_AL.po index 054c465a417..53da60527e0 100644 --- a/addons/board_sale/i18n/sv_SV.po +++ b/addons/board_sale/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/sv_SE.po b/addons/board_sale/i18n/sv_SE.po index 9e256981042..72579996b68 100644 --- a/addons/board_sale/i18n/sv_SE.po +++ b/addons/board_sale/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/tr_TR.po b/addons/board_sale/i18n/tr_TR.po index 89688d8ccbe..e5f6e226e5c 100644 --- a/addons/board_sale/i18n/tr_TR.po +++ b/addons/board_sale/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/uk_UK.po b/addons/board_sale/i18n/uk_UA.po similarity index 91% rename from addons/board_sale/i18n/uk_UK.po rename to addons/board_sale/i18n/uk_UA.po index babe0cfa92f..df85a721f29 100644 --- a/addons/board_sale/i18n/uk_UK.po +++ b/addons/board_sale/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/cs_CS.po b/addons/board_sale/i18n/vi_VN.po similarity index 91% rename from addons/board_sale/i18n/cs_CS.po rename to addons/board_sale/i18n/vi_VN.po index 278280b9782..5cd24d4be15 100644 --- a/addons/board_sale/i18n/cs_CS.po +++ b/addons/board_sale/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/zh_CN.po b/addons/board_sale/i18n/zh_CN.po index f3a690200f2..6222fa57d93 100644 --- a/addons/board_sale/i18n/zh_CN.po +++ b/addons/board_sale/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/zh_TW.po b/addons/board_sale/i18n/zh_TW.po index 1e82ebc82ea..56441589052 100644 --- a/addons/board_sale/i18n/zh_TW.po +++ b/addons/board_sale/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/ar_AR.po b/addons/crm/i18n/ar_AR.po index bbc37aa17a4..8caf1079be1 100644 --- a/addons/crm/i18n/ar_AR.po +++ b/addons/crm/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/bg_BG.po b/addons/crm/i18n/bg_BG.po index 4341d11be20..46d46acf334 100644 --- a/addons/crm/i18n/bg_BG.po +++ b/addons/crm/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/bs_BS.po b/addons/crm/i18n/bs_BS.po index 8e24b14edcb..80eb1fc0d0a 100644 --- a/addons/crm/i18n/bs_BS.po +++ b/addons/crm/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/ca_ES.po b/addons/crm/i18n/ca_ES.po index 88c6d59feb0..075b3ea65cd 100644 --- a/addons/crm/i18n/ca_ES.po +++ b/addons/crm/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+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 970c16fc49f..d49b0fd8abe 100644 --- a/addons/crm/i18n/crm.pot +++ b/addons/crm/i18n/crm.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/cs_CZ.po b/addons/crm/i18n/cs_CZ.po index f0e6be7a40c..1b98e5d7eb5 100644 --- a/addons/crm/i18n/cs_CZ.po +++ b/addons/crm/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/de_DE.po b/addons/crm/i18n/de_DE.po index 9d7ef0edfdf..785246b08ab 100644 --- a/addons/crm/i18n/de_DE.po +++ b/addons/crm/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/es_AR.po b/addons/crm/i18n/es_AR.po index 8d89c48ae9d..24d2d8eb585 100644 --- a/addons/crm/i18n/es_AR.po +++ b/addons/crm/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/es_ES.po b/addons/crm/i18n/es_ES.po index d9a78ff2309..09c3cd3edb9 100644 --- a/addons/crm/i18n/es_ES.po +++ b/addons/crm/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/et_EE.po b/addons/crm/i18n/et_EE.po index 167db079891..d5151f9f2f7 100644 --- a/addons/crm/i18n/et_EE.po +++ b/addons/crm/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/fi_FI.po b/addons/crm/i18n/fi_FI.po index 06b225d7866..de67489b75b 100644 --- a/addons/crm/i18n/fi_FI.po +++ b/addons/crm/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/fr_FR.po b/addons/crm/i18n/fr_FR.po index 33b8518cd80..b7221ebdde8 100644 --- a/addons/crm/i18n/fr_FR.po +++ b/addons/crm/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: crm #: view:crm.case.rule:0 msgid "Delay After Trigger Date:" -msgstr "Délai après la date de déclenchement :" +msgstr "Délai après la date de déclenchement:" #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu7:0 @@ -29,7 +29,7 @@ msgstr "Mes brouillons " #. module: crm #: view:crm.case:0 msgid "Add Last Mail for Replying" -msgstr "Ajouter le dernier courriel pour la réponse" +msgstr "Ajouter le dernier courrier pour réponse" #. module: crm #: view:crm.segmentation:0 @@ -46,7 +46,7 @@ msgstr "Tous les cas" #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "this wizard will create all sub-menus, within the selected menu." -msgstr "Cet assistant créera tous les sous menus, par rapport au menu sélectionné." +msgstr "" #. module: crm #: field:crm.case.rule,act_remind_partner:0 @@ -56,7 +56,7 @@ msgstr "Rappeler le partenaire" #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Base Information" -msgstr "Information de base" +msgstr "Information de Base" #. module: crm #: field:crm.case.rule,trg_partner_categ_id:0 @@ -67,7 +67,7 @@ msgstr "Catégorie du partenaire" #. module: crm #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: crm #: field:crm.segmentation,sales_purchase_active:0 @@ -109,7 +109,7 @@ msgstr "Création des menus pour cette section de cas" #. module: crm #: view:crm.case.rule:0 msgid "Template of Email to Send" -msgstr "Modèle pour l'envoi de courriel" +msgstr "Modèle de l'Email à envoyer" #. module: crm #: field:crm.case.rule,trg_state_to:0 @@ -129,7 +129,7 @@ msgstr "CRM & SRM" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Description" -msgstr "Description de segmentation" +msgstr "Description" #. module: crm #: view:crm.case.rule:0 @@ -139,7 +139,7 @@ msgstr "%(case_user)s = Nom du responsable" #. module: crm #: field:crm.case.section,allow_unlink:0 msgid "Allow Delete" -msgstr "Autoriser la suppression" +msgstr "" #. module: crm #: field:crm.case.rule,act_email_cc:0 @@ -165,7 +165,7 @@ msgstr "Cas" #: selection:crm.case.rule,trg_priority_from:0 #: selection:crm.case.rule,trg_priority_to:0 msgid "Highest" -msgstr "Très haute" +msgstr "Haute" #. module: crm #: selection:crm.segmentation.line,expr_operator:0 @@ -180,7 +180,7 @@ msgstr "" #. module: crm #: field:crm.case,email_cc:0 msgid "Watchers Emails" -msgstr "Courriels en copie" +msgstr "E-mails en copie" #. module: crm #: wizard_button:crm.case.section.menu,design_menu,create:0 @@ -269,7 +269,7 @@ msgstr "Priorité maximale" #: wizard_field:crm.case.section.menu,design_menu,menu17:0 #: wizard_field:crm.case.section.menu,design_menu,menu17_option:0 msgid "New " -msgstr "Nouveau" +msgstr "" #. module: crm #: view:res.partner.events:0 @@ -279,7 +279,7 @@ msgstr "Évènements partenaire" #. module: crm #: view:crm.case.rule:0 msgid "Conditions on Case Fields" -msgstr "Conditions sur les champs des cas" +msgstr "Condition sur le champ du cas" #. module: crm #: field:crm.case,date_action_next:0 @@ -289,7 +289,7 @@ msgstr "Prochaine action" #. module: crm #: view:crm.case:0 msgid "Reset to Draft" -msgstr "Remettre en brouillon" +msgstr "Mettre en brouillon" #. module: crm #: field:crm.case,date_deadline:0 @@ -323,12 +323,12 @@ msgstr "Catégorie de cas" #. module: crm #: view:crm.case:0 msgid "Estimates" -msgstr "Estimation" +msgstr "Estimer" #. module: crm #: view:crm.case:0 msgid "Extra Info" -msgstr "Information complémentaire" +msgstr "Infos" #. module: crm #: view:crm.case.rule:0 @@ -366,7 +366,7 @@ msgstr "Mes ouverts " #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Select Views (empty for default)" -msgstr "Sélectionner les vues (vide par défaut)" +msgstr "Sélectionne les Vues (vide par défaut)" #. module: crm #: field:crm.case.rule,trg_state_from:0 @@ -393,7 +393,7 @@ msgstr "XML non valide pour l'architecture de la vue" #. module: crm #: view:crm.case.rule:0 msgid "Special Keywords to Be Used in The Body" -msgstr "Des mots clés spécifiques peuvent être utiliser dans le corps" +msgstr "Des mots clés spéciaux peuvent être utiliser dans le corps" #. module: crm #: field:crm.case,priority:0 @@ -403,7 +403,7 @@ msgstr "Priorité" #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Optional Expression" -msgstr "Expression optionnelle" +msgstr "Expression facultative" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_history_my-act @@ -435,7 +435,7 @@ msgstr "Sections" #. module: crm #: view:crm.case.section:0 msgid "Case section" -msgstr "Section du cas" +msgstr "Section de cas" #. module: crm #: field:crm.case,canal_id:0 @@ -459,17 +459,17 @@ msgstr "Très basse" #. module: crm #: view:crm.case.rule:0 msgid "E-Mail Reminders (includes the content of the case)" -msgstr "Rappel par courriel (Inclus le contenu du cas" +msgstr "Rappel par email (incluant le contenu du cas)" #. module: crm #: view:crm.segmentation:0 msgid "Profiling" -msgstr "Analyse. module: cr: code:addons#. module: cr, python-form#: view:crm.case.rule:sgid \"Error !msgid \"Fields to Changesgstr \"Champs à changer" +msgstr "Analyse" #. module: crm #: view:crm.case.rule:0 msgid "Fields to Change" -msgstr "" +msgstr "Champs à remplacer" #. module: crm #: model:ir.ui.menu,name:crm.menu_crm_case_history-act_main @@ -496,7 +496,7 @@ msgstr "Le calcul est effectué sur tout les évenements qui ont eux lieu pendan #. module: crm #: view:crm.case.rule:0 msgid "%(partner_email)s = Partner email" -msgstr "%(partner_email)s = courriel partenaire" +msgstr "%(partner_email)s = email partenaire" #. module: crm #: model:ir.model,name:crm.model_crm_segmentation_line @@ -570,7 +570,7 @@ msgstr "Dates" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Test" -msgstr "Test de segmentation" +msgstr "Critères de segmentation" #. module: crm #: field:crm.case,create_date:0 @@ -637,7 +637,7 @@ msgstr "Assigner au responsable" #. 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." -msgstr "La règle utilise un opérateur AND. Le cas doit correspondre à tous les champs non vide ainsi la règle exécute l'action décrite dans l'onglet 'Actions'" +msgstr "La règle utilise l'opérateur AND. Le cas doit correspondre à tous les champs non vide pour que la règle exécute l'action définit dans l'onglet 'Actions'." #. module: crm #: field:crm.case,history_line:0 @@ -724,7 +724,7 @@ msgstr "Référence 2" #. module: crm #: view:crm.segmentation:0 msgid "Sales Purchase" -msgstr "Ventes achats" +msgstr "Ventes Achats" #. module: crm #: field:crm.case,categ_id:0 @@ -797,12 +797,12 @@ msgstr "En suspens" #: selection:crm.case.section.menu,design_menu,menu8_option:0 #: selection:crm.case.section.menu,design_menu,menu9_option:0 msgid "List With Calendar" -msgstr "Liste avec calendrier" +msgstr "Liste avec calendirer" #. module: crm #: view:crm.case:0 msgid "Action Information" -msgstr "Information de l'action" +msgstr "Infos sur l'action" #. module: crm #: wizard_field:crm.case.section.menu,init,view_calendar:0 @@ -815,7 +815,7 @@ msgstr "Vue calendrier" #: selection:crm.case.rule,trg_priority_from:0 #: selection:crm.case.rule,trg_priority_to:0 msgid "Low" -msgstr "Basse" +msgstr "Bas" #. module: crm #: field:crm.case,date_closed:0 @@ -860,7 +860,7 @@ msgstr "En attente" #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "You may want to create a new parent menu to put all the created menus in." -msgstr "Vous devriez créer un nouveau menu parent pour mettre tous les menus créés dedans." +msgstr "" #. module: crm #: field:crm.case,state:0 @@ -885,7 +885,7 @@ msgstr "Statut d'exécution" #. module: crm #: help:crm.segmentation,som_interval:0 msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionality for recurring businesses." -msgstr "Une période est le nombre moyen de jours entre 2 cycles de vente ou d'achat pour cette segmentation. C'est couramment utilisé pour détecter si le partenaire n'a pas acheter ou vendu depuis longtemps, mais nous supposons que cet état d'esprit est dégréssif parce qu'il a probablement acheter a de meilleurs fournisseurs. Utiliser cette fonctionnalité pour des affaires récurrentes." +msgstr "Une période est le nombre moyen de jours entre 2 cycles de vente ou d'achat pour cette segmentation. C'est couramment utilisé pour détecter si le partenaire n'a pas acheter ou vendu depuis longtemps, mais nous supposons que cet état d'esprit est dégréssif parce qu'il a probablement acheter a de meilleurs fournisseurs. Utiliser cette fonctionnalité pour des affaires récurrentes" #. module: crm #: selection:crm.case,priority:0 @@ -905,7 +905,7 @@ msgstr "Escalader" #. module: crm #: model:ir.module.module,shortdesc:crm.module_meta_information msgid "Customer & Supplier Relationship Management" -msgstr "Gestion de la relation Client & Fournisseur" +msgstr "" #. module: crm #: field:crm.case.rule,trg_priority_from:0 @@ -920,7 +920,7 @@ msgstr "Facteur par défaut" #. module: crm #: view:crm.case.history:0 msgid "Case History" -msgstr "Historique du cas" +msgstr "Historique des cas" #. module: crm #: field:crm.case,planned_revenue:0 @@ -1014,7 +1014,7 @@ msgstr "Nom du Menu de Base" #. module: crm #: field:crm.case.section,child_ids:0 msgid "Child Sections" -msgstr "Sections enfant" +msgstr "" #. module: crm #: field:crm.case,date:0 @@ -1083,12 +1083,12 @@ msgstr "Général" #. module: crm #: view:crm.case:0 msgid "Send Reminder" -msgstr "Envoyer un rappel" +msgstr "Envoyer rappel" #. module: crm #: view:crm.case.section:0 msgid "Complete this if you use the mail gateway." -msgstr "Compléter ceci si vous utilisez la passerelle courriel" +msgstr "Complétez ceci si vous utilisez la passerelle mail" #. module: crm #: help:crm.segmentation,categ_id:0 @@ -1142,7 +1142,7 @@ msgstr "Vue en arbre" #. module: crm #: view:crm.case.rule:0 msgid "Conditions on Case Partner" -msgstr "Conditions sur le cas partenaire" +msgstr "Condition sur le cas partenaire" #. module: crm #: field:crm.case.section,code:0 @@ -1152,7 +1152,7 @@ msgstr "Code de la section" #. module: crm #: field:crm.case.section,user_id:0 msgid "Responsible User" -msgstr "Responsable" +msgstr "" #. module: crm #: constraint:ir.model:0 @@ -1173,7 +1173,7 @@ msgstr "Responsable" #. module: crm #: wizard_view:crm.case.section.menu,init:0 msgid "Create Menus For Cases" -msgstr "Créer les menus pour les cas" +msgstr "Créer des Menus pour les Cas" #. module: crm #: field:crm.case.rule,act_mail_to_partner:0 @@ -1220,7 +1220,7 @@ msgstr "Description" #. module: crm #: field:crm.case.rule,trg_max_history:0 msgid "Maximum Communication History" -msgstr "Historique de communication maximum" +msgstr "Limite Maximale de l'Historique de communication" #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu11:0 @@ -1265,12 +1265,12 @@ msgstr "Obligatoire / Optionnelle" #. module: crm #: selection:crm.segmentation.line,expr_name:0 msgid "Sale Amount" -msgstr "Montant des ventes" +msgstr "Montant de vente" #. module: crm #: help:crm.case.section,reply_to:0 msgid "The email address put in the 'Reply-To' of all emails sent by Open ERP about cases in this section" -msgstr "L'adresse courriel mise dans le 'Répondre à' de tous les courriels envoyés par OpenERP concernant cette section" +msgstr "" #. module: crm #: view:crm.case.rule:0 @@ -1281,7 +1281,7 @@ msgstr "Règle du cas" #. module: crm #: help:crm.case,date_deadline:0 msgid "Deadline Date is automatically computed from Start Date + Duration" -msgstr "La date limite automatiquement calculée par rapport à la date de début + durée " +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_operator:0 @@ -1324,12 +1324,12 @@ msgstr "Tous " #. module: crm #: view:crm.case.rule:0 msgid "E-Mail Actions" -msgstr "Actions par courriel" +msgstr "Action par Email" #. module: crm #: view:crm.segmentation:0 msgid "Stop Process" -msgstr "Stopper le processus" +msgstr "Arrêter le processus" #. module: crm #: selection:crm.case.section.menu,design_menu,menu10_option:0 @@ -1355,7 +1355,7 @@ msgstr "Liste" #. module: crm #: view:crm.case:0 msgid "Send Partner & Historize" -msgstr "Envoyer au partenaire et l'ajouter à l'historique" +msgstr "Envoi le partenaire et ajoute à l'historique" #. module: crm #: field:crm.case.log,user_id:0 @@ -1371,7 +1371,7 @@ msgstr "Tous les historiques" #. module: crm #: help:crm.case.section,allow_unlink:0 msgid "Allows to delete non draft cases" -msgstr "Autorise la suppression des cas non brouillon" +msgstr "" #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu4:0 @@ -1417,7 +1417,7 @@ msgstr "Condition sur le temps" #. module: crm #: view:crm.case:0 msgid "Planned revenue" -msgstr "Revenue prévue" +msgstr "Revenus planifiés" #. module: crm #: view:crm.segmentation:0 @@ -1427,7 +1427,7 @@ msgstr "Continuer le processus" #. module: crm #: view:crm.case.history:0 msgid "Case Description" -msgstr "Description du cas" +msgstr "Description des cas" #. module: crm #: field:crm.case.rule,act_mail_to_watchers:0 @@ -1451,7 +1451,7 @@ msgstr "Actions" #: selection:crm.case.rule,trg_priority_from:0 #: selection:crm.case.rule,trg_priority_to:0 msgid "High" -msgstr "Haute" +msgstr "Haut" #. module: crm #: field:crm.segmentation.line,expr_name:0 @@ -1483,7 +1483,7 @@ msgstr "Condition sur les états" #. module: crm #: wizard_view:crm.case.section.menu,design_menu:0 msgid "Update The Proposed Menus To Be Created" -msgstr "Mettre à jour les menus proposés à créer" +msgstr "Mettre à jour les Menus Proposés pour qu'ils soient créés" #. module: crm #: field:crm.case.rule,trg_date_type:0 diff --git a/addons/crm/i18n/hr_HR.po b/addons/crm/i18n/hr_HR.po index 1fe5fbaa8ee..4b7f14f5dcd 100644 --- a/addons/crm/i18n/hr_HR.po +++ b/addons/crm/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/hu_HU.po b/addons/crm/i18n/hu_HU.po index 95e9a58ae67..2ffbe842525 100644 --- a/addons/crm/i18n/hu_HU.po +++ b/addons/crm/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/id_ID.po b/addons/crm/i18n/id_ID.po index 56b05fbfb8f..7934da85417 100644 --- a/addons/crm/i18n/id_ID.po +++ b/addons/crm/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/it_IT.po b/addons/crm/i18n/it_IT.po index 061be39dfbc..97088f6c728 100644 --- a/addons/crm/i18n/it_IT.po +++ b/addons/crm/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/lt_LT.po b/addons/crm/i18n/lt_LT.po index afb198ba343..e039ffeecbd 100644 --- a/addons/crm/i18n/lt_LT.po +++ b/addons/crm/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/nl_BE.po b/addons/crm/i18n/nl_BE.po index b914578743a..a4158cc9b3f 100644 --- a/addons/crm/i18n/nl_BE.po +++ b/addons/crm/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/nl_NL.po b/addons/crm/i18n/nl_NL.po index 48b891555c7..885ae2eb46f 100644 --- a/addons/crm/i18n/nl_NL.po +++ b/addons/crm/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/pl_PL.po b/addons/crm/i18n/pl_PL.po index d5b5a3e1859..5ea949520ad 100644 --- a/addons/crm/i18n/pl_PL.po +++ b/addons/crm/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -1260,7 +1260,7 @@ msgstr "" #. module: crm #: field:crm.segmentation.line,operator:0 msgid "Mandatory / Optional" -msgstr "" +msgstr "Obowiązkowe / Opcjonalne" #. module: crm #: selection:crm.segmentation.line,expr_name:0 diff --git a/addons/crm/i18n/pt_BR.po b/addons/crm/i18n/pt_BR.po index 78aa932853a..8b7292be4c2 100644 --- a/addons/crm/i18n/pt_BR.po +++ b/addons/crm/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/pt_PT.po b/addons/crm/i18n/pt_PT.po index c9f02047e1f..71b5611efbd 100644 --- a/addons/crm/i18n/pt_PT.po +++ b/addons/crm/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -652,7 +652,7 @@ msgstr "ID máximo de terceiros processados" #. module: crm #: view:crm.case.rule:0 msgid "Condition on Communication History" -msgstr "" +msgstr "Condição na comunicação do Histórico" #. module: crm #: view:crm.case.rule:0 @@ -1260,7 +1260,7 @@ msgstr "Segmentações" #. module: crm #: field:crm.segmentation.line,operator:0 msgid "Mandatory / Optional" -msgstr "" +msgstr "Obrigatório / Opcional" #. module: crm #: selection:crm.segmentation.line,expr_name:0 diff --git a/addons/crm/i18n/ro_RO.po b/addons/crm/i18n/ro_RO.po index cc35298f69f..8fe75594fc3 100644 --- a/addons/crm/i18n/ro_RO.po +++ b/addons/crm/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/ru_RU.po b/addons/crm/i18n/ru_RU.po index e518f53725d..18b98ee9abf 100644 --- a/addons/crm/i18n/ru_RU.po +++ b/addons/crm/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/sl_SL.po b/addons/crm/i18n/sl_SL.po index cdff99d8674..43f6dac90de 100644 --- a/addons/crm/i18n/sl_SL.po +++ b/addons/crm/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/cs_CS.po b/addons/crm/i18n/sq_AL.po similarity index 99% rename from addons/crm/i18n/cs_CS.po rename to addons/crm/i18n/sq_AL.po index 3c35aa4e037..4dbdfb4e7bd 100644 --- a/addons/crm/i18n/cs_CS.po +++ b/addons/crm/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -539,7 +539,7 @@ msgstr "" #. module: crm #: model:ir.ui.menu,name:crm.menu_crm_configuration msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: crm #: model:ir.actions.act_window,name:crm.act_crm_case_categ_crm_case_opened @@ -554,7 +554,7 @@ msgstr "" #: model:ir.actions.act_window,name:crm.crm_case_categ-act #: model:ir.ui.menu,name:crm.menu_crm_case_categ-act msgid "Categories" -msgstr "Kategorie" +msgstr "" #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu2:0 @@ -1109,7 +1109,7 @@ msgstr "" #: wizard_button:crm.case.section.menu,design_menu,end:0 #: wizard_button:crm.case.section.menu,init,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: crm #: view:crm.case:0 diff --git a/addons/crm/i18n/sv_SE.po b/addons/crm/i18n/sv_SE.po index 92494870a6b..32b08849ad1 100644 --- a/addons/crm/i18n/sv_SE.po +++ b/addons/crm/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/tr_TR.po b/addons/crm/i18n/tr_TR.po index 3dd70d380df..f0017e61b5c 100644 --- a/addons/crm/i18n/tr_TR.po +++ b/addons/crm/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/uk_UK.po b/addons/crm/i18n/uk_UA.po similarity index 99% rename from addons/crm/i18n/uk_UK.po rename to addons/crm/i18n/uk_UA.po index e76efeed1ee..5609224fec7 100644 --- a/addons/crm/i18n/uk_UK.po +++ b/addons/crm/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/sv_SV.po b/addons/crm/i18n/vi_VN.po similarity index 98% rename from addons/crm/i18n/sv_SV.po rename to addons/crm/i18n/vi_VN.po index df070a142bd..f8f95366fb7 100644 --- a/addons/crm/i18n/sv_SV.po +++ b/addons/crm/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -196,12 +196,12 @@ msgstr "" #. module: crm #: field:crm.segmentation.line,expr_value:0 msgid "Value" -msgstr "Värde" +msgstr "" #. module: crm #: field:crm.case,planned_cost:0 msgid "Planned Costs" -msgstr "Planerade kostnader" +msgstr "" #. module: crm #: model:ir.model,name:crm.model_crm_case_history @@ -274,7 +274,7 @@ msgstr "" #. module: crm #: view:res.partner.events:0 msgid "Partner Events" -msgstr "Partnerhändelser" +msgstr "" #. module: crm #: view:crm.case.rule:0 @@ -289,7 +289,7 @@ msgstr "" #. module: crm #: view:crm.case:0 msgid "Reset to Draft" -msgstr "Återställ till utdrag" +msgstr "" #. module: crm #: field:crm.case,date_deadline:0 @@ -398,7 +398,7 @@ msgstr "" #. module: crm #: field:crm.case,priority:0 msgid "Priority" -msgstr "Prioritet" +msgstr "" #. module: crm #: selection:crm.segmentation.line,operator:0 @@ -419,7 +419,7 @@ msgstr "" #. module: crm #: field:crm.case,description:0 msgid "Your action" -msgstr "Beskrivning" +msgstr "" #. module: crm #: view:crm.segmentation:0 @@ -441,7 +441,7 @@ msgstr "" #: field:crm.case,canal_id:0 #: field:crm.case.log,canal_id:0 msgid "Channel" -msgstr "Kanal" +msgstr "" #. module: crm #: view:crm.segmentation:0 @@ -539,7 +539,7 @@ msgstr "" #. module: crm #: model:ir.ui.menu,name:crm.menu_crm_configuration msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: crm #: model:ir.actions.act_window,name:crm.act_crm_case_categ_crm_case_opened @@ -554,7 +554,7 @@ msgstr "" #: model:ir.actions.act_window,name:crm.crm_case_categ-act #: model:ir.ui.menu,name:crm.menu_crm_case_categ-act msgid "Categories" -msgstr "Kategorier" +msgstr "" #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu2:0 @@ -714,7 +714,7 @@ msgstr "" #. module: crm #: field:crm.case,ref:0 msgid "Reference" -msgstr "Referens" +msgstr "" #. module: crm #: field:crm.case,ref2:0 @@ -730,7 +730,7 @@ msgstr "" #: field:crm.case,categ_id:0 #: field:crm.case.rule,trg_categ_id:0 msgid "Category" -msgstr "Kategori" +msgstr "" #. module: crm #: field:crm.case.history,log_id:0 @@ -815,7 +815,7 @@ msgstr "" #: selection:crm.case.rule,trg_priority_from:0 #: selection:crm.case.rule,trg_priority_to:0 msgid "Low" -msgstr "Låg" +msgstr "" #. module: crm #: field:crm.case,date_closed:0 @@ -932,7 +932,7 @@ msgstr "" #: field:crm.case.rule,active:0 #: field:crm.case.section,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: crm #: wizard_field:crm.case.section.menu,design_menu,menu9:0 @@ -1021,7 +1021,7 @@ msgstr "" #: field:crm.case.log,date:0 #: selection:crm.case.rule,trg_date_type:0 msgid "Date" -msgstr "Datum" +msgstr "" #. module: crm #: wizard_view:crm.case.section.menu,design_menu:0 @@ -1157,12 +1157,12 @@ msgstr "" #. module: crm #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: crm #: view:res.partner.events:0 msgid "General Description" -msgstr "Allmän beskrivning" +msgstr "" #. module: crm #: field:crm.case,user_id:0 @@ -1215,7 +1215,7 @@ msgstr "" #: field:crm.case.history,note:0 #: field:crm.segmentation,description:0 msgid "Description" -msgstr "Beskrivning" +msgstr "" #. module: crm #: field:crm.case.rule,trg_max_history:0 @@ -1308,7 +1308,7 @@ msgstr "" #. module: crm #: field:crm.segmentation,name:0 msgid "Name" -msgstr "Namn" +msgstr "" #. module: crm #: help:crm.segmentation,som_interval_decrease:0 @@ -1451,7 +1451,7 @@ msgstr "" #: selection:crm.case.rule,trg_priority_from:0 #: selection:crm.case.rule,trg_priority_to:0 msgid "High" -msgstr "Hög" +msgstr "" #. module: crm #: field:crm.segmentation.line,expr_name:0 @@ -1473,7 +1473,7 @@ msgstr "" #: field:crm.case,partner_id:0 #: field:crm.case.rule,trg_partner_id:0 msgid "Partner" -msgstr "Partner" +msgstr "" #. module: crm #: view:crm.case.rule:0 diff --git a/addons/crm/i18n/zh_CN.po b/addons/crm/i18n/zh_CN.po index 81cf07ff274..3a98351d1d5 100644 --- a/addons/crm/i18n/zh_CN.po +++ b/addons/crm/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/zh_TW.po b/addons/crm/i18n/zh_TW.po index f644fc937a6..41f676762d7 100644 --- a/addons/crm/i18n/zh_TW.po +++ b/addons/crm/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/ar_AR.po b/addons/crm_configuration/i18n/ar_AR.po index 1a85d79b965..a116e2e0163 100644 --- a/addons/crm_configuration/i18n/ar_AR.po +++ b/addons/crm_configuration/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/bg_BG.po b/addons/crm_configuration/i18n/bg_BG.po index 91b62e964d8..5a45a437bfb 100644 --- a/addons/crm_configuration/i18n/bg_BG.po +++ b/addons/crm_configuration/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/bs_BS.po b/addons/crm_configuration/i18n/bs_BS.po index 3a044fa46fb..7a8fcbc4808 100644 --- a/addons/crm_configuration/i18n/bs_BS.po +++ b/addons/crm_configuration/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/ca_ES.po b/addons/crm_configuration/i18n/ca_ES.po index c5ffd0307f2..907a1de0e9a 100644 --- a/addons/crm_configuration/i18n/ca_ES.po +++ b/addons/crm_configuration/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/crm_configuration.pot b/addons/crm_configuration/i18n/crm_configuration.pot index d4e2b276592..fb189e2c286 100644 --- a/addons/crm_configuration/i18n/crm_configuration.pot +++ b/addons/crm_configuration/i18n/crm_configuration.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/cs_CZ.po b/addons/crm_configuration/i18n/cs_CZ.po index 40f8182176a..3c4c54b2e96 100644 --- a/addons/crm_configuration/i18n/cs_CZ.po +++ b/addons/crm_configuration/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/de_DE.po b/addons/crm_configuration/i18n/de_DE.po index 8c9456e3cc1..1dbcf411bfc 100644 --- a/addons/crm_configuration/i18n/de_DE.po +++ b/addons/crm_configuration/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/es_AR.po b/addons/crm_configuration/i18n/es_AR.po index 55475db34d3..d3d21478b38 100644 --- a/addons/crm_configuration/i18n/es_AR.po +++ b/addons/crm_configuration/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/es_ES.po b/addons/crm_configuration/i18n/es_ES.po index 448633505b7..7f659da2b4f 100644 --- a/addons/crm_configuration/i18n/es_ES.po +++ b/addons/crm_configuration/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/et_EE.po b/addons/crm_configuration/i18n/et_EE.po index 9f7bda6b722..fc5bb2b0f3c 100644 --- a/addons/crm_configuration/i18n/et_EE.po +++ b/addons/crm_configuration/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/fi_FI.po b/addons/crm_configuration/i18n/fi_FI.po index c79713c0cfe..cb08fa86508 100644 --- a/addons/crm_configuration/i18n/fi_FI.po +++ b/addons/crm_configuration/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/fr_FR.po b/addons/crm_configuration/i18n/fr_FR.po index d7887336724..6a6b04be227 100644 --- a/addons/crm_configuration/i18n/fr_FR.po +++ b/addons/crm_configuration/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "Cloture une affaire" #. module: crm_configuration #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_all3 @@ -65,7 +65,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Claim Description" -msgstr "Description de la réclamation" +msgstr "Description de la réclamations" #. module: crm_configuration #: view:crm.case:0 @@ -178,7 +178,7 @@ msgstr "Description de l'information" #. module: crm_configuration #: view:crm.case:0 msgid "Contact Name" -msgstr "Nom du contact" +msgstr "Nom du Contact" #. module: crm_configuration #: view:crm.case:0 @@ -198,7 +198,7 @@ msgstr "Rendez-vous d'opportunité" #. module: crm_configuration #: model:ir.module.module,shortdesc:crm_configuration.module_meta_information msgid "Customer Relationship Management" -msgstr "Gestion de la relation client" +msgstr "" #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage_claim1 @@ -276,7 +276,7 @@ msgstr "Envoyer au candidat et ajouter à l'historique" #. module: crm_configuration #: view:crm.case:0 msgid "Action Information" -msgstr "Information de l'action" +msgstr "Infos sur l'action" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category1 @@ -296,7 +296,7 @@ msgstr "Rendez-vous normal ou téléphonique pour une opportunité" #. module: crm_configuration #: view:crm.case:0 msgid "Status" -msgstr "Statut" +msgstr "État" #. module: crm_configuration #: wizard_button:crm.case.opportunity_set,init,confirm:0 @@ -306,7 +306,7 @@ msgstr "Créer une opportunité" #. module: crm_configuration #: view:crm.case:0 msgid "Meetings Tree" -msgstr "Liste des rendez vous" +msgstr "Arbre des Rendez-vous" #. module: crm_configuration #: view:crm.case:0 @@ -406,7 +406,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Meetings Form" -msgstr "Formulaire des rendez-vous" +msgstr "Formulaire de Rendez-vous" #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage_oppor5 @@ -464,7 +464,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Leads Form" -msgstr "Formulaire des affaires" +msgstr "Fomrulaire des Affaires" #. module: crm_configuration #: view:crm.case:0 @@ -481,7 +481,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Send Partner & Historize" -msgstr "Envoyer au partenaire et l'ajouter à l'historique" +msgstr "Envoi le partenaire et ajoute à l'historique" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_help_support_main @@ -496,7 +496,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Prospect Information" -msgstr "Information du prospect" +msgstr "Information du prospet" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_my4 @@ -512,7 +512,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Add Last Mail for Replying" -msgstr "Ajouter le dernier courriel pour la réponse" +msgstr "Ajouter le dernier courrier pour réponse" #. module: crm_configuration #: view:crm.case:0 @@ -642,12 +642,12 @@ msgstr "Candidat refusé" #. module: crm_configuration #: view:crm.case:0 msgid "Confirm Meeting" -msgstr "Confirmation de rendez vous" +msgstr "Confirmer le rendez-vous" #. module: crm_configuration #: view:crm.menu.config_wizard:0 msgid "Install Pre-Configured Features" -msgstr "Installation des fonctionnalités préconfigurés" +msgstr "Installer des paramètres pré-configurés" #. module: crm_configuration #: view:crm.case:0 @@ -701,7 +701,7 @@ msgstr "" #: model:ir.actions.act_window,name:crm_configuration.crm_case_stage_act #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_stage_act msgid "Stages" -msgstr "Étapes" +msgstr "" #. module: crm_configuration #: wizard_field:crm.case.opportunity_set,init,planned_revenue:0 @@ -836,12 +836,12 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Claim Revenue" -msgstr "Revenue des réclamations" +msgstr "Revenus des réclamations" #. module: crm_configuration #: view:crm.case:0 msgid "Jobs - Recruitment Tree" -msgstr "Liste des recrutements - offres d'emplois" +msgstr "Arbre des Emplois - Recrutements" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead1 @@ -918,7 +918,7 @@ msgstr "Nom" #. module: crm_configuration #: view:crm.case:0 msgid "Sales Stage" -msgstr "Étape des ventes" +msgstr "Etape de vente" #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage3 @@ -929,7 +929,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Next Meeting" -msgstr "Prochain rendez-vous" +msgstr "Prochain Rendez-vous" #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage_oppor7 @@ -968,7 +968,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Bugs Tree" -msgstr "Liste des bogues" +msgstr "Arbre des Bugs" #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage_oppor4 @@ -1008,12 +1008,12 @@ msgstr "Configurer les sections de la CRM" #. module: crm_configuration #: wizard_view:crm.case.meeting,init:0 msgid "Note that you can also use the calendar view to graphically schedule your next meeting." -msgstr "Vous pouvez utiliser la vue calendrier pour planifier graphiquement un prochain rendez vous." +msgstr "Notez que vous pouvez également utiliser la vue calendrier pour planifier vos prochains rendez-vous" #. module: crm_configuration #: view:crm.case:0 msgid "Leads Tree" -msgstr "Liste des affaires" +msgstr "Arbre des affaires" #. module: crm_configuration #: model:crm.case.categ,name:crm_configuration.categ_phone1 @@ -1097,7 +1097,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Claims Info" -msgstr "Information sur les réclamations" +msgstr "Informations sur les rélamations" #. module: crm_configuration #: field:crm.case.category2,name:0 @@ -1119,12 +1119,12 @@ msgstr "Acquise" #. module: crm_configuration #: view:crm.case:0 msgid "Reset to Draft" -msgstr "Remettre en brouillon" +msgstr "Mettre en brouillon" #. module: crm_configuration #: view:crm.case:0 msgid "Extra Info" -msgstr "Information complémentaire" +msgstr "Infos" #. module: crm_configuration #: model:crm.case.section,name:crm_configuration.section_support4 @@ -1145,7 +1145,7 @@ msgstr "Priorité" #. module: crm_configuration #: view:crm.case:0 msgid "Source" -msgstr "Source" +msgstr "Origine" #. module: crm_configuration #: view:crm.case:0 @@ -1160,7 +1160,7 @@ msgstr "Mode de paiement" #. module: crm_configuration #: view:crm.case:0 msgid "Stage: " -msgstr "Étape :" +msgstr "Stage: " #. module: crm_configuration #: model:process.node,note:crm_configuration.process_node_meeting0 @@ -1214,7 +1214,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Direction" -msgstr "Direction" +msgstr "Orientation" #. module: crm_configuration #: view:crm.menu.config_wizard:0 @@ -1224,22 +1224,22 @@ msgstr "Le module CRM d'Open ERP permet de gérer tout type de relation. Mais, a #. module: crm_configuration #: view:crm.case:0 msgid "Job Info" -msgstr "Information sur l'offre d'emploi" +msgstr "Information sur l'Emploi" #. module: crm_configuration #: view:crm.case:0 msgid "Cancel Meeting" -msgstr "Annuler un rendez-vous" +msgstr "Annuler le Rendez-vous" #. module: crm_configuration #: view:crm.case:0 msgid "Resolution history" -msgstr "Historique de résolution" +msgstr "Historique de la Résolution" #. module: crm_configuration #: view:crm.case:0 msgid "Candidate Name2" -msgstr "Nom 2 du candidat" +msgstr "Nom2 du candidat" #. module: crm_configuration #: view:crm.case:0 @@ -1250,7 +1250,7 @@ msgstr "Non conclus" #. module: crm_configuration #: view:crm.case:0 msgid "Jobs - Recruitment Form" -msgstr "Formulaire de recrutement - offre d'emploi" +msgstr "Formulaire Emplois - Recrutement" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_claim1 @@ -1289,7 +1289,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Resolution: " -msgstr "Résolution :" +msgstr "Résolution: " #. module: crm_configuration #: help:crm.menu.config_wizard,fund:0 @@ -1305,7 +1305,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Reset to Unconfirmed" -msgstr "Remettre en non confirmé" +msgstr "Réinitialiser à non-confirmer" #. module: crm_configuration #: field:crm.case,note:0 @@ -1366,7 +1366,7 @@ msgstr "Appels téléphoniques" #. module: crm_configuration #: view:crm.case:0 msgid "Send Prospect & Historize" -msgstr "Envoyer au prospect et l'ajouter à l'historique" +msgstr "Envoyer au prospect et ajouter à l'historique" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_all3 @@ -1523,12 +1523,12 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Meeting For Leads Generation" -msgstr "Rendez vous pour la génération de l'affaire" +msgstr "Rendez-vous pour affaires" #. module: crm_configuration #: wizard_view:crm.case.partner_create,init:0 msgid "Are you sure you want to create a partner based on this lead ?" -msgstr "Êtes vous sur de vouloir créer un partenaire basé sur cette affaire ?" +msgstr "Êtes vous sure de vouloir créer un partenaire sur la base de cette affaire" #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage_job6 @@ -1548,7 +1548,7 @@ msgstr "Disponibilité (semaines)" #. module: crm_configuration #: view:crm.case:0 msgid "Opportunities Tree" -msgstr "Liste des opportunités" +msgstr "Arbre des Opportunités" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_helpdesk_act_my1 @@ -1652,7 +1652,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Funds Form" -msgstr "Formulaire des levés de fond" +msgstr "Recherche de fonds" #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage_lead3 @@ -1670,7 +1670,7 @@ msgstr "" #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Type" -msgstr "Cas par Section et Type" +msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale @@ -1702,7 +1702,7 @@ msgstr "Pertinence" #. module: crm_configuration #: view:crm.case:0 msgid "Bug Tracker Form" -msgstr "Formulaire de suivi des bogues" +msgstr "Formulaire de Rapport de Bug" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_my2 @@ -1765,7 +1765,7 @@ msgstr "Email" #. module: crm_configuration #: view:crm.case:0 msgid "Prospect Email" -msgstr "Prospection par courriel" +msgstr "Prospection par couriel" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_stage @@ -1811,7 +1811,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Lead Subject" -msgstr "Sujet de l'affaire" +msgstr "Sujet du marché" #. module: crm_configuration #: help:crm.menu.config_wizard,claims:0 @@ -1836,7 +1836,7 @@ msgstr "Email du candidat" #. module: crm_configuration #: view:crm.case:0 msgid "Sales Stage: " -msgstr "Étape de ventes :" +msgstr "Etape de vente : " #. module: crm_configuration #: view:crm.case:0 @@ -1862,7 +1862,7 @@ msgstr "Historique de la communication" #. module: crm_configuration #: view:crm.case:0 msgid "Funds Tree" -msgstr "Liste des levées de fond" +msgstr "Arbre des Fonds" #. module: crm_configuration #: selection:report.crm.case.section.categ.categ2,state:0 @@ -1957,7 +1957,7 @@ msgstr "" #. module: crm_configuration #: wizard_view:crm.case.partner_create,init:0 msgid "You may have to verify that this partner does not exist already." -msgstr "Vous devez vérifier que ce partenaire n'existe pas déjà" +msgstr "Vous devez vérifier que ce partenaire n'existe pas" #. module: crm_configuration #: view:crm.case:0 @@ -1983,7 +1983,7 @@ msgstr "Utilisateur" #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month #: view:report.crm.case.section.categ.categ2:0 msgid "Cases by Section, Category and Type" -msgstr "Cas par Section, Catégorie et Type" +msgstr "" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 @@ -2053,7 +2053,7 @@ msgstr "Etape des cas" #. module: crm_configuration #: view:crm.case:0 msgid "Estimates" -msgstr "Estimation" +msgstr "Estimer" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_all1 @@ -2106,7 +2106,7 @@ msgstr "Description" #. module: crm_configuration #: view:crm.case:0 msgid "Internal Notes" -msgstr "Notes internes" +msgstr "Notes Internes" #. module: crm_configuration #: model:crm.case.section,name:crm_configuration.section_support0 @@ -2116,7 +2116,7 @@ msgstr "" #. module: crm_configuration #: wizard_view:crm.case.meeting,init:0 msgid "Planify Meeting" -msgstr "Planifier un rendez-vous" +msgstr "Rendez vous planifié" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_meet_create_partner @@ -2131,7 +2131,7 @@ msgstr "Convertir en opportunité" #. module: crm_configuration #: view:crm.case:0 msgid "Funds by Categories" -msgstr "Levée de fond par catégories" +msgstr "Fonds par Catégorie" #. module: crm_configuration #: model:crm.case.stage,name:crm_configuration.stage7 @@ -2153,10 +2153,10 @@ msgstr "crm.menu.config_wizard" #. module: crm_configuration #: field:crm.case.stage,sequence:0 msgid "Sequence" -msgstr "Séquence" +msgstr "" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 msgid "Newsletter" -msgstr "Lettre d'information" +msgstr "" diff --git a/addons/crm_configuration/i18n/hr_HR.po b/addons/crm_configuration/i18n/hr_HR.po index bf42d976690..67bdc6222c8 100644 --- a/addons/crm_configuration/i18n/hr_HR.po +++ b/addons/crm_configuration/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/hu_HU.po b/addons/crm_configuration/i18n/hu_HU.po index fecec2e0d59..0177d82c885 100644 --- a/addons/crm_configuration/i18n/hu_HU.po +++ b/addons/crm_configuration/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/id_ID.po b/addons/crm_configuration/i18n/id_ID.po index a3bbb6d8d5f..bfccd1f305e 100644 --- a/addons/crm_configuration/i18n/id_ID.po +++ b/addons/crm_configuration/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/it_IT.po b/addons/crm_configuration/i18n/it_IT.po index be93304815d..2dbd0d17bf1 100644 --- a/addons/crm_configuration/i18n/it_IT.po +++ b/addons/crm_configuration/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/lt_LT.po b/addons/crm_configuration/i18n/lt_LT.po index c0c6b991319..bde4c96ccec 100644 --- a/addons/crm_configuration/i18n/lt_LT.po +++ b/addons/crm_configuration/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 msgid "Cases by Opportunities, Category and Type" -msgstr "" +msgstr "Faktai pagal Galimybes, Kategoriją ir Tipus" #. module: crm_configuration #: view:crm.case:0 @@ -620,7 +620,7 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage msgid "Cases by Opportunities, Category and Stage" -msgstr "" +msgstr "Faktai pagal Galimybes, Kategoriją ir Etapą" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead4 @@ -1629,7 +1629,7 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ msgid "Cases by Leads and Type" -msgstr "" +msgstr "Faktai pagal Iniciatyvas ir Tipus" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my3 @@ -1670,7 +1670,7 @@ msgstr "" #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Type" -msgstr "" +msgstr "Faktai pagal Sekciją ir Tipą" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale @@ -1725,7 +1725,7 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ msgid "Cases by Opportunities and Type" -msgstr "" +msgstr "Faktai pagal Galimybes ir Tipą" #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 @@ -1983,7 +1983,7 @@ msgstr "" #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month #: view:report.crm.case.section.categ.categ2:0 msgid "Cases by Section, Category and Type" -msgstr "" +msgstr "Faktai pagal Sekciją, Kategoriją ir Tipą" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 @@ -2153,7 +2153,7 @@ msgstr "" #. module: crm_configuration #: field:crm.case.stage,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Seka" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 diff --git a/addons/crm_configuration/i18n/nl_BE.po b/addons/crm_configuration/i18n/nl_BE.po index 9b956a20086..60b5cf40fc8 100644 --- a/addons/crm_configuration/i18n/nl_BE.po +++ b/addons/crm_configuration/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/nl_NL.po b/addons/crm_configuration/i18n/nl_NL.po index 5ab430217a8..9ab0b27b9d6 100644 --- a/addons/crm_configuration/i18n/nl_NL.po +++ b/addons/crm_configuration/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/pl_PL.po b/addons/crm_configuration/i18n/pl_PL.po index 63ad70f6a7c..f6446a545e7 100644 --- a/addons/crm_configuration/i18n/pl_PL.po +++ b/addons/crm_configuration/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:03+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:03+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -1670,7 +1670,7 @@ msgstr "" #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Type" -msgstr "" +msgstr "Przypadki wg sekcji i typu" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale @@ -1983,7 +1983,7 @@ msgstr "" #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month #: view:report.crm.case.section.categ.categ2:0 msgid "Cases by Section, Category and Type" -msgstr "" +msgstr "Przypadki wg sekcji, kategorii i typu" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 @@ -2153,7 +2153,7 @@ msgstr "" #. module: crm_configuration #: field:crm.case.stage,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Numeracja" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 diff --git a/addons/crm_configuration/i18n/pt_BR.po b/addons/crm_configuration/i18n/pt_BR.po index 322582de466..860a3b8ca3f 100644 --- a/addons/crm_configuration/i18n/pt_BR.po +++ b/addons/crm_configuration/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/pt_PT.po b/addons/crm_configuration/i18n/pt_PT.po index fd7a50d4dcd..70d823bee1b 100644 --- a/addons/crm_configuration/i18n/pt_PT.po +++ b/addons/crm_configuration/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -1670,7 +1670,7 @@ msgstr "" #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month #: view:report.crm.case.section.categ2:0 msgid "Cases by Section and Type" -msgstr "" +msgstr "Casos por secção e tipo" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_aftersale @@ -1725,7 +1725,7 @@ msgstr "" #. module: crm_configuration #: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ msgid "Cases by Opportunities and Type" -msgstr "" +msgstr "Processos por Oportunidades e tipos" #. module: crm_configuration #: field:report.crm.case.section.categ.categ2,section_id:0 @@ -1983,7 +1983,7 @@ msgstr "Utilizador" #: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month #: view:report.crm.case.section.categ.categ2:0 msgid "Cases by Section, Category and Type" -msgstr "" +msgstr "Casos por Secções, Categoria e Tipo" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_job2 @@ -2153,7 +2153,7 @@ msgstr "" #. module: crm_configuration #: field:crm.case.stage,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sequência" #. module: crm_configuration #: model:crm.case.category2,name:crm_configuration.category_lead8 diff --git a/addons/crm_configuration/i18n/ro_RO.po b/addons/crm_configuration/i18n/ro_RO.po index e33bb0d3718..ea7c8733b4d 100644 --- a/addons/crm_configuration/i18n/ro_RO.po +++ b/addons/crm_configuration/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/ru_RU.po b/addons/crm_configuration/i18n/ru_RU.po index ec14b5ae8c6..46d4fb8f075 100644 --- a/addons/crm_configuration/i18n/ru_RU.po +++ b/addons/crm_configuration/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/sl_SL.po b/addons/crm_configuration/i18n/sl_SL.po index a236715cf1d..e93eeafb081 100644 --- a/addons/crm_configuration/i18n/sl_SL.po +++ b/addons/crm_configuration/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/cs_CS.po b/addons/crm_configuration/i18n/sq_AL.po similarity index 99% rename from addons/crm_configuration/i18n/cs_CS.po rename to addons/crm_configuration/i18n/sq_AL.po index d7f988e733d..7436e131cb6 100644 --- a/addons/crm_configuration/i18n/cs_CS.po +++ b/addons/crm_configuration/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -860,7 +860,7 @@ msgstr "" #: wizard_button:crm.case.partner_create,init,end:0 #: view:crm.menu.config_wizard:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: crm_configuration #: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing1 diff --git a/addons/crm_configuration/i18n/sv_SE.po b/addons/crm_configuration/i18n/sv_SE.po index 1510bdd4bbe..3a93a583fc6 100644 --- a/addons/crm_configuration/i18n/sv_SE.po +++ b/addons/crm_configuration/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/tr_TR.po b/addons/crm_configuration/i18n/tr_TR.po index 2ba81012bb3..5586387ccaf 100644 --- a/addons/crm_configuration/i18n/tr_TR.po +++ b/addons/crm_configuration/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/uk_UK.po b/addons/crm_configuration/i18n/uk_UA.po similarity index 99% rename from addons/crm_configuration/i18n/uk_UK.po rename to addons/crm_configuration/i18n/uk_UA.po index 2d8401f1501..fc2240801e9 100644 --- a/addons/crm_configuration/i18n/uk_UK.po +++ b/addons/crm_configuration/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/sv_SV.po b/addons/crm_configuration/i18n/vi_VN.po similarity index 99% rename from addons/crm_configuration/i18n/sv_SV.po rename to addons/crm_configuration/i18n/vi_VN.po index aeaabe817ae..4f1c408978e 100644 --- a/addons/crm_configuration/i18n/sv_SV.po +++ b/addons/crm_configuration/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -1119,7 +1119,7 @@ msgstr "" #. module: crm_configuration #: view:crm.case:0 msgid "Reset to Draft" -msgstr "Återställ till utdrag" +msgstr "" #. module: crm_configuration #: view:crm.case:0 @@ -1468,7 +1468,7 @@ msgstr "" #. module: crm_configuration #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: crm_configuration #: field:crm.menu.config_wizard,helpdesk:0 diff --git a/addons/crm_configuration/i18n/zh_CN.po b/addons/crm_configuration/i18n/zh_CN.po index 462aa0b43b5..355e2fa235b 100644 --- a/addons/crm_configuration/i18n/zh_CN.po +++ b/addons/crm_configuration/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_configuration/i18n/zh_TW.po b/addons/crm_configuration/i18n/zh_TW.po index 801a48b6ea4..4fe275a423b 100644 --- a/addons/crm_configuration/i18n/zh_TW.po +++ b/addons/crm_configuration/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/ar_AR.po b/addons/crm_profiling/i18n/ar_AR.po index 670e936faf7..6d5692504d2 100644 --- a/addons/crm_profiling/i18n/ar_AR.po +++ b/addons/crm_profiling/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/bg_BG.po b/addons/crm_profiling/i18n/bg_BG.po index 61177e85e22..03a03ba9ef5 100644 --- a/addons/crm_profiling/i18n/bg_BG.po +++ b/addons/crm_profiling/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/bs_BS.po b/addons/crm_profiling/i18n/bs_BS.po index 5c6d06a9f7c..eded5f55513 100644 --- a/addons/crm_profiling/i18n/bs_BS.po +++ b/addons/crm_profiling/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/ca_ES.po b/addons/crm_profiling/i18n/ca_ES.po index fb1ff0f97c3..3b403cc488e 100644 --- a/addons/crm_profiling/i18n/ca_ES.po +++ b/addons/crm_profiling/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/crm_profiling.pot b/addons/crm_profiling/i18n/crm_profiling.pot index cb9b94fb041..4c01c0e6ae9 100644 --- a/addons/crm_profiling/i18n/crm_profiling.pot +++ b/addons/crm_profiling/i18n/crm_profiling.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/cs_CZ.po b/addons/crm_profiling/i18n/cs_CZ.po index 70dd9f158f7..8ac54d2d008 100644 --- a/addons/crm_profiling/i18n/cs_CZ.po +++ b/addons/crm_profiling/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/de_DE.po b/addons/crm_profiling/i18n/de_DE.po index 4486eb36e6b..b03893c6b33 100644 --- a/addons/crm_profiling/i18n/de_DE.po +++ b/addons/crm_profiling/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/es_AR.po b/addons/crm_profiling/i18n/es_AR.po index 9a433f3f0ff..2a518fa327e 100644 --- a/addons/crm_profiling/i18n/es_AR.po +++ b/addons/crm_profiling/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/es_ES.po b/addons/crm_profiling/i18n/es_ES.po index 0a35c6a5848..65b75721367 100644 --- a/addons/crm_profiling/i18n/es_ES.po +++ b/addons/crm_profiling/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/et_EE.po b/addons/crm_profiling/i18n/et_EE.po index fad0f8909a4..84746236565 100644 --- a/addons/crm_profiling/i18n/et_EE.po +++ b/addons/crm_profiling/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/fi_FI.po b/addons/crm_profiling/i18n/fi_FI.po index ea899d4c2b0..0dadded9e34 100644 --- a/addons/crm_profiling/i18n/fi_FI.po +++ b/addons/crm_profiling/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/fr_FR.po b/addons/crm_profiling/i18n/fr_FR.po index 36dc145b1e6..566e53ece9c 100644 --- a/addons/crm_profiling/i18n/fr_FR.po +++ b/addons/crm_profiling/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgstr "" #. module: crm_profiling #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: crm_profiling #: field:crm_profiling.answer,name:0 diff --git a/addons/crm_profiling/i18n/hr_HR.po b/addons/crm_profiling/i18n/hr_HR.po index d1321ba3441..5194edc035c 100644 --- a/addons/crm_profiling/i18n/hr_HR.po +++ b/addons/crm_profiling/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/hu_HU.po b/addons/crm_profiling/i18n/hu_HU.po index 4552a2adc4a..e54cba98260 100644 --- a/addons/crm_profiling/i18n/hu_HU.po +++ b/addons/crm_profiling/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/id_ID.po b/addons/crm_profiling/i18n/id_ID.po index 49747a432ef..011a1bd94d0 100644 --- a/addons/crm_profiling/i18n/id_ID.po +++ b/addons/crm_profiling/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/it_IT.po b/addons/crm_profiling/i18n/it_IT.po index 1b231d889f5..9ae01f446c3 100644 --- a/addons/crm_profiling/i18n/it_IT.po +++ b/addons/crm_profiling/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/lt_LT.po b/addons/crm_profiling/i18n/lt_LT.po index 26a498ad44c..4453ac6b01b 100644 --- a/addons/crm_profiling/i18n/lt_LT.po +++ b/addons/crm_profiling/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/nl_BE.po b/addons/crm_profiling/i18n/nl_BE.po index 2a32dbd36c2..a5b01b92b08 100644 --- a/addons/crm_profiling/i18n/nl_BE.po +++ b/addons/crm_profiling/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/nl_NL.po b/addons/crm_profiling/i18n/nl_NL.po index a1e2ef7e827..bd30f307da3 100644 --- a/addons/crm_profiling/i18n/nl_NL.po +++ b/addons/crm_profiling/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/pl_PL.po b/addons/crm_profiling/i18n/pl_PL.po index 89207eafcb3..1fe6e09089f 100644 --- a/addons/crm_profiling/i18n/pl_PL.po +++ b/addons/crm_profiling/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/pt_BR.po b/addons/crm_profiling/i18n/pt_BR.po index 091a1a9b572..f9bfc8bbf23 100644 --- a/addons/crm_profiling/i18n/pt_BR.po +++ b/addons/crm_profiling/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/pt_PT.po b/addons/crm_profiling/i18n/pt_PT.po index 8febe8c78ee..f9660ee03d2 100644 --- a/addons/crm_profiling/i18n/pt_PT.po +++ b/addons/crm_profiling/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/ro_RO.po b/addons/crm_profiling/i18n/ro_RO.po index 577d33269e3..9082ae3249e 100644 --- a/addons/crm_profiling/i18n/ro_RO.po +++ b/addons/crm_profiling/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/ru_RU.po b/addons/crm_profiling/i18n/ru_RU.po index 4a0a2388622..a4f98ec3dc4 100644 --- a/addons/crm_profiling/i18n/ru_RU.po +++ b/addons/crm_profiling/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/sl_SL.po b/addons/crm_profiling/i18n/sl_SL.po index 19505abcc66..20e734143c3 100644 --- a/addons/crm_profiling/i18n/sl_SL.po +++ b/addons/crm_profiling/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/cs_CS.po b/addons/crm_profiling/i18n/sq_AL.po similarity index 96% rename from addons/crm_profiling/i18n/cs_CS.po rename to addons/crm_profiling/i18n/sq_AL.po index 0da6d9a26d1..17be7f74b73 100644 --- a/addons/crm_profiling/i18n/cs_CS.po +++ b/addons/crm_profiling/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/sv_SE.po b/addons/crm_profiling/i18n/sv_SE.po index 0d8b7f1edab..b424538c440 100644 --- a/addons/crm_profiling/i18n/sv_SE.po +++ b/addons/crm_profiling/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/tr_TR.po b/addons/crm_profiling/i18n/tr_TR.po index 287be65b576..abdd42e8154 100644 --- a/addons/crm_profiling/i18n/tr_TR.po +++ b/addons/crm_profiling/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/uk_UK.po b/addons/crm_profiling/i18n/uk_UA.po similarity index 96% rename from addons/crm_profiling/i18n/uk_UK.po rename to addons/crm_profiling/i18n/uk_UA.po index 0f74a4289af..9b4bd6d766a 100644 --- a/addons/crm_profiling/i18n/uk_UK.po +++ b/addons/crm_profiling/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/sv_SV.po b/addons/crm_profiling/i18n/vi_VN.po similarity index 94% rename from addons/crm_profiling/i18n/sv_SV.po rename to addons/crm_profiling/i18n/vi_VN.po index 9fc6b03d70f..3c54b404b66 100644 --- a/addons/crm_profiling/i18n/sv_SV.po +++ b/addons/crm_profiling/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: crm_profiling #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: crm_profiling #: field:crm_profiling.answer,question_id:0 diff --git a/addons/crm_profiling/i18n/zh_CN.po b/addons/crm_profiling/i18n/zh_CN.po index 1e4aca40ce6..f29b75c2e01 100644 --- a/addons/crm_profiling/i18n/zh_CN.po +++ b/addons/crm_profiling/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_profiling/i18n/zh_TW.po b/addons/crm_profiling/i18n/zh_TW.po index b21f40d4cee..9c9209276f4 100644 --- a/addons/crm_profiling/i18n/zh_TW.po +++ b/addons/crm_profiling/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/ar_AR.po b/addons/crm_vertical/i18n/ar_AR.po index 8d76cdab293..ae4be8fc88f 100644 --- a/addons/crm_vertical/i18n/ar_AR.po +++ b/addons/crm_vertical/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/bg_BG.po b/addons/crm_vertical/i18n/bg_BG.po index ee2a9c4e106..7ec1c449e8e 100644 --- a/addons/crm_vertical/i18n/bg_BG.po +++ b/addons/crm_vertical/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/bs_BS.po b/addons/crm_vertical/i18n/bs_BS.po index 0621b442d3e..8e9349ba599 100644 --- a/addons/crm_vertical/i18n/bs_BS.po +++ b/addons/crm_vertical/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/ca_ES.po b/addons/crm_vertical/i18n/ca_ES.po index 1687cec909c..163d270e229 100644 --- a/addons/crm_vertical/i18n/ca_ES.po +++ b/addons/crm_vertical/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/crm_vertical.pot b/addons/crm_vertical/i18n/crm_vertical.pot index a98454c174d..31c1d00b6ec 100644 --- a/addons/crm_vertical/i18n/crm_vertical.pot +++ b/addons/crm_vertical/i18n/crm_vertical.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/cs_CZ.po b/addons/crm_vertical/i18n/cs_CZ.po index d44425be3f0..dfe9e52d66e 100644 --- a/addons/crm_vertical/i18n/cs_CZ.po +++ b/addons/crm_vertical/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/de_DE.po b/addons/crm_vertical/i18n/de_DE.po index 82b7df5bda7..c7eca0678d4 100644 --- a/addons/crm_vertical/i18n/de_DE.po +++ b/addons/crm_vertical/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/es_AR.po b/addons/crm_vertical/i18n/es_AR.po index 3990d6df07c..fe5b817db74 100644 --- a/addons/crm_vertical/i18n/es_AR.po +++ b/addons/crm_vertical/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/es_ES.po b/addons/crm_vertical/i18n/es_ES.po index 4f12968d35e..d75e7892f26 100644 --- a/addons/crm_vertical/i18n/es_ES.po +++ b/addons/crm_vertical/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/et_EE.po b/addons/crm_vertical/i18n/et_EE.po index 4b4d21b430d..7cc688f2284 100644 --- a/addons/crm_vertical/i18n/et_EE.po +++ b/addons/crm_vertical/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/fi_FI.po b/addons/crm_vertical/i18n/fi_FI.po index 37a30430a09..6fd0bfb765e 100644 --- a/addons/crm_vertical/i18n/fi_FI.po +++ b/addons/crm_vertical/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/fr_FR.po b/addons/crm_vertical/i18n/fr_FR.po index 4d701dcd9ca..b58de99c3c3 100644 --- a/addons/crm_vertical/i18n/fr_FR.po +++ b/addons/crm_vertical/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,5 +18,5 @@ msgstr "" #. module: crm_vertical #: model:ir.module.module,description:crm_vertical.module_meta_information msgid "Simplification of the interface for CRM." -msgstr "Simplification de l'interface CRM" +msgstr "" diff --git a/addons/crm_vertical/i18n/hr_HR.po b/addons/crm_vertical/i18n/hr_HR.po index d493869a0fb..69f193f1d9a 100644 --- a/addons/crm_vertical/i18n/hr_HR.po +++ b/addons/crm_vertical/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/hu_HU.po b/addons/crm_vertical/i18n/hu_HU.po index fd87749f98f..78c53a40c91 100644 --- a/addons/crm_vertical/i18n/hu_HU.po +++ b/addons/crm_vertical/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/id_ID.po b/addons/crm_vertical/i18n/id_ID.po index 1ce1860180f..854b97ee783 100644 --- a/addons/crm_vertical/i18n/id_ID.po +++ b/addons/crm_vertical/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/it_IT.po b/addons/crm_vertical/i18n/it_IT.po index b5627748131..4330964fb48 100644 --- a/addons/crm_vertical/i18n/it_IT.po +++ b/addons/crm_vertical/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/lt_LT.po b/addons/crm_vertical/i18n/lt_LT.po index d428a34aaf9..d5eb2ba5bf0 100644 --- a/addons/crm_vertical/i18n/lt_LT.po +++ b/addons/crm_vertical/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/nl_BE.po b/addons/crm_vertical/i18n/nl_BE.po index 19d4e2b8a11..d8d9e99e045 100644 --- a/addons/crm_vertical/i18n/nl_BE.po +++ b/addons/crm_vertical/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/nl_NL.po b/addons/crm_vertical/i18n/nl_NL.po index 69c14ae4674..61ded9ff31e 100644 --- a/addons/crm_vertical/i18n/nl_NL.po +++ b/addons/crm_vertical/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/pl_PL.po b/addons/crm_vertical/i18n/pl_PL.po index 971e1013a52..e8b3f4b11aa 100644 --- a/addons/crm_vertical/i18n/pl_PL.po +++ b/addons/crm_vertical/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/pt_BR.po b/addons/crm_vertical/i18n/pt_BR.po index a3e6eda3ab0..df87862ef37 100644 --- a/addons/crm_vertical/i18n/pt_BR.po +++ b/addons/crm_vertical/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/pt_PT.po b/addons/crm_vertical/i18n/pt_PT.po index 58be198d3d9..97a8c7b438a 100644 --- a/addons/crm_vertical/i18n/pt_PT.po +++ b/addons/crm_vertical/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/ro_RO.po b/addons/crm_vertical/i18n/ro_RO.po index 1a5944e5d12..645037425c4 100644 --- a/addons/crm_vertical/i18n/ro_RO.po +++ b/addons/crm_vertical/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/ru_RU.po b/addons/crm_vertical/i18n/ru_RU.po index b6e65faa6f7..d7d0172890c 100644 --- a/addons/crm_vertical/i18n/ru_RU.po +++ b/addons/crm_vertical/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/sl_SL.po b/addons/crm_vertical/i18n/sl_SL.po index 0e1b6d97dff..f4939a10190 100644 --- a/addons/crm_vertical/i18n/sl_SL.po +++ b/addons/crm_vertical/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/sv_SV.po b/addons/crm_vertical/i18n/sq_AL.po similarity index 78% rename from addons/crm_vertical/i18n/sv_SV.po rename to addons/crm_vertical/i18n/sq_AL.po index f20b8b40a17..93228a55bac 100644 --- a/addons/crm_vertical/i18n/sv_SV.po +++ b/addons/crm_vertical/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/sv_SE.po b/addons/crm_vertical/i18n/sv_SE.po index dcd5c272b5b..393a0d26a6c 100644 --- a/addons/crm_vertical/i18n/sv_SE.po +++ b/addons/crm_vertical/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/tr_TR.po b/addons/crm_vertical/i18n/tr_TR.po index 0ca0851d4ec..563ffb8ac3e 100644 --- a/addons/crm_vertical/i18n/tr_TR.po +++ b/addons/crm_vertical/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/uk_UK.po b/addons/crm_vertical/i18n/uk_UA.po similarity index 78% rename from addons/crm_vertical/i18n/uk_UK.po rename to addons/crm_vertical/i18n/uk_UA.po index b74579b585a..f84284286e3 100644 --- a/addons/crm_vertical/i18n/uk_UK.po +++ b/addons/crm_vertical/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/cs_CS.po b/addons/crm_vertical/i18n/vi_VN.po similarity index 78% rename from addons/crm_vertical/i18n/cs_CS.po rename to addons/crm_vertical/i18n/vi_VN.po index d9ccf701b33..67fbe47a5be 100644 --- a/addons/crm_vertical/i18n/cs_CS.po +++ b/addons/crm_vertical/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/zh_CN.po b/addons/crm_vertical/i18n/zh_CN.po index 14b9fdf48fb..4a65885a24d 100644 --- a/addons/crm_vertical/i18n/zh_CN.po +++ b/addons/crm_vertical/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm_vertical/i18n/zh_TW.po b/addons/crm_vertical/i18n/zh_TW.po index 9ddb7713202..0c1017be0cf 100644 --- a/addons/crm_vertical/i18n/zh_TW.po +++ b/addons/crm_vertical/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/ar_AR.po b/addons/delivery/i18n/ar_AR.po index a9ebffdb7e2..5f7b201b3a0 100644 --- a/addons/delivery/i18n/ar_AR.po +++ b/addons/delivery/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/bg_BG.po b/addons/delivery/i18n/bg_BG.po index a19d6346076..3daf9c98cef 100644 --- a/addons/delivery/i18n/bg_BG.po +++ b/addons/delivery/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/bs_BS.po b/addons/delivery/i18n/bs_BS.po index 3946d456b37..033f67617c6 100644 --- a/addons/delivery/i18n/bs_BS.po +++ b/addons/delivery/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/ca_ES.po b/addons/delivery/i18n/ca_ES.po index b4ab4ec3853..58d0aaff7bd 100644 --- a/addons/delivery/i18n/ca_ES.po +++ b/addons/delivery/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/cs_CZ.po b/addons/delivery/i18n/cs_CZ.po index d21b911b152..8f61169a378 100644 --- a/addons/delivery/i18n/cs_CZ.po +++ b/addons/delivery/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/de_DE.po b/addons/delivery/i18n/de_DE.po index bd3a1acd85f..e8cb918b521 100644 --- a/addons/delivery/i18n/de_DE.po +++ b/addons/delivery/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+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 901e02ff6ae..0687eadbb6f 100644 --- a/addons/delivery/i18n/delivery.pot +++ b/addons/delivery/i18n/delivery.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/es_AR.po b/addons/delivery/i18n/es_AR.po index 44d998ca03a..c9bd33f4a6c 100644 --- a/addons/delivery/i18n/es_AR.po +++ b/addons/delivery/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/es_ES.po b/addons/delivery/i18n/es_ES.po index 3a1e92a62d7..9298fadecac 100644 --- a/addons/delivery/i18n/es_ES.po +++ b/addons/delivery/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/et_EE.po b/addons/delivery/i18n/et_EE.po index 683767e6327..6f62507ad51 100644 --- a/addons/delivery/i18n/et_EE.po +++ b/addons/delivery/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/fi_FI.po b/addons/delivery/i18n/fi_FI.po index 0c9adbf0875..e82c0f147c8 100644 --- a/addons/delivery/i18n/fi_FI.po +++ b/addons/delivery/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/fr_FR.po b/addons/delivery/i18n/fr_FR.po index 448cabf3e1a..1af954716a6 100644 --- a/addons/delivery/i18n/fr_FR.po +++ b/addons/delivery/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "Destination" #. module: delivery #: model:product.template,name:delivery.delivery_product_product_template msgid "Delivery by Poste" -msgstr "Livraison par la Poste" +msgstr "Livraison par la poste" #. module: delivery #: constraint:ir.ui.view:0 @@ -58,7 +58,7 @@ msgstr "États" #. module: delivery #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: delivery #: help:res.partner,property_delivery_carrier:0 @@ -89,13 +89,13 @@ msgstr "Ligne grille" #: model:ir.actions.act_window,name:delivery.action_delivery_grid_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_grid_form msgid "Delivery Pricelist" -msgstr "Tarif de livraison" +msgstr "Liste de Prix Livraison" #. module: delivery #: model:ir.actions.act_window,name:delivery.action_picking_tree5 #: model:ir.ui.menu,name:delivery.menu_action_picking_tree5 msgid "Generate Draft Invoices On Receptions" -msgstr "Générer les factures brouillon sur les réceptions" +msgstr "Créer les factures brouillon sur les réceptions" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid_line @@ -110,7 +110,7 @@ msgstr "Livraison" #. module: delivery #: view:delivery.grid.line:0 msgid "Grid Lines" -msgstr "Lignes de la grille" +msgstr "Lignes grille" #. module: delivery #: field:delivery.grid.line,grid_id:0 @@ -131,7 +131,7 @@ msgstr "Actif" #. module: delivery #: view:delivery.grid:0 msgid "Grid definition" -msgstr "Définition de la grille" +msgstr "Grilles de transport" #. module: delivery #: selection:delivery.grid.line,type:0 @@ -147,7 +147,7 @@ msgstr "=" #. module: delivery #: field:delivery.carrier,product_id:0 msgid "Delivery Product" -msgstr "Produit Livraison" +msgstr "Produit de livraison" #. module: delivery #: view:delivery.grid.line:0 @@ -172,7 +172,7 @@ msgstr "Nom" #. module: delivery #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "Erreur: l'unité de vente doit appartenir à une catégorie différente que l'unité de mesure" +msgstr "Erreur : l'Unité Secondaire doit appartenir à une autre catégorie que l'Unité de Mesure." #. module: delivery #: field:delivery.grid,country_ids:0 @@ -182,7 +182,7 @@ msgstr "Pays" #. module: delivery #: constraint:product.template:0 msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "Erreur: l'unité de mesure par défaut et l'unité de mesure d'achat doivent faire partie de la même catégorie" +msgstr "Erreur: l'UdM par défaut et l'UdM d'achat doivent appartenir à la même catégorie." #. module: delivery #: view:sale.order:0 @@ -228,7 +228,7 @@ msgstr "Valeur maximum" #. module: delivery #: wizard_button:delivery.sale.order,init,delivery:0 msgid "Add Delivery Costs" -msgstr "Ajouter des frais de livraisons" +msgstr "Ajouter les frais de port" #. module: delivery #: wizard_field:delivery.sale.order,init,carrier_id:0 @@ -273,12 +273,12 @@ msgstr "Séquence" #. module: delivery #: field:delivery.carrier,partner_id:0 msgid "Carrier Partner" -msgstr "Transporteur pour la Livraison" +msgstr "Partenaire pour la Livraison" #. module: delivery #: model:ir.module.module,description:delivery.module_meta_information msgid "Allows you to add delivery methods in sales orders and packing. You can define your own carrier and delivery grids for prices. When creating invoices from picking, Open ERP is able to add and compute the shipping line." -msgstr "Vous autorise à ajouter une méthode de livraison dans les commandes de ventes et les colisages. Vous pouvez définir votre transporteur et les grilles de livraisons pour les prix. Lorsqu'une facture est crée depuis le colisage. OpenERP est capable d'ajouter et de calculer une ligne de livraison." +msgstr "Permet d'ajouter une méthode de livraison aux commandes de ventes et aux colisages. Vous pouvez définir votre transporteur et les tarifs de livraisons pour les prix. Lorsqu'une facture est crée depuis le colisage, OpenERP est capable d'ajouter une ligne de livraison et d'en calculer le prix." #. module: delivery #: field:delivery.grid,zip_to:0 @@ -299,7 +299,7 @@ msgstr "Remplissez ce champ si vous prévoyez de facturer le port en vous basant #. module: delivery #: model:ir.actions.wizard,name:delivery.wizard_deliver_line_add msgid "Delivery Costs" -msgstr "Coûts de livraison" +msgstr "Frais de port" #. module: delivery #: field:delivery.grid.line,list_price:0 @@ -314,7 +314,7 @@ msgstr "Erreur: code EAN invalide" #. module: delivery #: view:delivery.grid:0 msgid "Delivery grids" -msgstr "Grilles de livraison" +msgstr "Grilles de transport" #. module: delivery #: wizard_button:delivery.sale.order,init,end:0 diff --git a/addons/delivery/i18n/hr_HR.po b/addons/delivery/i18n/hr_HR.po index 9096a3d9306..fd6ba08826e 100644 --- a/addons/delivery/i18n/hr_HR.po +++ b/addons/delivery/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/hu_HU.po b/addons/delivery/i18n/hu_HU.po index 9314bfdaf57..f75b870e949 100644 --- a/addons/delivery/i18n/hu_HU.po +++ b/addons/delivery/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/id_ID.po b/addons/delivery/i18n/id_ID.po index 007c23e7fba..0086fdedf2b 100644 --- a/addons/delivery/i18n/id_ID.po +++ b/addons/delivery/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/it_IT.po b/addons/delivery/i18n/it_IT.po index a2964911a5b..ffe071f0958 100644 --- a/addons/delivery/i18n/it_IT.po +++ b/addons/delivery/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/lt_LT.po b/addons/delivery/i18n/lt_LT.po index 3dff1653d00..4cf5115dc4c 100644 --- a/addons/delivery/i18n/lt_LT.po +++ b/addons/delivery/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/nl_BE.po b/addons/delivery/i18n/nl_BE.po index 0b8f7116504..505a5396060 100644 --- a/addons/delivery/i18n/nl_BE.po +++ b/addons/delivery/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/nl_NL.po b/addons/delivery/i18n/nl_NL.po index 90b3a334dff..5084456e1b1 100644 --- a/addons/delivery/i18n/nl_NL.po +++ b/addons/delivery/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/pl_PL.po b/addons/delivery/i18n/pl_PL.po index 60409d6e648..981cc5c3245 100644 --- a/addons/delivery/i18n/pl_PL.po +++ b/addons/delivery/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/pt_BR.po b/addons/delivery/i18n/pt_BR.po index bbdd602219f..551995d5940 100644 --- a/addons/delivery/i18n/pt_BR.po +++ b/addons/delivery/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/pt_PT.po b/addons/delivery/i18n/pt_PT.po index 07ea9512947..81546dc0c1c 100644 --- a/addons/delivery/i18n/pt_PT.po +++ b/addons/delivery/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/ro_RO.po b/addons/delivery/i18n/ro_RO.po index b61bb6c50b6..0ee81b2ed82 100644 --- a/addons/delivery/i18n/ro_RO.po +++ b/addons/delivery/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/ru_RU.po b/addons/delivery/i18n/ru_RU.po index f32fffddfe6..73c0e708ec0 100644 --- a/addons/delivery/i18n/ru_RU.po +++ b/addons/delivery/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/sl_SL.po b/addons/delivery/i18n/sl_SL.po index 40157a41ded..3744cf65a15 100644 --- a/addons/delivery/i18n/sl_SL.po +++ b/addons/delivery/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/cs_CS.po b/addons/delivery/i18n/sq_AL.po similarity index 97% rename from addons/delivery/i18n/cs_CS.po rename to addons/delivery/i18n/sq_AL.po index 75c8acb6ad2..95089a41818 100644 --- a/addons/delivery/i18n/cs_CS.po +++ b/addons/delivery/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -236,7 +236,7 @@ msgstr "" #: model:ir.ui.menu,name:delivery.menu_action_delivery_carrier_form #: field:res.partner,property_delivery_carrier:0 msgid "Delivery Method" -msgstr "Způsob doručení" +msgstr "" #. module: delivery #: field:sale.order,id:0 @@ -319,7 +319,7 @@ msgstr "" #. module: delivery #: wizard_button:delivery.sale.order,init,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: delivery #: field:sale.order,carrier_id:0 diff --git a/addons/delivery/i18n/sv_SE.po b/addons/delivery/i18n/sv_SE.po index a8e42883263..0a75100dba6 100644 --- a/addons/delivery/i18n/sv_SE.po +++ b/addons/delivery/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/tr_TR.po b/addons/delivery/i18n/tr_TR.po index 747e3b14930..28a3cbadd2b 100644 --- a/addons/delivery/i18n/tr_TR.po +++ b/addons/delivery/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/uk_UK.po b/addons/delivery/i18n/uk_UA.po similarity index 98% rename from addons/delivery/i18n/uk_UK.po rename to addons/delivery/i18n/uk_UA.po index 522e5e4e51c..1a797942db6 100644 --- a/addons/delivery/i18n/uk_UK.po +++ b/addons/delivery/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/sv_SV.po b/addons/delivery/i18n/vi_VN.po similarity index 95% rename from addons/delivery/i18n/sv_SV.po rename to addons/delivery/i18n/vi_VN.po index a885ec810a7..b561673c781 100644 --- a/addons/delivery/i18n/sv_SV.po +++ b/addons/delivery/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: delivery #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: delivery #: selection:delivery.grid.line,operator:0 @@ -126,7 +126,7 @@ msgstr "" #: field:delivery.carrier,active:0 #: field:delivery.grid,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: delivery #: view:delivery.grid:0 @@ -167,7 +167,7 @@ msgstr "" #. module: delivery #: field:delivery.grid.line,name:0 msgid "Name" -msgstr "Namn" +msgstr "" #. module: delivery #: constraint:product.template:0 @@ -187,7 +187,7 @@ msgstr "" #. module: delivery #: view:sale.order:0 msgid "Notes" -msgstr "Anteckningar" +msgstr "" #. module: delivery #: field:delivery.grid.line,variable_factor:0 @@ -211,7 +211,7 @@ msgstr "" #: field:delivery.grid,carrier_id:0 #: field:stock.picking,carrier_id:0 msgid "Carrier" -msgstr "Bärare" +msgstr "" #. module: delivery #: selection:delivery.grid.line,type:0 @@ -268,7 +268,7 @@ msgstr "" #. module: delivery #: field:delivery.grid,sequence:0 msgid "Sequence" -msgstr "Sekvens" +msgstr "" #. module: delivery #: field:delivery.carrier,partner_id:0 @@ -331,7 +331,7 @@ msgstr "" #: selection:delivery.grid.line,type:0 #: selection:delivery.grid.line,variable_factor:0 msgid "Price" -msgstr "Pris" +msgstr "" #. module: delivery #: constraint:res.partner:0 diff --git a/addons/delivery/i18n/zh_CN.po b/addons/delivery/i18n/zh_CN.po index 4dafb4fd7d1..454368ed8fc 100644 --- a/addons/delivery/i18n/zh_CN.po +++ b/addons/delivery/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/zh_TW.po b/addons/delivery/i18n/zh_TW.po index 388d72e0839..029a91e67b6 100644 --- a/addons/delivery/i18n/zh_TW.po +++ b/addons/delivery/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/ar_AR.po b/addons/document/i18n/ar_AR.po index 4f23df44de2..def8ceff9b3 100644 --- a/addons/document/i18n/ar_AR.po +++ b/addons/document/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/bg_BG.po b/addons/document/i18n/bg_BG.po index c3b3a3db916..c8548b226ba 100644 --- a/addons/document/i18n/bg_BG.po +++ b/addons/document/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Бележки" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Невалиден XML за преглед на архитектурата" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Данни" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,32 +85,171 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" msgstr "" +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Данни" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Бележки" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Невалиден XML за преглед на архитектурата" + #. module: document #: model:ir.module.module,description:document.module_meta_information msgid "This is a complete document management system:\n" @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/bs_BS.po b/addons/document/i18n/bs_BS.po index 2a04e52b924..0288bf25e9b 100644 --- a/addons/document/i18n/bs_BS.po +++ b/addons/document/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Bilješke" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Neodgovarajući XML za arhitekturu prikaza!" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,32 +85,171 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" msgstr "" +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Bilješke" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Neodgovarajući XML za arhitekturu prikaza!" + #. module: document #: model:ir.module.module,description:document.module_meta_information msgid "This is a complete document management system:\n" @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/ca_ES.po b/addons/document/i18n/ca_ES.po index ca1e300aa30..11289bca2f7 100644 --- a/addons/document/i18n/ca_ES.po +++ b/addons/document/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "Seleccioneu aquí un objecte i OpenERP crearà un mapa de relacions per a cada un d'aquests objectes, utilitzant el domini donat, quan navegueu per FTP." - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "Tipus de contingut del directori" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "Aquest assistent configurarà automàticament el sistema de gestió de documents segons els mòduls instal·lats en el vostre sistema." - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "Fitxers" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "Contingut directori" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "Gestió de documents" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "Introduïu aquí l'adreça del servidor o IP. Deixa localhost si no sabeu que escriure." - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "Informació del fitxer" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "Contingut indexat" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Notes" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "Error! No podeu crear directoris recursius." - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "Títol registre" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "Sistema de fitxers" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "Sufix" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "Navega pels fitxers" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "Empresa" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "Directori document" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "Mida del fitxer" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "Tipus de contingut" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "Sistema gestió de documents." - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "Mètode magatzematge" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "Tipus" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "Adreça del servidor" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "Nom del fitxer desat" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "Enllaç" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "Tipus de directori" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "Informe" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML invàlid per a la definició de la vista!" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "Extensió" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "Fitxers virtuals" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "Cerca un fitxer" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "Directori" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "Seguretat" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "Usuari última modificació" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "Directoris relacionats amb objectes" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "Domini" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "Data de modificació" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "Directori estàtic" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "Propietari" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "Informe PDF" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "Continguts" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "Data creació" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "Configuració document" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "Auto configura directori" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "Incloure nom de registre" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Adjunt" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "ID model" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Vista prèvia" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "Estructura del directori" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "Configuració" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "Grups" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Dades" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "Definició" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "Seq." - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "Base de dades" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "Altres info." - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "Adjuntat a" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "Historial" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "Autor" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "Si aquí introduïu un objecte, aquesta plantilla de directori apareixerà sota de tots aquests objectes. No poseu un directori pare si seleccioneu un model pare." - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "Archivos auto-generats" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "Cancel·la" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "Incloure nom de registre" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "ID model" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "Error! No podeu crear directoris recursius." + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "Configuració document" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Vista prèvia" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "Mètode magatzematge" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "Auto configura directori" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "Mida del fitxer" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,31 +85,170 @@ msgstr "" msgid "Parent Model" msgstr "Model pare" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "Sistema gestió de documents." + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Adjunt" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "Directori estàtic" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "Tipus de contingut del directori" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "Tipus" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "Estructura del directori" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "Element pare" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "Informació del fitxer" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "Fitxers" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "Nom del fitxer desat" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "Usuari última modificació" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "Configuració" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "Estructura arbre" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "Títol registre" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." msgstr "" +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "Contingut directori" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "Si aquí introduïu un objecte, aquesta plantilla de directori apareixerà sota de tots aquests objectes. No poseu un directori pare si seleccioneu un model pare." + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "Gestió de documents" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" +msgstr "Enllaç" + #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" -msgstr "Directoris" +msgid "Directory Type" +msgstr "Tipus de directori" #. module: document -#: field:document.directory,name:0 -msgid "Name" -msgstr "Nom" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" +msgstr "Grups" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" -msgstr "Navega pels fitxers utilitzant FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "Informe" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "Introduïu aquí l'adreça del servidor o IP. Deixa localhost si no sabeu que escriure." + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "Aquest assistent configurarà automàticament el sistema de gestió de documents segons els mòduls instal·lats en el vostre sistema." + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Dades" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Notes" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "Contingut indexat" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "Definició" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML invàlid per a la definició de la vista!" #. module: document #: model:ir.module.module,description:document.module_meta_information @@ -473,32 +260,195 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" -msgstr "Seqüència" +#: field:document.directory,name:0 +msgid "Name" +msgstr "Nom" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" -msgstr "Nom contingut" +#: field:document.directory.content.type,code:0 +msgid "Extension" +msgstr "Extensió" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" -msgstr "Estructura arbre" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "Base de dades" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "Fitxers virtuals" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "Directoris" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "Seq." + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "Directori" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" +msgstr "Propietari" #. module: document #: model:ir.model,name:document.model_document_configuration_wizard msgid "document.configuration.wizard" msgstr "document.configuracio.assistent" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Adjuntat a" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "Sistema de fitxers" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "Tipus de contingut" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "Seguretat" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "Navega pels fitxers utilitzant FTP" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "Directoris relacionats amb objectes" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "Historial" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "Seleccioneu aquí un objecte i OpenERP crearà un mapa de relacions per a cada un d'aquests objectes, utilitzant el domini donat, quan navegueu per FTP." + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "Altres info." + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "Domini" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "Data de modificació" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "Sufix" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "Adreça del servidor" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "Navega pels fitxers" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "Nom contingut" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "Directori document" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "Autor" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "Archivos auto-generats" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "Seqüència" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "Cerca un fitxer" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "Configura automàticament" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "Cancel·la" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "Empresa" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "Informe PDF" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "Tipus de document" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "Continguts" + diff --git a/addons/document/i18n/cs_CZ.po b/addons/document/i18n/cs_CZ.po index cf963bb01ce..5c651ee5519 100644 --- a/addons/document/i18n/cs_CZ.po +++ b/addons/document/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Poznámky" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Poznámky" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/de_DE.po b/addons/document/i18n/de_DE.po index 5e277c339fc..2530494252e 100644 --- a/addons/document/i18n/de_DE.po +++ b/addons/document/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "Wähle hier ein Objekt und es wird automatisch eine Zuordnung zur angegebenen Domain vorgenommen." - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "Verzeichnis Inhaltsstyp" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "Dieser Assistent wird das Dokumentenmanagement automatisch konfigurieren unter Berücksichtigung der installierten Module." - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "Dokument" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "Inhaltsverzeichnis" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "Dokumente" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "Setze hier die Serveradresse oder die IP. Behalte localhost falls Sie den Eintrag nicht kennen." - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "Dateiinfo" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "Inhaltsindizierung" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Notizen" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "Fehler! Sie können keine rekursiven Ordner erzeugen." - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "Beschreibung" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "Dokumentensystem" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "Suffix" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "Dateien durchsuchen" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "Partner" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "Dokumentenverzeichnis" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "Datei Grösse" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "Berichtsinhalt" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "Dokument Management System" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "Speichermethode" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "Typ" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "Dies Auswählen, um die gleiche Baumstruktur wie das Objekt in OpenERP zu verwenden." - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "Verwede eine Domain um einen automatischen Filter für die anzuzeigenden Datensätze zu setzen" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "Serveradresse" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "Abgespeicherter Dateiname" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "Link" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "Verzeichnistyp" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "Report" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Fehlerhafter xml Code für diese Ansicht!" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "Erweiterung" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "Virtuelle Dokumente" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "Suche Dokument" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "Verzeichnis" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "Sicherheit" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "Letzte Änderung" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "Zuordnung zu Objekten" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "Domain" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "Änderungsdatum" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "Statisches Verzeichnis" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "Besitzer" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "PDF Report" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "Inhalte" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "Erstellt am" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "Konfiguration Dokumente" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "Autokonfiguration Verzeichnis" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "Inklusive Beitragsbezeichnung" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "Dieser Assistent wird die URL des Servers der Dokumentenverwaltung definieren" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Dateianhang" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "Vorlage ID" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Ausblick" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "Verzeichnisstruktur" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "Konfiguriere" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "Gruppen" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Persönliche Daten" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "Beschreibung" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "Seq." - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "Datenbank" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "Integrierte Dokumentenverwaltung" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "Andere Info" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "Zuweisung an:" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "Historie" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "Urheber" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "Falls Sie hier ein Objekt eintragen, wird dieses Verzeichnis unterhalb aller dieser Objekte auftauchen. Tragen Sie kein (Ober-) Verzeichnis ein falls Sie ein Hauptverzeichnis definieren wollen.alle" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "Automatisch erzeugte Dokumente" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "Abbrechen" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "Kindelemente" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "Ressource ID" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "Inklusive Beitragsbezeichnung" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "Vorlage ID" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "Fehler! Sie können keine rekursiven Ordner erzeugen." + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "Konfiguration Dokumente" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Ausblick" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "Speichermethode" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "Autokonfiguration Verzeichnis" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "Datei Grösse" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,31 +85,170 @@ msgstr "Andere Quellen:" msgid "Parent Model" msgstr "Hauptvorlage" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "Dokument Management System" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Dateianhang" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "Statisches Verzeichnis" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "Verzeichnis Inhaltsstyp" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "Verwede eine Domain um einen automatischen Filter für die anzuzeigenden Datensätze zu setzen" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "Dies Auswählen, um die gleiche Baumstruktur wie das Objekt in OpenERP zu verwenden." + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "Typ" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "Verzeichnisstruktur" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "Elternelement" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" -msgstr "" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "Dateiinfo" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "Dokument" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "Abgespeicherter Dateiname" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "Letzte Änderung" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "Konfiguriere" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "Baumstruktur" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "Beschreibung" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "Dieser Assistent wird die URL des Servers der Dokumentenverwaltung definieren" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "Inhaltsverzeichnis" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "Falls Sie hier ein Objekt eintragen, wird dieses Verzeichnis unterhalb aller dieser Objekte auftauchen. Tragen Sie kein (Ober-) Verzeichnis ein falls Sie ein Hauptverzeichnis definieren wollen.alle" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "Dokumente" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" +msgstr "Link" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" -msgstr "Verzeichnisse" +msgid "Directory Type" +msgstr "Verzeichnistyp" #. module: document -#: field:document.directory,name:0 -msgid "Name" -msgstr "Bezeichnung" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" +msgstr "Gruppen" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" -msgstr "Suche Dokument" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "Report" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "Setze hier die Serveradresse oder die IP. Behalte localhost falls Sie den Eintrag nicht kennen." + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "Dieser Assistent wird das Dokumentenmanagement automatisch konfigurieren unter Berücksichtigung der installierten Module." + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Persönliche Daten" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Notizen" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "Inhaltsindizierung" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "Beschreibung" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Fehlerhafter xml Code für diese Ansicht!" #. module: document #: model:ir.module.module,description:document.module_meta_information @@ -477,32 +264,195 @@ msgstr "Das ist ein vollständiges Dokumentenverwaltungssystem mit\n" "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" -msgstr "Sequenz" +#: field:document.directory,name:0 +msgid "Name" +msgstr "Bezeichnung" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" -msgstr "Inhaltsbezeichnung" +#: field:document.directory.content.type,code:0 +msgid "Extension" +msgstr "Erweiterung" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" -msgstr "Baumstruktur" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "Datenbank" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "Virtuelle Dokumente" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "Verzeichnisse" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "Seq." + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "Integrierte Dokumentenverwaltung" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "Verzeichnis" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" +msgstr "Besitzer" #. module: document #: model:ir.model,name:document.model_document_configuration_wizard msgid "document.configuration.wizard" msgstr "document.configuration.wizard" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Zuweisung an:" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "Dokumentensystem" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "Berichtsinhalt" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "Sicherheit" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "Suche Dokument" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "Zuordnung zu Objekten" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "Historie" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "Wähle hier ein Objekt und es wird automatisch eine Zuordnung zur angegebenen Domain vorgenommen." + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "Andere Info" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "Domain" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "Änderungsdatum" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "Suffix" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "Serveradresse" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "Dateien durchsuchen" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "Inhaltsbezeichnung" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "Dokumentenverzeichnis" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "Urheber" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "Automatisch erzeugte Dokumente" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "Sequenz" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "Suche Dokument" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "Konfiguriere Automatisch" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "Abbrechen" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "Partner" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "PDF Report" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "Dokumententyp" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "Kindelemente" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "Inhalte" + diff --git a/addons/document/i18n/document.pot b/addons/document/i18n/document.pot index bd6165dcdf6..c51e8eccfdd 100644 --- a/addons/document/i18n/document.pot +++ b/addons/document/i18n/document.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/es_AR.po b/addons/document/i18n/es_AR.po index 889eba8db8c..340e12bf877 100644 --- a/addons/document/i18n/es_AR.po +++ b/addons/document/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Notas" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Notas" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/es_ES.po b/addons/document/i18n/es_ES.po index 10687ad5532..724e1a6dd99 100644 --- a/addons/document/i18n/es_ES.po +++ b/addons/document/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "Seleccione aquí un objeto y OpenERP creará un mapeo para cada uno de estos objetos, utilizando el dominio dado, cuando navegue mediante FTP." - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "Tipo de contenido del directorio" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "Este asistente configurará automáticamente el sistema de gestión de documentos según los módulos instalados en su sistema." - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "Archivos" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "Contenido directorio" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "Gestión de documentos" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "Introduzca aquí la dirección del servidor o IP. Dejar localhost si no sabe que escribir." - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "Información del archivo" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "Contenido indexado" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Notas" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "¡Error! No puede crear directorios recursivos." - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "Título registro" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "Sistema de archivos" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "Sufijo" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "Navegar por los archivos" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "Empresa" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "Directorio documento" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "Tamaño del archivo" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "Tipo de contenido" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "Sistema gestión de documentos." - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "Método almacenaje" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "Dirección servidor" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "Nombre del archivo guardado" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "Enlace" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "Tipo de directorio" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "Informe" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "¡XML inválido para la definición de la vista!" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "Extensión" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "Archivos virtuales" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "Buscar un archivo" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "Directorio" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "Seguridad" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "Usuario última modificación" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "Directorios mapeados a objetos" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "Dominio" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "Fecha modificación" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "Directorio estático" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "Propietario" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "Informe PDF" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "Contenidos" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "Fecha creación" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "Configuración documento" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "Auto configurar directorio" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "Incluir nombre de registro" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Adjunto" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "ID modelo" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Vista previa" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "Estructura del directorio" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "Configurar" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "Grupos" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Datos" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "Definición" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "Sec." - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "Base de datos" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "Otras info." - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "Adjuntado a" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "Historial" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "Autor" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "Si aquí introduce un objeto, esta plantilla de directorio aparecerá debajo de todos estos objetos. No ponga un directorio padre si selecciona un modelo padre." - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "Archivos auto-generados" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "Incluir nombre de registro" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "ID modelo" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "¡Error! No puede crear directorios recursivos." + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "Configuración documento" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Vista previa" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "Método almacenaje" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "Auto configurar directorio" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "Tamaño del archivo" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,31 +85,170 @@ msgstr "" msgid "Parent Model" msgstr "Modelo padre" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "Sistema gestión de documentos." + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Adjunto" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "Directorio estático" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "Tipo de contenido del directorio" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "Estructura del directorio" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "Elemento padre" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "Información del archivo" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "Archivos" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "Nombre del archivo guardado" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "Usuario última modificación" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "Configurar" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "Estructura árbol" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "Título registro" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." msgstr "" +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "Contenido directorio" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "Si aquí introduce un objeto, esta plantilla de directorio aparecerá debajo de todos estos objetos. No ponga un directorio padre si selecciona un modelo padre." + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "Gestión de documentos" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" +msgstr "Enlace" + #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" -msgstr "Directorios" +msgid "Directory Type" +msgstr "Tipo de directorio" #. module: document -#: field:document.directory,name:0 -msgid "Name" -msgstr "Nombre" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" +msgstr "Grupos" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" -msgstr "Navegar por los archivos usando FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "Informe" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "Introduzca aquí la dirección del servidor o IP. Dejar localhost si no sabe que escribir." + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "Este asistente configurará automáticamente el sistema de gestión de documentos según los módulos instalados en su sistema." + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Datos" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Notas" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "Contenido indexado" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "Definición" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "¡XML inválido para la definición de la vista!" #. module: document #: model:ir.module.module,description:document.module_meta_information @@ -473,32 +260,195 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" -msgstr "Secuencia" +#: field:document.directory,name:0 +msgid "Name" +msgstr "Nombre" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" -msgstr "Nombre contenido" +#: field:document.directory.content.type,code:0 +msgid "Extension" +msgstr "Extensión" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" -msgstr "Estructura árbol" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "Base de datos" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "Archivos virtuales" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "Directorios" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "Sec." + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "Directorio" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" +msgstr "Propietario" #. module: document #: model:ir.model,name:document.model_document_configuration_wizard msgid "document.configuration.wizard" msgstr "documento.configuracion.asistente" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Adjuntado a" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "Sistema de archivos" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "Tipo de contenido" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "Seguridad" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "Navegar por los archivos usando FTP" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "Directorios mapeados a objetos" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "Historial" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "Seleccione aquí un objeto y OpenERP creará un mapeo para cada uno de estos objetos, utilizando el dominio dado, cuando navegue mediante FTP." + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "Otras info." + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "Dominio" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "Fecha modificación" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "Sufijo" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "Dirección servidor" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "Navegar por los archivos" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "Nombre contenido" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "Directorio documento" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "Autor" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "Archivos auto-generados" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "Buscar un archivo" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "Configurar automáticamente" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "Cancelar" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "Empresa" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "Informe PDF" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "Tipo de documento" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "Contenidos" + diff --git a/addons/document/i18n/et_EE.po b/addons/document/i18n/et_EE.po index 9de40a586e3..44a697742c1 100644 --- a/addons/document/i18n/et_EE.po +++ b/addons/document/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "Vali siia objekt ja Open ERP loob kaardistuse neile objektidele kasutades antud domeeni sirvides läbi FTP." - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Vigane mudeli nimi toimingu definitsioonis." - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "Kataloogi sisu tüüp" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "See wizard seadistab automaatselt dokumendi haldussüsteemi vastavalt moodulitele mis on installeeritud süsteemi." - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "Failid" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "Kaustasisu" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "Dokumendihaldus" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "Pane siia serveri nimi või IP. Jäta localhost kui sa ei tea mida kirjutada." - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "Faili informatsioon" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "Indekseeritud sisu" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Märkmed" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "Viga! Sa ei saa luua regrussiivseid kaustu." - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "Ressursi pealkiri" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "Failisüsteem" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "Järelliide" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "Sirvi faile" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "Partner" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "Dokumendi kataloog" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "Failisuurus" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "Sisu tüüp" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "Dokumendihaldus Süsteem." - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "Salvestamise meetod" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "Tüüp" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "Vali see kui sa soovid kasutada sama puustruktuuri kui objektil valitud süsteemis." - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "Kasuta doomeninime kui soovid rakendada automaatset filtrit nähaolevatele resurssidele." - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "Serveri aadress" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "Salvestatud failinimi" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "Viit" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "Kausta tüüp" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "Aruanne" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Vigane XML vaate arhitektuurile!" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "Laiend" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "Virtuaalsed failid" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "Otsi faili" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "Kataloog" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "Turvalisus" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "Viimati muutnud kasutaja" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "Kataloogid kaardistatud objektideks" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "Domeen" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "Muutmise kuupäev" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "Staatiline kataloog" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "Omanik" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "PDF aruanne" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "Sisukord" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "Loomise kuupäev" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "Dokumendiseadistused" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "Seadista automaatselt kataloog" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "Kaasa kirje nimi" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "See nõustaja seadistab serveri ja dokumendihaldussüsteemi URL-i." - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Manus" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "Mudeli ID" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Eelvaade" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "Kataloogide struktuur" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "Seadista" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "Grupid" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Andmed" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "Definitsioon" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "Jada" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "Andmebaas" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "Integreeritud dokumendi haldussüsteem" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "Muu info" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "Lisatud millele" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "Ajalugu" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "Looja" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "Kui sa paned objekti siia siis selle kataloogi mall ilmub allpool neid objekte. Ära pane ülemkataloogi, kui sa valid ülemmudeli." - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "Auto-genereeritud failid" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "Loobu" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "Alam" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "Vahend ID" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "Kaasa kirje nimi" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "Mudeli ID" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "Viga! Sa ei saa luua regrussiivseid kaustu." + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "Dokumendiseadistused" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Eelvaade" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "Salvestamise meetod" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "Seadista automaatselt kataloog" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "Failisuurus" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,31 +85,170 @@ msgstr "Teised ressursid" msgid "Parent Model" msgstr "Ülemmudel" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "Dokumendihaldus Süsteem." + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Manus" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "Vigane mudeli nimi toimingu definitsioonis." + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "Staatiline kataloog" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "Kataloogi sisu tüüp" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "Kasuta doomeninime kui soovid rakendada automaatset filtrit nähaolevatele resurssidele." + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "Vali see kui sa soovid kasutada sama puustruktuuri kui objektil valitud süsteemis." + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "Tüüp" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "Kataloogide struktuur" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "Ülemobjekt" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" -msgstr "" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "Faili informatsioon" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "Failid" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "Salvestatud failinimi" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "Viimati muutnud kasutaja" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "Seadista" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "Puu struktuur" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "Ressursi pealkiri" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "See nõustaja seadistab serveri ja dokumendihaldussüsteemi URL-i." + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "Kaustasisu" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "Kui sa paned objekti siia siis selle kataloogi mall ilmub allpool neid objekte. Ära pane ülemkataloogi, kui sa valid ülemmudeli." + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "Dokumendihaldus" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" +msgstr "Viit" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" -msgstr "Kataloogid" +msgid "Directory Type" +msgstr "Kausta tüüp" #. module: document -#: field:document.directory,name:0 -msgid "Name" -msgstr "Nimi" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" +msgstr "Grupid" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" -msgstr "Sirvi faile kasutades FTP-d" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "Aruanne" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "Pane siia serveri nimi või IP. Jäta localhost kui sa ei tea mida kirjutada." + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "See wizard seadistab automaatselt dokumendi haldussüsteemi vastavalt moodulitele mis on installeeritud süsteemi." + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Andmed" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Märkmed" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "Indekseeritud sisu" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "Definitsioon" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Vigane XML vaate arhitektuurile!" #. module: document #: model:ir.module.module,description:document.module_meta_information @@ -477,32 +264,195 @@ msgstr "See on täielik dokumendi haldussüsteem:\n" "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" +msgstr "Nimi" + +#. module: document +#: field:document.directory.content.type,code:0 +msgid "Extension" +msgstr "Laiend" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "Andmebaas" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "Virtuaalsed failid" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "Kataloogid" + +#. module: document +#: view:document.directory:0 +msgid "Seq." msgstr "Jada" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" -msgstr "Sisu nimi" +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "Integreeritud dokumendi haldussüsteem" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" -msgstr "Puu struktuur" +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "Kataloog" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" +msgstr "Omanik" #. module: document #: model:ir.model,name:document.model_document_configuration_wizard msgid "document.configuration.wizard" msgstr "dokumendi.seadistamise.wizard" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Lisatud millele" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "Failisüsteem" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "Sisu tüüp" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "Turvalisus" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "Sirvi faile kasutades FTP-d" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "Kataloogid kaardistatud objektideks" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "Ajalugu" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "Vali siia objekt ja Open ERP loob kaardistuse neile objektidele kasutades antud domeeni sirvides läbi FTP." + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "Muu info" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "Domeen" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "Muutmise kuupäev" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "Järelliide" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "Serveri aadress" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "Sirvi faile" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "Sisu nimi" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "Dokumendi kataloog" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "Looja" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "Auto-genereeritud failid" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "Jada" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "Otsi faili" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "Automaatne seadistamine" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "Loobu" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "Partner" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "PDF aruanne" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "Dokumendi tüüp" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "Alam" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "Sisukord" + diff --git a/addons/document/i18n/fi_FI.po b/addons/document/i18n/fi_FI.po index 77193000e61..6caa8d330ad 100644 --- a/addons/document/i18n/fi_FI.po +++ b/addons/document/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Huomautukset" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Liite" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Esikatselu" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Data" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "Liitetty kohteeseen" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Esikatselu" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Liite" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Data" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Huomautukset" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Liitetty kohteeseen" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/fr_FR.po b/addons/document/i18n/fr_FR.po index 1b27d39c4c6..90076c96914 100644 --- a/addons/document/i18n/fr_FR.po +++ b/addons/document/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "Cochez cette case si vous souhaitez que le nom du fichier commence par l #. module: document #: selection:document.directory,type:0 msgid "Other Resources" -msgstr "Autres ressources" +msgstr "" #. module: document #: field:document.directory,ressource_parent_type_id:0 @@ -88,7 +88,7 @@ msgstr "Modèle parent" #. module: document #: view:document.configuration.wizard:0 msgid "Document Management System." -msgstr "Système de gestion des documents" +msgstr "Gestion Électronique des Documents" #. module: document #: view:ir.attachment:0 @@ -98,12 +98,12 @@ msgstr "Pièce jointe" #. module: document #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: document #: selection:document.directory,type:0 msgid "Static Directory" -msgstr "Répertoire statique" +msgstr "Répertoire Statique" #. module: document #: model:ir.model,name:document.model_document_directory_content_type @@ -113,12 +113,12 @@ msgstr "Type de Contenu du Répertoire" #. module: document #: help:document.directory,domain:0 msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "Utiliser un domaine si vous souhaitez appliquer un filtre automatique sur les ressources visibles." +msgstr "" #. module: document #: help:document.directory,ressource_tree:0 msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "Cocher ceci si vous souhaitez utiliser la même structure en arbre que l'objet sélectionné dans le système." +msgstr "" #. module: document #: field:document.directory,type:0 @@ -139,7 +139,7 @@ msgstr "Objet Parent" #. module: document #: view:ir.attachment:0 msgid "File Information" -msgstr "Information fichier" +msgstr "Informations sur le fichier" #. module: document #: field:document.directory,file_ids:0 @@ -176,7 +176,7 @@ msgstr "Titre de la Ressource" #. module: document #: model:ir.actions.todo,note:document.config_auto_directory msgid "This wizard will configure the URL of the server of the document management system." -msgstr "Cette assistant configurera l'adresse du gestionnaire de documentation." +msgstr "" #. module: document #: model:ir.model,name:document.model_document_directory_content @@ -201,7 +201,7 @@ msgstr "Lien" #. module: document #: view:document.directory:0 msgid "Directory Type" -msgstr "Type de répertoire" +msgstr "Type de Répertoire" #. module: document #: field:document.directory,group_ids:0 @@ -222,7 +222,7 @@ msgstr "Saisissez l'adresse du serveur ou son IP. (Laissez localhost si vous ne #. module: document #: view:document.configuration.wizard:0 msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "Cet assistant configurera automatiquement le gestionnaire de documentation en accord avec les modules installés sur le système." +msgstr "Cet assistant configurera automatiquement la gestion documentaire en fonction des modules installés sur votre système" #. module: document #: view:ir.attachment:0 @@ -257,11 +257,7 @@ msgid "This is a complete document management system:\n" " * User Authentication\n" " * Document Indexation\n" "" -msgstr "Ceci est une gestion documentaire complète:\n" -" * Interface FTP\n" -" * Authentification utilisateur\n" -" * Indexation des documents\n" -"" +msgstr "" #. module: document #: field:document.directory,name:0 @@ -297,7 +293,7 @@ msgstr "Séq." #. module: document #: model:ir.module.module,shortdesc:document.module_meta_information msgid "Integrated Document Management System" -msgstr "Gestionnaire de documentation intégré" +msgstr "" #. module: document #: field:document.directory.content,directory_id:0 @@ -324,7 +320,7 @@ msgstr "Attaché à" #. module: document #: selection:ir.attachment,store_method:0 msgid "Filesystem" -msgstr "Système de fichier" +msgstr "Système de Fichiers" #. module: document #: field:document.directory,file_type:0 @@ -409,7 +405,7 @@ msgstr "Créateur" #. module: document #: view:document.directory:0 msgid "Auto-Generated Files" -msgstr "Fichiers auto-générés" +msgstr "Fichiers générés automatiquement" #. module: document #: field:document.directory.content,sequence:0 @@ -424,7 +420,7 @@ msgstr "Chercher un Fichier" #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" -msgstr "Configuration automatique" +msgstr "Configuration Automatique" #. module: document #: view:document.configuration.wizard:0 @@ -449,7 +445,7 @@ msgstr "Type de document" #. module: document #: field:document.directory,child_ids:0 msgid "Children" -msgstr "Enfant" +msgstr "" #. module: document #: view:document.directory:0 diff --git a/addons/document/i18n/hi_HI.po b/addons/document/i18n/hi_HI.po index 39bc79a46e4..5d4e2b3afe1 100644 --- a/addons/document/i18n/hi_HI.po +++ b/addons/document/i18n/hi_HI.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:08+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: document diff --git a/addons/document/i18n/hr_HR.po b/addons/document/i18n/hr_HR.po index 017a0375377..d035a52cc4f 100644 --- a/addons/document/i18n/hr_HR.po +++ b/addons/document/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/hu_HU.po b/addons/document/i18n/hu_HU.po index 471cf8f2e5e..53b7c506843 100644 --- a/addons/document/i18n/hu_HU.po +++ b/addons/document/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Jegyzetek" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Jegyzetek" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/id_ID.po b/addons/document/i18n/id_ID.po index afaec749491..6a072f39966 100644 --- a/addons/document/i18n/id_ID.po +++ b/addons/document/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/it_IT.po b/addons/document/i18n/it_IT.po index 17659464495..86b9933661b 100644 --- a/addons/document/i18n/it_IT.po +++ b/addons/document/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "Tipo di Contenuto della Cartella" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "Questa procedura guidata configurerà il sistema di gestione documentale secondo i moduli installati nel vostro sistema." - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "File" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "Contenuto della Cartella" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "Gestione Documentale" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "Inserire il numero IP del server. Scrivere localhost se non lo conoscete." - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "Informazione del file" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "Contenuto Indicizzato" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Note" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "Titolo della Risorsa" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "Filesystem" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "Suffisso" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "Sfoglia file" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "Cartella Documenti" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "Dimensione File" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "Tipo Di Contenuto" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "Sistema di Gestione Documentale" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "Metodo di Salvataggio" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "Indirizzo del Server" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "Nome file Memorizzati" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "Collegamento" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "Tipo Cartella" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "Rapporto" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML non valido per Visualizzazione Architettura!" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "Estensione" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "File Virtuali" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "Cerca un File" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "Cartella" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "Sicurezza" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "Cartelle mappate sugli oggetti" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "Dominio" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "Data modifica" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "Cartella Statica" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "Proprietario" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "Report PDF" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "Contenuti" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "Data di creazione" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "Configurazione Documento" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "Configurazione Automatica Cartella" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Allegato" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "ID Modello" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Anteprima" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "Strutture delle Cartelle" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "Configura" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "Gruppi" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Dati" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "Definizione" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "Seq." - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "Database" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "Altre Informazioni" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "Allegato a" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "Cronologia" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "Autore" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "Autocreazione dei File" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "Cancella" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri speciali!" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "ID Modello" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "Configurazione Documento" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Anteprima" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "Metodo di Salvataggio" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "Configurazione Automatica Cartella" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "Dimensione File" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,31 +85,170 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "Sistema di Gestione Documentale" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Allegato" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "Cartella Statica" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "Tipo di Contenuto della Cartella" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "Strutture delle Cartelle" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "Informazione del file" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "File" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "Nome file Memorizzati" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "Configura" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "Struttura ad Albero" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "Titolo della Risorsa" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "Contenuto della Cartella" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "Gestione Documentale" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" +msgstr "Collegamento" + #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" -msgstr "Cartelle" +msgid "Directory Type" +msgstr "Tipo Cartella" #. module: document -#: field:document.directory,name:0 -msgid "Name" -msgstr "Nome" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" +msgstr "Gruppi" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" -msgstr "Lista dei File usando l'FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "Rapporto" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "Inserire il numero IP del server. Scrivere localhost se non lo conoscete." + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "Questa procedura guidata configurerà il sistema di gestione documentale secondo i moduli installati nel vostro sistema." + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Dati" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Note" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "Contenuto Indicizzato" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "Definizione" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML non valido per Visualizzazione Architettura!" #. module: document #: model:ir.module.module,description:document.module_meta_information @@ -473,32 +260,195 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" -msgstr "Sequenza" +#: field:document.directory,name:0 +msgid "Name" +msgstr "Nome" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" -msgstr "Nome del Contenuto" +#: field:document.directory.content.type,code:0 +msgid "Extension" +msgstr "Estensione" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" -msgstr "Struttura ad Albero" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "Database" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "File Virtuali" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "Cartelle" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "Seq." + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "Cartella" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" +msgstr "Proprietario" #. module: document #: model:ir.model,name:document.model_document_configuration_wizard msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Allegato a" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "Filesystem" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "Tipo Di Contenuto" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "Sicurezza" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "Lista dei File usando l'FTP" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "Cartelle mappate sugli oggetti" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "Cronologia" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "Altre Informazioni" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "Dominio" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "Data modifica" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "Suffisso" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "Indirizzo del Server" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "Sfoglia file" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "Nome del Contenuto" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "Cartella Documenti" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "Autore" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "Autocreazione dei File" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "Sequenza" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "Cerca un File" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "Configurazione automatica" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "Cancella" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "Report PDF" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "Tipo di documento" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "Contenuti" + diff --git a/addons/document/i18n/lt_LT.po b/addons/document/i18n/lt_LT.po index a347ea5a6d7..8a0a7ef3eb3 100644 --- a/addons/document/i18n/lt_LT.po +++ b/addons/document/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/nl_BE.po b/addons/document/i18n/nl_BE.po index 6b8853e9cbb..eb6a60cc03a 100644 --- a/addons/document/i18n/nl_BE.po +++ b/addons/document/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/nl_NL.po b/addons/document/i18n/nl_NL.po index 5a8982c00e7..ef4a42c5d23 100644 --- a/addons/document/i18n/nl_NL.po +++ b/addons/document/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Notities" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Ongeldige XML voor overzicht" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Bijlage" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Voorbeeldweergave" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Gegevens" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "Gekoppeld aan" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Voorbeeldweergave" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,32 +85,171 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Bijlage" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" msgstr "" +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Gegevens" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Notities" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Ongeldige XML voor overzicht" + #. module: document #: model:ir.module.module,description:document.module_meta_information msgid "This is a complete document management system:\n" @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Gekoppeld aan" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/pl_PL.po b/addons/document/i18n/pl_PL.po index d3d183d9ade..a18758675b3 100644 --- a/addons/document/i18n/pl_PL.po +++ b/addons/document/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,289 +15,14 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "Pliki" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "Informacje o pliku" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Uwagi" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "Rozmiar pliku" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "Typ" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "Łącze" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "Raport" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML niewłaściwy dla tej architektury wyświetlania!" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "Rozszerzenie" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "Data utworzenia" #. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" +#: field:document.directory,ressource_id:0 +msgid "Resource ID" msgstr "" #. module: document @@ -306,121 +31,44 @@ msgid "Include Record Name" msgstr "" #. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Załącznik" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" #. module: document #: field:ir.actions.report.xml,model_id:0 msgid "Model Id" msgstr "" +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + #. module: document #: view:ir.attachment:0 msgid "Preview" msgstr "Podgląd" #. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" +#: field:ir.attachment,store_method:0 +msgid "Storing Method" msgstr "" #. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" msgstr "" #. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "Groupy" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Dane" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "Definicja" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "Baza danych" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "Historia" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "Anuluj" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - -#. module: document -#: field:document.directory,ressource_id:0 -msgid "Resource ID" -msgstr "" - -#. module: document -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków specjalnych !" +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "Rozmiar pliku" #. module: document #: help:document.directory.content,include_name:0 @@ -437,31 +85,170 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Załącznik" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "Typ" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "Informacje o pliku" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "Pliki" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" +msgstr "Łącze" + +#. module: document +#: view:document.directory:0 +msgid "Directory Type" +msgstr "" + +#. module: document +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" +msgstr "Groupy" + +#. module: document +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "Raport" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Dane" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Uwagi" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" -msgstr "Katalogi" +msgid "Definition" +msgstr "Definicja" #. module: document -#: field:document.directory,name:0 -msgid "Name" -msgstr "Nazwa" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" -msgstr "" +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML niewłaściwy dla tej architektury wyświetlania!" #. module: document #: model:ir.module.module,description:document.module_meta_information @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" +msgstr "Nazwa" + +#. module: document +#: field:document.directory.content.type,code:0 +msgid "Extension" +msgstr "Rozszerzenie" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "Baza danych" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "Katalogi" + +#. module: document +#: view:document.directory:0 +msgid "Seq." msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "Historia" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "Anuluj" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/pt_BR.po b/addons/document/i18n/pt_BR.po index 65d0779682e..bf9b1997f13 100644 --- a/addons/document/i18n/pt_BR.po +++ b/addons/document/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "Gerenciamento de Documentos" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Notas" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalido XML para Arquitetura da View" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Anexo" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Pré-visualizar" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Dados" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "Anexado a" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Pré-visualizar" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,32 +85,171 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Anexo" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "Gerenciamento de Documentos" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" msgstr "" +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Dados" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Notas" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Invalido XML para Arquitetura da View" + #. module: document #: model:ir.module.module,description:document.module_meta_information msgid "This is a complete document management system:\n" @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Anexado a" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/pt_PT.po b/addons/document/i18n/pt_PT.po index ee3d05094a1..2b8b485dfe5 100644 --- a/addons/document/i18n/pt_PT.po +++ b/addons/document/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Notas" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "Erro! Não é possível criar directorias recursivos." - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML inválido para a arquitectura de vista" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "Anexo" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Pré-visualizar" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Dados" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "Ligado a" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "Erro! Não é possível criar directorias recursivos." + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Pré-visualizar" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,32 +85,171 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Anexo" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" msgstr "" +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Dados" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Notas" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML inválido para a arquitectura de vista" + #. module: document #: model:ir.module.module,description:document.module_meta_information msgid "This is a complete document management system:\n" @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Ligado a" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/ro_RO.po b/addons/document/i18n/ro_RO.po index bdb55a68356..bf67a0322c7 100644 --- a/addons/document/i18n/ro_RO.po +++ b/addons/document/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Note" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Note" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/ru_RU.po b/addons/document/i18n/ru_RU.po index 51895c36cb3..3366f388f76 100644 --- a/addons/document/i18n/ru_RU.po +++ b/addons/document/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Примечания" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Неправильный XML для просмотра архитектуры!" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Данные" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,32 +85,171 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" msgstr "" +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Данные" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Примечания" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Неправильный XML для просмотра архитектуры!" + #. module: document #: model:ir.module.module,description:document.module_meta_information msgid "This is a complete document management system:\n" @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/sl_SL.po b/addons/document/i18n/sl_SL.po index 0c212a4eb78..405f2c02c5d 100644 --- a/addons/document/i18n/sl_SL.po +++ b/addons/document/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Opombe" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Neveljaven XML za arhitekturo pogleda." - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Podatki" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,32 +85,171 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" msgstr "" +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Podatki" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Opombe" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Neveljaven XML za arhitekturo pogleda." + #. module: document #: model:ir.module.module,description:document.module_meta_information msgid "This is a complete document management system:\n" @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/cs_CS.po b/addons/document/i18n/sq_AL.po similarity index 88% rename from addons/document/i18n/cs_CS.po rename to addons/document/i18n/sq_AL.po index b162852ce8e..cb35eefe9e4 100644 --- a/addons/document/i18n/cs_CS.po +++ b/addons/document/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Poznámky" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/sv_SE.po b/addons/document/i18n/sv_SE.po index d414e11b1ee..9faefe54f45 100644 --- a/addons/document/i18n/sv_SE.po +++ b/addons/document/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Anteckningar" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Anteckningar" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/tr_TR.po b/addons/document/i18n/tr_TR.po index 5e702c477b3..28737a742d9 100644 --- a/addons/document/i18n/tr_TR.po +++ b/addons/document/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Notlar" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Görüntüleme mimarisi için Geçersiz XML" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,32 +85,171 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" msgstr "" +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Notlar" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Görüntüleme mimarisi için Geçersiz XML" + #. module: document #: model:ir.module.module,description:document.module_meta_information msgid "This is a complete document management system:\n" @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/uk_UK.po b/addons/document/i18n/uk_UA.po similarity index 89% rename from addons/document/i18n/uk_UK.po rename to addons/document/i18n/uk_UA.po index 7d96b108553..2ce89b40ee2 100644 --- a/addons/document/i18n/uk_UK.po +++ b/addons/document/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "Управління Документом" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Примітки" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Неправильний XML для Архітектури Вигляду!" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "Попередній перегляд" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "Дані" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Попередній перегляд" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,32 +85,171 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "Управління Документом" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" msgstr "" +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "Дані" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "Примітки" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Неправильний XML для Архітектури Вигляду!" + #. module: document #: model:ir.module.module,description:document.module_meta_information msgid "This is a complete document management system:\n" @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/sv_SV.po b/addons/document/i18n/vi_VN.po similarity index 88% rename from addons/document/i18n/sv_SV.po rename to addons/document/i18n/vi_VN.po index 3cd93bd6223..ee022771ab7 100644 --- a/addons/document/i18n/sv_SV.po +++ b/addons/document/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,412 +15,60 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "Anteckningar" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" + +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" #. module: document #: help:document.directory.content,include_name:0 @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/zh_CN.po b/addons/document/i18n/zh_CN.po index 74424669ace..9c4f84aee32 100644 --- a/addons/document/i18n/zh_CN.po +++ b/addons/document/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "注解" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "注解" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document/i18n/zh_TW.po b/addons/document/i18n/zh_TW.po index c6d3b14da9d..cb1c3108871 100644 --- a/addons/document/i18n/zh_TW.po +++ b/addons/document/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,413 +15,61 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -#: field:ir.attachment,index_content:0 -msgid "Indexed Content" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "注解" - -#. module: document -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_my_folder -msgid "My Folder" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_product -msgid "Products" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:ir.attachment,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order -msgid "Sales Order" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_partner -msgid "Partners" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_root -msgid "Documents" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_all -msgid "All Sales Order" -msgstr "" - -#. module: document -#: field:ir.attachment,file_size:0 -msgid "File Size" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: field:ir.attachment,store_method:0 -msgid "Storing Method" -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_project -msgid "Projects" -msgstr "" - -#. module: document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_personnal_folder -msgid "Personnal Folders" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "PDF Report" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Contents" -msgstr "" - #. module: document #: field:document.directory,create_date:0 msgid "Date Created" msgstr "" -#. module: document -#: model:ir.ui.menu,name:document.menu_document_configuration -msgid "Document Configuration" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_config_auto_directory -msgid "Auto Configure Directory" -msgstr "" - -#. module: document -#: field:document.directory.content,include_name:0 -msgid "Include Record Name" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Preview" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Definition" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:document.directory,name:document.dir_sale_order_quote -msgid "Quotations" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Cancel" -msgstr "" - -#. module: document -#: field:document.directory,child_ids:0 -msgid "Children" -msgstr "" - #. module: document #: field:document.directory,ressource_id:0 msgid "Resource ID" msgstr "" +#. module: document +#: field:document.directory.content,include_name:0 +msgid "Include Record Name" +msgstr "" + #. module: document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: document +#: field:ir.actions.report.xml,model_id:0 +msgid "Model Id" +msgstr "" + +#. module: document +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_configuration +msgid "Document Configuration" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: document +#: field:ir.attachment,store_method:0 +msgid "Storing Method" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_config_auto_directory +msgid "Auto Configure Directory" +msgstr "" + +#. module: document +#: field:ir.attachment,file_size:0 +msgid "File Size" +msgstr "" + #. module: document #: help:document.directory.content,include_name:0 msgid "Check this field if you want that the name of the file start by the record name." @@ -437,30 +85,169 @@ msgstr "" msgid "Parent Model" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Document Management System." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: document +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "" + +#. module: document +#: selection:document.directory,type:0 +msgid "Static Directory" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content_type +msgid "Directory Content Type" +msgstr "" + +#. module: document +#: help:document.directory,domain:0 +msgid "Use a domain if you want to apply an automatic filter on visible resources." +msgstr "" + +#. module: document +#: help:document.directory,ressource_tree:0 +msgid "Check this if you want to use the same tree structure as the object selected in the system." +msgstr "" + +#. module: document +#: field:document.directory,type:0 +msgid "Type" +msgstr "" + +#. module: document +#: model:ir.actions.act_window,name:document.action_document_directory_tree +#: model:ir.ui.menu,name:document.menu_document_directories_tree +msgid "Directorie's Structure" +msgstr "" + #. module: document #: field:document.directory,parent_id:0 msgid "Parent Item" msgstr "" #. module: document -#: model:document.directory,name:document.dir_partner_category -msgid "Partners by Category" +#: view:ir.attachment:0 +msgid "File Information" +msgstr "" + +#. module: document +#: field:document.directory,file_ids:0 +#: view:ir.attachment:0 +msgid "Files" +msgstr "" + +#. module: document +#: field:ir.attachment,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: document +#: field:document.directory,write_uid:0 +#: field:ir.attachment,write_uid:0 +msgid "Last Modification User" +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "Configure" +msgstr "" + +#. module: document +#: field:document.directory,ressource_tree:0 +msgid "Tree Structure" +msgstr "" + +#. module: document +#: field:ir.attachment,title:0 +msgid "Resource Title" +msgstr "" + +#. module: document +#: model:ir.actions.todo,note:document.config_auto_directory +msgid "This wizard will configure the URL of the server of the document management system." +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory_content +msgid "Directory Content" +msgstr "" + +#. module: document +#: help:document.directory,ressource_parent_type_id:0 +msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document +msgid "Document Management" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Link" msgstr "" #. module: document #: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" +msgid "Directory Type" msgstr "" #. module: document -#: field:document.directory,name:0 -msgid "Name" +#: field:document.directory,group_ids:0 +#: field:ir.attachment,group_ids:0 +msgid "Groups" msgstr "" #. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" +#: field:document.directory.content,report_id:0 +msgid "Report" +msgstr "" + +#. module: document +#: help:document.configuration.wizard,host:0 +msgid "Put here the server address or IP. Keep localhost if you don't know what to write." +msgstr "" + +#. module: document +#: view:document.configuration.wizard:0 +msgid "This wizard will automatically configure the document management system according to modules installed on your system." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Notes" +msgstr "注解" + +#. module: document +#: view:ir.attachment:0 +#: field:ir.attachment,index_content:0 +msgid "Indexed Content" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Definition" +msgstr "" + +#. module: document +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" msgstr "" #. module: document @@ -473,18 +260,51 @@ msgid "This is a complete document management system:\n" msgstr "" #. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" +#: field:document.directory,name:0 +msgid "Name" msgstr "" #. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" +#: field:document.directory.content.type,code:0 +msgid "Extension" msgstr "" #. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" +#: selection:ir.attachment,store_method:0 +msgid "Database" +msgstr "" + +#. module: document +#: field:document.directory,content_ids:0 +msgid "Virtual Files" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: model:ir.ui.menu,name:document.menu_document_directories +msgid "Directories" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Seq." +msgstr "" + +#. module: document +#: model:ir.module.module,shortdesc:document.module_meta_information +msgid "Integrated Document Management System" +msgstr "" + +#. module: document +#: field:document.directory.content,directory_id:0 +#: field:ir.attachment,parent_id:0 +msgid "Directory" +msgstr "" + +#. module: document +#: field:document.directory,user_id:0 +#: field:ir.attachment,user_id:0 +msgid "Owner" msgstr "" #. module: document @@ -492,13 +312,143 @@ msgstr "" msgid "document.configuration.wizard" msgstr "" +#. module: document +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "" + +#. module: document +#: selection:ir.attachment,store_method:0 +msgid "Filesystem" +msgstr "" + +#. module: document +#: field:document.directory,file_type:0 +#: field:document.directory.content.type,name:0 +#: field:ir.attachment,file_type:0 +msgid "Content Type" +msgstr "" + +#. module: document +#: view:document.directory:0 +#: view:ir.attachment:0 +msgid "Security" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_browse +msgid "Browse Files Using FTP" +msgstr "" + +#. module: document +#: field:document.directory,ressource_type_id:0 +msgid "Directories Mapped to Objects" +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "History" +msgstr "" + +#. module: document +#: help:document.directory,ressource_type_id:0 +msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." +msgstr "" + +#. module: document +#: view:ir.attachment:0 +msgid "Others Info" +msgstr "" + +#. module: document +#: field:document.directory,domain:0 +msgid "Domain" +msgstr "" + +#. module: document +#: field:document.directory,write_date:0 +#: field:ir.attachment,write_date:0 +msgid "Date Modified" +msgstr "" + +#. module: document +#: field:document.directory.content,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: document +#: field:document.configuration.wizard,host:0 +msgid "Server Address" +msgstr "" + +#. module: document +#: model:ir.actions.url,name:document.action_document_browse +msgid "Browse Files" +msgstr "" + +#. module: document +#: field:document.directory.content,name:0 +msgid "Content Name" +msgstr "" + +#. module: document +#: model:ir.model,name:document.model_document_directory +#: field:process.node,directory_id:0 +msgid "Document directory" +msgstr "" + +#. module: document +#: field:document.directory,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Auto-Generated Files" +msgstr "" + +#. module: document +#: field:document.directory.content,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: document +#: model:ir.ui.menu,name:document.menu_document_files +msgid "Search a File" +msgstr "" + #. module: document #: view:document.configuration.wizard:0 msgid "Auto Configure" msgstr "" +#. module: document +#: view:document.configuration.wizard:0 +msgid "Cancel" +msgstr "" + +#. module: document +#: field:ir.attachment,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "PDF Report" +msgstr "" + #. module: document #: field:document.directory.content,extension:0 msgid "Document Type" msgstr "" +#. module: document +#: field:document.directory,child_ids:0 +msgid "Children" +msgstr "" + +#. module: document +#: view:document.directory:0 +msgid "Contents" +msgstr "" + diff --git a/addons/document_ics/i18n/ar_AR.po b/addons/document_ics/i18n/ar_AR.po index 8e398b5c62d..18b7801b446 100644 --- a/addons/document_ics/i18n/ar_AR.po +++ b/addons/document_ics/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/bg_BG.po b/addons/document_ics/i18n/bg_BG.po index 117fd2c16dc..c38420701ea 100644 --- a/addons/document_ics/i18n/bg_BG.po +++ b/addons/document_ics/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/bs_BS.po b/addons/document_ics/i18n/bs_BS.po index 819edcb860e..7b3260a01e4 100644 --- a/addons/document_ics/i18n/bs_BS.po +++ b/addons/document_ics/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/ca_ES.po b/addons/document_ics/i18n/ca_ES.po index 1aa42e45b3e..454b0d5b54d 100644 --- a/addons/document_ics/i18n/ca_ES.po +++ b/addons/document_ics/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "Objecte" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/cs_CZ.po b/addons/document_ics/i18n/cs_CZ.po index a36fd99f3c3..ddb3b328961 100644 --- a/addons/document_ics/i18n/cs_CZ.po +++ b/addons/document_ics/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/de_DE.po b/addons/document_ics/i18n/de_DE.po index e2a482594c9..c02190eb09f 100644 --- a/addons/document_ics/i18n/de_DE.po +++ b/addons/document_ics/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "Objekt" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/document_ics.pot b/addons/document_ics/i18n/document_ics.pot index f4a5e163a6c..f483a522f20 100644 --- a/addons/document_ics/i18n/document_ics.pot +++ b/addons/document_ics/i18n/document_ics.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document_ics/i18n/es_AR.po b/addons/document_ics/i18n/es_AR.po index bb9a1e2af3b..918d20a15c6 100644 --- a/addons/document_ics/i18n/es_AR.po +++ b/addons/document_ics/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/es_ES.po b/addons/document_ics/i18n/es_ES.po index 611ad391f0f..57d298cb6e3 100644 --- a/addons/document_ics/i18n/es_ES.po +++ b/addons/document_ics/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "Objeto" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/et_EE.po b/addons/document_ics/i18n/et_EE.po index 0ea381eaeb8..abcb94f7073 100644 --- a/addons/document_ics/i18n/et_EE.po +++ b/addons/document_ics/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "Vahendite kogumise operatsioonid" msgid "Object" msgstr "Objekt" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/fi_FI.po b/addons/document_ics/i18n/fi_FI.po index 7e2a775da01..2f504e6b2c7 100644 --- a/addons/document_ics/i18n/fi_FI.po +++ b/addons/document_ics/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/fr_FR.po b/addons/document_ics/i18n/fr_FR.po index 21530c0701f..a7af6934fc7 100644 --- a/addons/document_ics/i18n/fr_FR.po +++ b/addons/document_ics/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "" #. module: document_ics #: field:document.ics.crm.wizard,helpdesk:0 msgid "Helpdesk" -msgstr "Support" +msgstr "" #. module: document_ics #: field:document.directory.ics.fields,field_id:0 @@ -53,7 +53,7 @@ msgstr "Champ Open ERP" #. module: document_ics #: view:document.ics.crm.wizard:0 msgid "Next" -msgstr "Suivant" +msgstr "" #. module: document_ics #: field:document.directory.ics.fields,content_id:0 @@ -63,7 +63,7 @@ msgstr "Contenu" #. module: document_ics #: field:document.ics.crm.wizard,meeting:0 msgid "Calendar of Meetings" -msgstr "Calendrier des Rendez Vous" +msgstr "" #. module: document_ics #: model:crm.case.section,name:document_ics.section_meeting @@ -78,7 +78,7 @@ msgstr "url" #. module: document_ics #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: document_ics #: help:document.ics.crm.wizard,bugs:0 @@ -93,7 +93,7 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtend" -msgstr "Date de fin" +msgstr "dtend" #. module: document_ics #: help:document.ics.crm.wizard,jobs:0 @@ -108,7 +108,7 @@ msgstr "description" #. module: document_ics #: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories msgid "Configure Calendars for Sections " -msgstr "Configurer les Calendriers pour ces Sections" +msgstr "" #. module: document_ics #: help:document.ics.crm.wizard,opportunity:0 @@ -143,7 +143,7 @@ msgstr "" #. module: document_ics #: model:ir.module.module,shortdesc:document_ics.module_meta_information msgid "Support for iCal based on Document Management System" -msgstr "Support du format iCal basé sur la gestion documentaire" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -228,7 +228,7 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstart" -msgstr "date de début" +msgstr "dtstart" #. module: document_ics #: field:document.ics.crm.wizard,phonecall:0 @@ -248,7 +248,7 @@ msgstr "catégories" #. module: document_ics #: field:document.ics.crm.wizard,lead:0 msgid "Prospect" -msgstr "Prospect" +msgstr "" #. module: document_ics #: view:document.ics.crm.wizard:0 @@ -258,17 +258,17 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "created" -msgstr "crée" +msgstr "créé" #. module: document_ics #: field:crm.case,code:0 msgid "Calendar Code" -msgstr "Code Calendrier" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "summary" -msgstr "sommaire" +msgstr "résumé" #. module: document_ics #: model:ir.model,name:document_ics.model_document_ics_crm_wizard @@ -278,7 +278,7 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "attendee" -msgstr "attendue" +msgstr "Participant" #. module: document_ics #: model:ir.model,name:document_ics.model_document_directory_ics_fields @@ -293,7 +293,7 @@ msgstr "Correspondance des champs" #. module: document_ics #: view:document.ics.crm.wizard:0 msgid "Cancel" -msgstr "Annulé" +msgstr "" #. module: document_ics #: field:document.ics.crm.wizard,opportunity:0 @@ -303,5 +303,5 @@ msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 msgid "dtstamp" -msgstr "dtstamp" +msgstr "" diff --git a/addons/document_ics/i18n/hr_HR.po b/addons/document_ics/i18n/hr_HR.po index 572a33392cf..12b524aeeb6 100644 --- a/addons/document_ics/i18n/hr_HR.po +++ b/addons/document_ics/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/hu_HU.po b/addons/document_ics/i18n/hu_HU.po index e9928e2e2ca..310d87c5be2 100644 --- a/addons/document_ics/i18n/hu_HU.po +++ b/addons/document_ics/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/id_ID.po b/addons/document_ics/i18n/id_ID.po index 31fbb4059b2..fbeec2d60af 100644 --- a/addons/document_ics/i18n/id_ID.po +++ b/addons/document_ics/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/it_IT.po b/addons/document_ics/i18n/it_IT.po index aa34def074a..d07baf8d2b6 100644 --- a/addons/document_ics/i18n/it_IT.po +++ b/addons/document_ics/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/lt_LT.po b/addons/document_ics/i18n/lt_LT.po index 015bd2f4890..394a7f8a2c3 100644 --- a/addons/document_ics/i18n/lt_LT.po +++ b/addons/document_ics/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/nl_BE.po b/addons/document_ics/i18n/nl_BE.po index 0961066b156..73f87aad775 100644 --- a/addons/document_ics/i18n/nl_BE.po +++ b/addons/document_ics/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/nl_NL.po b/addons/document_ics/i18n/nl_NL.po index fcd5acf9a58..2c1926076a5 100644 --- a/addons/document_ics/i18n/nl_NL.po +++ b/addons/document_ics/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/pl_PL.po b/addons/document_ics/i18n/pl_PL.po index 7ecb80a2c19..a3d350d26df 100644 --- a/addons/document_ics/i18n/pl_PL.po +++ b/addons/document_ics/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "Obiekt" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/pt_BR.po b/addons/document_ics/i18n/pt_BR.po index e52590ddf1c..f1d1f09759d 100644 --- a/addons/document_ics/i18n/pt_BR.po +++ b/addons/document_ics/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/pt_PT.po b/addons/document_ics/i18n/pt_PT.po index b7936b89e7d..493e459077d 100644 --- a/addons/document_ics/i18n/pt_PT.po +++ b/addons/document_ics/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "Objecto" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/ro_RO.po b/addons/document_ics/i18n/ro_RO.po index 2ef0f294719..2389ba5c857 100644 --- a/addons/document_ics/i18n/ro_RO.po +++ b/addons/document_ics/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/ru_RU.po b/addons/document_ics/i18n/ru_RU.po index ceecf45a678..a4937249553 100644 --- a/addons/document_ics/i18n/ru_RU.po +++ b/addons/document_ics/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/sl_SL.po b/addons/document_ics/i18n/sl_SL.po index 86755c2704b..30c3700158e 100644 --- a/addons/document_ics/i18n/sl_SL.po +++ b/addons/document_ics/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/cs_CS.po b/addons/document_ics/i18n/sq_AL.po similarity index 96% rename from addons/document_ics/i18n/cs_CS.po rename to addons/document_ics/i18n/sq_AL.po index 32d44748333..a3e8bf97ef8 100644 --- a/addons/document_ics/i18n/cs_CS.po +++ b/addons/document_ics/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/sv_SE.po b/addons/document_ics/i18n/sv_SE.po index 805e97f3a37..9009dbbe685 100644 --- a/addons/document_ics/i18n/sv_SE.po +++ b/addons/document_ics/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/tr_TR.po b/addons/document_ics/i18n/tr_TR.po index 54bb950fa48..d3f3e1dff04 100644 --- a/addons/document_ics/i18n/tr_TR.po +++ b/addons/document_ics/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/uk_UK.po b/addons/document_ics/i18n/uk_UA.po similarity index 96% rename from addons/document_ics/i18n/uk_UK.po rename to addons/document_ics/i18n/uk_UA.po index be796d51e2d..94277e0c9b0 100644 --- a/addons/document_ics/i18n/uk_UK.po +++ b/addons/document_ics/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/sv_SV.po b/addons/document_ics/i18n/vi_VN.po similarity index 95% rename from addons/document_ics/i18n/sv_SV.po rename to addons/document_ics/i18n/vi_VN.po index ae3d389f2e9..d8a1d2b1c91 100644 --- a/addons/document_ics/i18n/sv_SV.po +++ b/addons/document_ics/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: document_ics #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: document_ics #: selection:document.directory.ics.fields,name:0 @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/zh_CN.po b/addons/document_ics/i18n/zh_CN.po index 0e5e080ddc5..e628431db84 100644 --- a/addons/document_ics/i18n/zh_CN.po +++ b/addons/document_ics/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/document_ics/i18n/zh_TW.po b/addons/document_ics/i18n/zh_TW.po index 3086f984458..e28ace5500b 100644 --- a/addons/document_ics/i18n/zh_TW.po +++ b/addons/document_ics/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -135,11 +135,6 @@ msgstr "" msgid "Object" msgstr "" -#. module: document_ics -#: model:document.directory,name:document_ics.dir_calendars -msgid "Calendars" -msgstr "" - #. module: document_ics #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive sections." diff --git a/addons/event/i18n/ar_AR.po b/addons/event/i18n/ar_AR.po index 250df59231c..32232e6c726 100644 --- a/addons/event/i18n/ar_AR.po +++ b/addons/event/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/bg_BG.po b/addons/event/i18n/bg_BG.po index 328d753c660..8c7e3c04415 100644 --- a/addons/event/i18n/bg_BG.po +++ b/addons/event/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/bs_BS.po b/addons/event/i18n/bs_BS.po index 0d5bb639687..dceaadd418c 100644 --- a/addons/event/i18n/bs_BS.po +++ b/addons/event/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/ca_ES.po b/addons/event/i18n/ca_ES.po index 8fe40b1dfa2..45cafdea61c 100644 --- a/addons/event/i18n/ca_ES.po +++ b/addons/event/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/cs_CZ.po b/addons/event/i18n/cs_CZ.po index 34afbf9304b..04aee72b24c 100644 --- a/addons/event/i18n/cs_CZ.po +++ b/addons/event/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/de_DE.po b/addons/event/i18n/de_DE.po index d5f4c072765..281e0eded2c 100644 --- a/addons/event/i18n/de_DE.po +++ b/addons/event/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/es_AR.po b/addons/event/i18n/es_AR.po index a1353d3bada..c3667956938 100644 --- a/addons/event/i18n/es_AR.po +++ b/addons/event/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/es_ES.po b/addons/event/i18n/es_ES.po index a9a3e339bdf..411ea5cb8e9 100644 --- a/addons/event/i18n/es_ES.po +++ b/addons/event/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/et_EE.po b/addons/event/i18n/et_EE.po index 9ae773e1a54..270a7870a27 100644 --- a/addons/event/i18n/et_EE.po +++ b/addons/event/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+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 63704a6d3e3..a709bf61863 100644 --- a/addons/event/i18n/event.pot +++ b/addons/event/i18n/event.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/fi_FI.po b/addons/event/i18n/fi_FI.po index 5490afbc53c..365c5aa35b8 100644 --- a/addons/event/i18n/fi_FI.po +++ b/addons/event/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/fr_FR.po b/addons/event/i18n/fr_FR.po index 76a0e336cb0..e2176744ea1 100644 --- a/addons/event/i18n/fr_FR.po +++ b/addons/event/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" #. module: event #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: event #: field:event.event,mail_registr:0 @@ -254,7 +254,7 @@ msgstr "" #. module: event #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "Erreur: l'unité de vente doit appartenir à une catégorie différente que l'unité de mesure" +msgstr "Erreur : l'Unité Secondaire doit appartenir à une autre catégorie que l'Unité de Mesure." #. module: event #: view:event.event:0 @@ -332,7 +332,7 @@ msgstr "" #. module: event #: constraint:product.template:0 msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "Erreur: l'unité de mesure par défaut et l'unité de mesure d'achat doivent faire partie de la même catégorie" +msgstr "Erreur: l'UdM par défaut et l'UdM d'achat doivent appartenir à la même catégorie." #. module: event #: wizard_field:event.reg_make_invoice,init,inv_created:0 diff --git a/addons/event/i18n/hr_HR.po b/addons/event/i18n/hr_HR.po index 81ba9f48d78..23f09cfd6a0 100644 --- a/addons/event/i18n/hr_HR.po +++ b/addons/event/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/hu_HU.po b/addons/event/i18n/hu_HU.po index 0675547b004..a7b133f902b 100644 --- a/addons/event/i18n/hu_HU.po +++ b/addons/event/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/id_ID.po b/addons/event/i18n/id_ID.po index 1ccc498111f..305d7c92c27 100644 --- a/addons/event/i18n/id_ID.po +++ b/addons/event/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/it_IT.po b/addons/event/i18n/it_IT.po index 4a7d5cd968e..04e68eb8995 100644 --- a/addons/event/i18n/it_IT.po +++ b/addons/event/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/lt_LT.po b/addons/event/i18n/lt_LT.po index 1be2898fd83..65f3dcad0a6 100644 --- a/addons/event/i18n/lt_LT.po +++ b/addons/event/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/nl_BE.po b/addons/event/i18n/nl_BE.po index 4abfaf80194..be962ecb478 100644 --- a/addons/event/i18n/nl_BE.po +++ b/addons/event/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/nl_NL.po b/addons/event/i18n/nl_NL.po index e89a49b4477..57294098fb0 100644 --- a/addons/event/i18n/nl_NL.po +++ b/addons/event/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/pl_PL.po b/addons/event/i18n/pl_PL.po index 24833da3022..30b9725c704 100644 --- a/addons/event/i18n/pl_PL.po +++ b/addons/event/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/pt_BR.po b/addons/event/i18n/pt_BR.po index 37971019b6d..9629b329992 100644 --- a/addons/event/i18n/pt_BR.po +++ b/addons/event/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/pt_PT.po b/addons/event/i18n/pt_PT.po index 4db812f76e8..9bb540edfc7 100644 --- a/addons/event/i18n/pt_PT.po +++ b/addons/event/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/ro_RO.po b/addons/event/i18n/ro_RO.po index df4b0eb9357..d7f62132794 100644 --- a/addons/event/i18n/ro_RO.po +++ b/addons/event/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/ru_RU.po b/addons/event/i18n/ru_RU.po index 36cc4a76a43..12e1e7c9845 100644 --- a/addons/event/i18n/ru_RU.po +++ b/addons/event/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/sl_SL.po b/addons/event/i18n/sl_SL.po index ebc411785e3..09220569443 100644 --- a/addons/event/i18n/sl_SL.po +++ b/addons/event/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/cs_CS.po b/addons/event/i18n/sq_AL.po similarity index 98% rename from addons/event/i18n/cs_CS.po rename to addons/event/i18n/sq_AL.po index b87a77a45b8..54ba860b712 100644 --- a/addons/event/i18n/cs_CS.po +++ b/addons/event/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -239,7 +239,7 @@ msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_config msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: event #: constraint:ir.ui.view:0 @@ -374,7 +374,7 @@ msgstr "" #: view:event.event:0 #: model:ir.actions.act_window,name:event.action_event_view msgid "Events" -msgstr "Akce" +msgstr "" #. module: event #: field:event.registration,nb_register:0 diff --git a/addons/event/i18n/sv_SE.po b/addons/event/i18n/sv_SE.po index 81950a039af..8810511eaa5 100644 --- a/addons/event/i18n/sv_SE.po +++ b/addons/event/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/tr_TR.po b/addons/event/i18n/tr_TR.po index c233f2a4862..013f20b7272 100644 --- a/addons/event/i18n/tr_TR.po +++ b/addons/event/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/uk_UK.po b/addons/event/i18n/uk_UA.po similarity index 98% rename from addons/event/i18n/uk_UK.po rename to addons/event/i18n/uk_UA.po index 0e842628143..98008e11e69 100644 --- a/addons/event/i18n/uk_UK.po +++ b/addons/event/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/sv_SV.po b/addons/event/i18n/vi_VN.po similarity index 97% rename from addons/event/i18n/sv_SV.po rename to addons/event/i18n/vi_VN.po index 3140fb33e68..2603ca3936c 100644 --- a/addons/event/i18n/sv_SV.po +++ b/addons/event/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -239,7 +239,7 @@ msgstr "" #. module: event #: model:ir.ui.menu,name:event.menu_event_config msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: event #: constraint:ir.ui.view:0 @@ -362,7 +362,7 @@ msgstr "" #. module: event #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: event #: field:event.registration,event_id:0 @@ -374,7 +374,7 @@ msgstr "" #: view:event.event:0 #: model:ir.actions.act_window,name:event.action_event_view msgid "Events" -msgstr "Händelser" +msgstr "" #. module: event #: field:event.registration,nb_register:0 diff --git a/addons/event/i18n/zh_CN.po b/addons/event/i18n/zh_CN.po index 0a1eaf0de3e..f8b7ad95221 100644 --- a/addons/event/i18n/zh_CN.po +++ b/addons/event/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/zh_TW.po b/addons/event/i18n/zh_TW.po index 1eb6b6736d9..4c7f1ea482a 100644 --- a/addons/event/i18n/zh_TW.po +++ b/addons/event/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/ar_AR.po b/addons/event_project/i18n/ar_AR.po index 960d9e56397..44e2ba29c04 100644 --- a/addons/event_project/i18n/ar_AR.po +++ b/addons/event_project/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/bg_BG.po b/addons/event_project/i18n/bg_BG.po index ad340e1c62e..17f0d40d863 100644 --- a/addons/event_project/i18n/bg_BG.po +++ b/addons/event_project/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/bs_BS.po b/addons/event_project/i18n/bs_BS.po index 59b40e8be7e..0bb5ab74f9f 100644 --- a/addons/event_project/i18n/bs_BS.po +++ b/addons/event_project/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/ca_ES.po b/addons/event_project/i18n/ca_ES.po index 5f00627d607..87b74b18c4e 100644 --- a/addons/event_project/i18n/ca_ES.po +++ b/addons/event_project/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/cs_CZ.po b/addons/event_project/i18n/cs_CZ.po index d8b7f79f88d..4cec0b9f382 100644 --- a/addons/event_project/i18n/cs_CZ.po +++ b/addons/event_project/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/de_DE.po b/addons/event_project/i18n/de_DE.po index 0f815345b2f..16a15f2cd1f 100644 --- a/addons/event_project/i18n/de_DE.po +++ b/addons/event_project/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/es_AR.po b/addons/event_project/i18n/es_AR.po index 68839e04028..129b0e9aa75 100644 --- a/addons/event_project/i18n/es_AR.po +++ b/addons/event_project/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/es_ES.po b/addons/event_project/i18n/es_ES.po index 3058fdcc760..5279d451dca 100644 --- a/addons/event_project/i18n/es_ES.po +++ b/addons/event_project/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/et_EE.po b/addons/event_project/i18n/et_EE.po index 309490faa06..fa1ba9c9359 100644 --- a/addons/event_project/i18n/et_EE.po +++ b/addons/event_project/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/event_project.pot b/addons/event_project/i18n/event_project.pot index 983bb316084..42243bd4c5b 100644 --- a/addons/event_project/i18n/event_project.pot +++ b/addons/event_project/i18n/event_project.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/fi_FI.po b/addons/event_project/i18n/fi_FI.po index d01b8a829bf..ed7ce88d8a1 100644 --- a/addons/event_project/i18n/fi_FI.po +++ b/addons/event_project/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/fr_FR.po b/addons/event_project/i18n/fr_FR.po index 05d25711a29..5aa39aa3ee8 100644 --- a/addons/event_project/i18n/fr_FR.po +++ b/addons/event_project/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/hr_HR.po b/addons/event_project/i18n/hr_HR.po index 041901c826d..a82636081c4 100644 --- a/addons/event_project/i18n/hr_HR.po +++ b/addons/event_project/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/hu_HU.po b/addons/event_project/i18n/hu_HU.po index 6f408e1b056..d3d507773f4 100644 --- a/addons/event_project/i18n/hu_HU.po +++ b/addons/event_project/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/id_ID.po b/addons/event_project/i18n/id_ID.po index 5682e464cca..2c158b9e315 100644 --- a/addons/event_project/i18n/id_ID.po +++ b/addons/event_project/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/it_IT.po b/addons/event_project/i18n/it_IT.po index b4c84b3b88d..b57284d48ef 100644 --- a/addons/event_project/i18n/it_IT.po +++ b/addons/event_project/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/lt_LT.po b/addons/event_project/i18n/lt_LT.po index 89bd1128cf7..3ee6b639160 100644 --- a/addons/event_project/i18n/lt_LT.po +++ b/addons/event_project/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/nl_BE.po b/addons/event_project/i18n/nl_BE.po index 27f0e0ef4aa..280131bae23 100644 --- a/addons/event_project/i18n/nl_BE.po +++ b/addons/event_project/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/nl_NL.po b/addons/event_project/i18n/nl_NL.po index 52d22a41ec2..377eaf7a692 100644 --- a/addons/event_project/i18n/nl_NL.po +++ b/addons/event_project/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/pl_PL.po b/addons/event_project/i18n/pl_PL.po index d0ce0862350..3a25dc428ba 100644 --- a/addons/event_project/i18n/pl_PL.po +++ b/addons/event_project/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/pt_BR.po b/addons/event_project/i18n/pt_BR.po index 0909509f80d..3206030fed6 100644 --- a/addons/event_project/i18n/pt_BR.po +++ b/addons/event_project/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/pt_PT.po b/addons/event_project/i18n/pt_PT.po index 093bf6105ed..c718d8610f8 100644 --- a/addons/event_project/i18n/pt_PT.po +++ b/addons/event_project/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/ro_RO.po b/addons/event_project/i18n/ro_RO.po index 2e6d5db7370..caef8497906 100644 --- a/addons/event_project/i18n/ro_RO.po +++ b/addons/event_project/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/ru_RU.po b/addons/event_project/i18n/ru_RU.po index 4e10f0cf0e5..dd5e134d90c 100644 --- a/addons/event_project/i18n/ru_RU.po +++ b/addons/event_project/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/sl_SL.po b/addons/event_project/i18n/sl_SL.po index 3780861bafa..4b93b555b3c 100644 --- a/addons/event_project/i18n/sl_SL.po +++ b/addons/event_project/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/sv_SV.po b/addons/event_project/i18n/sq_AL.po similarity index 92% rename from addons/event_project/i18n/sv_SV.po rename to addons/event_project/i18n/sq_AL.po index e717cf3bffd..25cae37a20e 100644 --- a/addons/event_project/i18n/sv_SV.po +++ b/addons/event_project/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/sv_SE.po b/addons/event_project/i18n/sv_SE.po index aa87a010a42..d194ac5d880 100644 --- a/addons/event_project/i18n/sv_SE.po +++ b/addons/event_project/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/tr_TR.po b/addons/event_project/i18n/tr_TR.po index 614ca37b4c5..dfde510801e 100644 --- a/addons/event_project/i18n/tr_TR.po +++ b/addons/event_project/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/uk_UK.po b/addons/event_project/i18n/uk_UA.po similarity index 92% rename from addons/event_project/i18n/uk_UK.po rename to addons/event_project/i18n/uk_UA.po index a86f8048d00..6a775c0bdf0 100644 --- a/addons/event_project/i18n/uk_UK.po +++ b/addons/event_project/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/cs_CS.po b/addons/event_project/i18n/vi_VN.po similarity index 92% rename from addons/event_project/i18n/cs_CS.po rename to addons/event_project/i18n/vi_VN.po index 73e92b41467..d984b8658ab 100644 --- a/addons/event_project/i18n/cs_CS.po +++ b/addons/event_project/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/zh_CN.po b/addons/event_project/i18n/zh_CN.po index 6cffc71113b..5ca46cd4efd 100644 --- a/addons/event_project/i18n/zh_CN.po +++ b/addons/event_project/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/zh_TW.po b/addons/event_project/i18n/zh_TW.po index 878d1c52dc7..41f50286568 100644 --- a/addons/event_project/i18n/zh_TW.po +++ b/addons/event_project/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/ar_AR.po b/addons/google_map/i18n/ar_AR.po index 70a6e494bd1..2428aee45e5 100644 --- a/addons/google_map/i18n/ar_AR.po +++ b/addons/google_map/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/bg_BG.po b/addons/google_map/i18n/bg_BG.po index a9e7ba169f2..e0f383af103 100644 --- a/addons/google_map/i18n/bg_BG.po +++ b/addons/google_map/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/bs_BS.po b/addons/google_map/i18n/bs_BS.po index 34309a42b75..9ed00011864 100644 --- a/addons/google_map/i18n/bs_BS.po +++ b/addons/google_map/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/ca_ES.po b/addons/google_map/i18n/ca_ES.po index a699827ea42..c302bca16d9 100644 --- a/addons/google_map/i18n/ca_ES.po +++ b/addons/google_map/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/cs_CZ.po b/addons/google_map/i18n/cs_CZ.po index 89497a38750..ed9ab42aef3 100644 --- a/addons/google_map/i18n/cs_CZ.po +++ b/addons/google_map/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/de_DE.po b/addons/google_map/i18n/de_DE.po index 0ebc8fc1537..2935ad9d1b7 100644 --- a/addons/google_map/i18n/de_DE.po +++ b/addons/google_map/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/es_AR.po b/addons/google_map/i18n/es_AR.po index 5ab9f578d06..4fa598441e5 100644 --- a/addons/google_map/i18n/es_AR.po +++ b/addons/google_map/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/es_ES.po b/addons/google_map/i18n/es_ES.po index e0437e5cbb7..9d8b40af8c9 100644 --- a/addons/google_map/i18n/es_ES.po +++ b/addons/google_map/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/et_EE.po b/addons/google_map/i18n/et_EE.po index f3038b1393d..9077f66685b 100644 --- a/addons/google_map/i18n/et_EE.po +++ b/addons/google_map/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/fi_FI.po b/addons/google_map/i18n/fi_FI.po index 74621408ab1..0721cb5bde4 100644 --- a/addons/google_map/i18n/fi_FI.po +++ b/addons/google_map/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/fr_FR.po b/addons/google_map/i18n/fr_FR.po index bd5fd9bef96..6ff4a3733f4 100644 --- a/addons/google_map/i18n/fr_FR.po +++ b/addons/google_map/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+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 81968884a0f..7fad245a1cf 100644 --- a/addons/google_map/i18n/google_map.pot +++ b/addons/google_map/i18n/google_map.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/hr_HR.po b/addons/google_map/i18n/hr_HR.po index 33cf229956a..11f8954f41b 100644 --- a/addons/google_map/i18n/hr_HR.po +++ b/addons/google_map/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/hu_HU.po b/addons/google_map/i18n/hu_HU.po index 6c297ef51ef..36d5f0961ab 100644 --- a/addons/google_map/i18n/hu_HU.po +++ b/addons/google_map/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/id_ID.po b/addons/google_map/i18n/id_ID.po index f5be9d300ec..c92380ddfdd 100644 --- a/addons/google_map/i18n/id_ID.po +++ b/addons/google_map/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/it_IT.po b/addons/google_map/i18n/it_IT.po index f98e5770df6..ca106468cec 100644 --- a/addons/google_map/i18n/it_IT.po +++ b/addons/google_map/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/lt_LT.po b/addons/google_map/i18n/lt_LT.po index 843a3593325..b78e9188359 100644 --- a/addons/google_map/i18n/lt_LT.po +++ b/addons/google_map/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/lv_LV.po b/addons/google_map/i18n/lv_LV.po index 306476d2a0d..e6e2084950e 100644 --- a/addons/google_map/i18n/lv_LV.po +++ b/addons/google_map/i18n/lv_LV.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:04+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: google_map diff --git a/addons/google_map/i18n/nl_BE.po b/addons/google_map/i18n/nl_BE.po index 46d5611c8f1..07e13626ebd 100644 --- a/addons/google_map/i18n/nl_BE.po +++ b/addons/google_map/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/nl_NL.po b/addons/google_map/i18n/nl_NL.po index 3598c000288..b98fc03f74c 100644 --- a/addons/google_map/i18n/nl_NL.po +++ b/addons/google_map/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/pl_PL.po b/addons/google_map/i18n/pl_PL.po index 73fde317c62..ede882ddf68 100644 --- a/addons/google_map/i18n/pl_PL.po +++ b/addons/google_map/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/pt_BR.po b/addons/google_map/i18n/pt_BR.po index e8782569a51..28d68c4c8d0 100644 --- a/addons/google_map/i18n/pt_BR.po +++ b/addons/google_map/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/pt_PT.po b/addons/google_map/i18n/pt_PT.po index 8575b8bcdf7..b655f3a434f 100644 --- a/addons/google_map/i18n/pt_PT.po +++ b/addons/google_map/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/ro_RO.po b/addons/google_map/i18n/ro_RO.po index 5639f5c7c04..dd079682a5b 100644 --- a/addons/google_map/i18n/ro_RO.po +++ b/addons/google_map/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/ru_RU.po b/addons/google_map/i18n/ru_RU.po index 931397d780e..e942eec3581 100644 --- a/addons/google_map/i18n/ru_RU.po +++ b/addons/google_map/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/sl_SL.po b/addons/google_map/i18n/sl_SL.po index 611edb4a121..8fad1f136f8 100644 --- a/addons/google_map/i18n/sl_SL.po +++ b/addons/google_map/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/sv_SV.po b/addons/google_map/i18n/sq_AL.po similarity index 87% rename from addons/google_map/i18n/sv_SV.po rename to addons/google_map/i18n/sq_AL.po index 6751c5df579..a1774df6af9 100644 --- a/addons/google_map/i18n/sv_SV.po +++ b/addons/google_map/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/sv_SE.po b/addons/google_map/i18n/sv_SE.po index b5dd05ec06f..3e02b0a3b64 100644 --- a/addons/google_map/i18n/sv_SE.po +++ b/addons/google_map/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/tr_TR.po b/addons/google_map/i18n/tr_TR.po index 5ba273eaa53..084fec8b553 100644 --- a/addons/google_map/i18n/tr_TR.po +++ b/addons/google_map/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/uk_UK.po b/addons/google_map/i18n/uk_UA.po similarity index 88% rename from addons/google_map/i18n/uk_UK.po rename to addons/google_map/i18n/uk_UA.po index 46316c5844d..3175aa1bbec 100644 --- a/addons/google_map/i18n/uk_UK.po +++ b/addons/google_map/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/cs_CS.po b/addons/google_map/i18n/vi_VN.po similarity index 87% rename from addons/google_map/i18n/cs_CS.po rename to addons/google_map/i18n/vi_VN.po index 722b430595e..3716bc9b829 100644 --- a/addons/google_map/i18n/cs_CS.po +++ b/addons/google_map/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/zh_CN.po b/addons/google_map/i18n/zh_CN.po index 460488bdc95..f4fbb8f04a3 100644 --- a/addons/google_map/i18n/zh_CN.po +++ b/addons/google_map/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/zh_TW.po b/addons/google_map/i18n/zh_TW.po index 12b3f82fb75..6d471ecba8f 100644 --- a/addons/google_map/i18n/zh_TW.po +++ b/addons/google_map/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/ar_AR.po b/addons/hr/i18n/ar_AR.po index b319b079011..ff1c7b07a88 100644 --- a/addons/hr/i18n/ar_AR.po +++ b/addons/hr/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/bg_BG.po b/addons/hr/i18n/bg_BG.po index 821b639529e..3ac40665045 100644 --- a/addons/hr/i18n/bg_BG.po +++ b/addons/hr/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/bs_BS.po b/addons/hr/i18n/bs_BS.po index c9f2ebe9ef2..6879b003663 100644 --- a/addons/hr/i18n/bs_BS.po +++ b/addons/hr/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/ca_ES.po b/addons/hr/i18n/ca_ES.po index 14499e32f6f..df90ac61cfd 100644 --- a/addons/hr/i18n/ca_ES.po +++ b/addons/hr/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/cs_CZ.po b/addons/hr/i18n/cs_CZ.po index bbcb18eddd7..6ee8a82c332 100644 --- a/addons/hr/i18n/cs_CZ.po +++ b/addons/hr/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/de_DE.po b/addons/hr/i18n/de_DE.po index d7f1fee79de..82d227161b8 100644 --- a/addons/hr/i18n/de_DE.po +++ b/addons/hr/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/es_AR.po b/addons/hr/i18n/es_AR.po index be38dceb9f3..578f1784619 100644 --- a/addons/hr/i18n/es_AR.po +++ b/addons/hr/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/es_ES.po b/addons/hr/i18n/es_ES.po index 2140a8b7949..615bb4f3189 100644 --- a/addons/hr/i18n/es_ES.po +++ b/addons/hr/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/et_EE.po b/addons/hr/i18n/et_EE.po index cb7a63b1df5..7cd5b66a022 100644 --- a/addons/hr/i18n/et_EE.po +++ b/addons/hr/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/fi_FI.po b/addons/hr/i18n/fi_FI.po index 2e4333c03b6..ad9fce8f42e 100644 --- a/addons/hr/i18n/fi_FI.po +++ b/addons/hr/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/fr_FR.po b/addons/hr/i18n/fr_FR.po index 7a8fa4c9d1c..a6cc437478c 100644 --- a/addons/hr/i18n/fr_FR.po +++ b/addons/hr/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgstr "Parents" #. module: hr #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: hr #: view:hr.department:0 @@ -119,12 +119,12 @@ msgstr "Configuration" #. module: hr #: selection:hr.employee,marital:0 msgid "Unmaried" -msgstr "Célibataire" +msgstr "Non Marié(e)" #. module: hr #: selection:hr.employee,gender:0 msgid "Female" -msgstr "Femme" +msgstr "Féminin" #. module: hr #: view:hr.timesheet.group:0 @@ -140,7 +140,7 @@ msgstr "Structure des employés" #. module: hr #: view:hr.employee:0 msgid "Social IDs" -msgstr "N° sécurité sociale" +msgstr "Numéros sociaux" #. module: hr #: field:hr.employee,work_phone:0 @@ -150,7 +150,7 @@ msgstr "Téléphone professionnel" #. module: hr #: field:hr.employee.category,child_ids:0 msgid "Child Categories" -msgstr "Catégories enfant" +msgstr "Catégories filles" #. module: hr #: field:hr.employee,work_location:0 @@ -203,12 +203,12 @@ msgstr "XML non valide pour l'architecture de la vue" #. module: hr #: selection:hr.employee,marital:0 msgid "Divorced" -msgstr "Divorcé" +msgstr "Divorcé(e)" #. module: hr #: field:hr.employee.category,parent_id:0 msgid "Parent Category" -msgstr "Catégorie parent" +msgstr "Catégorie Parente" #. module: hr #: model:ir.actions.act_window,name:hr.open_module_tree_department @@ -226,7 +226,7 @@ msgstr "Contrat de travail de l'employé" #. module: hr #: selection:hr.employee,marital:0 msgid "Maried" -msgstr "Marié" +msgstr "Marié(e)" #. module: hr #: field:hr.timesheet,tgroup_id:0 @@ -236,7 +236,7 @@ msgstr "Groupe de feuille de présence" #. module: hr #: selection:hr.employee,gender:0 msgid "Male" -msgstr "Homme" +msgstr "Masculin" #. module: hr #: model:process.transition,note:hr.process_transition_employeeuser0 @@ -283,7 +283,7 @@ msgstr "Informations sur le contact" #. module: hr #: view:hr.employee:0 msgid "Status" -msgstr "statut" +msgstr "État" #. module: hr #: selection:hr.timesheet,dayofweek:0 @@ -355,7 +355,7 @@ msgstr "Date début" #. module: hr #: field:res.users,parent_id:0 msgid "Parent Users" -msgstr "Utilisateurs parents" +msgstr "Utilisateurs Parents" #. module: hr #: field:hr.employee,address_id:0 @@ -407,12 +407,12 @@ msgstr "Autre" #. module: hr #: view:hr.employee.category:0 msgid "Employees Categories" -msgstr "Catégorie d'employé" +msgstr "Catégories des employés" #. module: hr #: field:hr.employee,address_home_id:0 msgid "Home Address" -msgstr "Adresse personnelle" +msgstr "Adresse Personnelle" #. module: hr #: view:hr.department:0 @@ -459,7 +459,7 @@ msgstr "Départements fils" #. module: hr #: view:hr.employee:0 msgid "Job Information" -msgstr "Information sur l'emploi" +msgstr "Information sur l'Emploi" #. module: hr #: model:process.node,note:hr.process_node_employeecontact0 diff --git a/addons/hr/i18n/hr.pot b/addons/hr/i18n/hr.pot index 2e07fa5af55..c9d60755464 100644 --- a/addons/hr/i18n/hr.pot +++ b/addons/hr/i18n/hr.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/hr_HR.po b/addons/hr/i18n/hr_HR.po index ec73cef5fa9..8fa48bd1ebe 100644 --- a/addons/hr/i18n/hr_HR.po +++ b/addons/hr/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/hu_HU.po b/addons/hr/i18n/hu_HU.po index 23009828ace..04ee92cac9c 100644 --- a/addons/hr/i18n/hu_HU.po +++ b/addons/hr/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/id_ID.po b/addons/hr/i18n/id_ID.po index 4a82195e255..89e6380bcd0 100644 --- a/addons/hr/i18n/id_ID.po +++ b/addons/hr/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/it_IT.po b/addons/hr/i18n/it_IT.po index ef39fb58906..57e309dcc04 100644 --- a/addons/hr/i18n/it_IT.po +++ b/addons/hr/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/lt_LT.po b/addons/hr/i18n/lt_LT.po index 8c244091b90..d1169762ae4 100644 --- a/addons/hr/i18n/lt_LT.po +++ b/addons/hr/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/nl_BE.po b/addons/hr/i18n/nl_BE.po index 2ce7e0516f2..75d9dcff05c 100644 --- a/addons/hr/i18n/nl_BE.po +++ b/addons/hr/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/nl_NL.po b/addons/hr/i18n/nl_NL.po index 12f7dde947e..01a4a4efe4e 100644 --- a/addons/hr/i18n/nl_NL.po +++ b/addons/hr/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/pl_PL.po b/addons/hr/i18n/pl_PL.po index 275f3877c34..c67eedaf035 100644 --- a/addons/hr/i18n/pl_PL.po +++ b/addons/hr/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/pt_BR.po b/addons/hr/i18n/pt_BR.po index 15a189a1a01..4c82d3b9245 100644 --- a/addons/hr/i18n/pt_BR.po +++ b/addons/hr/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/pt_PT.po b/addons/hr/i18n/pt_PT.po index 1b7a208e575..81ea92ba0c4 100644 --- a/addons/hr/i18n/pt_PT.po +++ b/addons/hr/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/ro_RO.po b/addons/hr/i18n/ro_RO.po index b073fc88fb0..ab9ecba27b3 100644 --- a/addons/hr/i18n/ro_RO.po +++ b/addons/hr/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" #. module: hr #: view:res.users:0 msgid "Parents" -msgstr "Parinti" +msgstr "Părinți" #. module: hr #: constraint:ir.actions.act_window:0 diff --git a/addons/hr/i18n/ru_RU.po b/addons/hr/i18n/ru_RU.po index 7a2c9f6059c..b635a28492b 100644 --- a/addons/hr/i18n/ru_RU.po +++ b/addons/hr/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/sl_SL.po b/addons/hr/i18n/sl_SL.po index 9bde493cc99..5be9d7f6f3b 100644 --- a/addons/hr/i18n/sl_SL.po +++ b/addons/hr/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/cs_CS.po b/addons/hr/i18n/sq_AL.po similarity index 98% rename from addons/hr/i18n/cs_CS.po rename to addons/hr/i18n/sq_AL.po index bc8ba95994c..39d1f180236 100644 --- a/addons/hr/i18n/cs_CS.po +++ b/addons/hr/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -114,7 +114,7 @@ msgstr "" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_configuration msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: hr #: selection:hr.employee,marital:0 diff --git a/addons/hr/i18n/sv_SE.po b/addons/hr/i18n/sv_SE.po index 2bf3193cbf8..7a91e2e6d6f 100644 --- a/addons/hr/i18n/sv_SE.po +++ b/addons/hr/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/th_TH.po b/addons/hr/i18n/th_TH.po index 78b10247ef1..62732e8bc76 100644 --- a/addons/hr/i18n/th_TH.po +++ b/addons/hr/i18n/th_TH.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:10+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr diff --git a/addons/hr/i18n/tr_TR.po b/addons/hr/i18n/tr_TR.po index ac8f80a6e18..12e8596a71c 100644 --- a/addons/hr/i18n/tr_TR.po +++ b/addons/hr/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/uk_UK.po b/addons/hr/i18n/uk_UA.po similarity index 98% rename from addons/hr/i18n/uk_UK.po rename to addons/hr/i18n/uk_UA.po index d279ecf0fb3..01678d1b485 100644 --- a/addons/hr/i18n/uk_UK.po +++ b/addons/hr/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/sv_SV.po b/addons/hr/i18n/vi_VN.po similarity index 94% rename from addons/hr/i18n/sv_SV.po rename to addons/hr/i18n/vi_VN.po index 985ec652bc8..7ae51289aa3 100644 --- a/addons/hr/i18n/sv_SV.po +++ b/addons/hr/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "" #. module: hr #: selection:hr.timesheet,dayofweek:0 msgid "Sunday" -msgstr "Söndag" +msgstr "" #. module: hr #: view:res.users:0 @@ -76,7 +76,7 @@ msgstr "" #. module: hr #: field:hr.timesheet.group,name:0 msgid "Group name" -msgstr "Gruppnamn" +msgstr "" #. module: hr #: field:hr.department,company_id:0 @@ -87,7 +87,7 @@ msgstr "" #. module: hr #: selection:hr.timesheet,dayofweek:0 msgid "Friday" -msgstr "Fredag" +msgstr "" #. module: hr #: field:hr.department,parent_id:0 @@ -99,12 +99,12 @@ msgstr "" #: view:hr.employee:0 #: field:hr.employee,notes:0 msgid "Notes" -msgstr "Anteckningar" +msgstr "" #. module: hr #: field:hr.timesheet,hour_from:0 msgid "Work from" -msgstr "Arbete från" +msgstr "" #. module: hr #: model:ir.actions.act_window,name:hr.action2 @@ -114,7 +114,7 @@ msgstr "" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_configuration msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: hr #: selection:hr.employee,marital:0 @@ -163,7 +163,7 @@ msgstr "" #: model:ir.model,name:hr.model_hr_employee #: model:process.node,name:hr.process_node_employee0 msgid "Employee" -msgstr "Anställd" +msgstr "" #. module: hr #: field:hr.timesheet.group,manager:0 @@ -252,7 +252,7 @@ msgstr "" #. module: hr #: selection:hr.timesheet,dayofweek:0 msgid "Tuesday" -msgstr "Tisdag" +msgstr "" #. module: hr #: model:ir.model,name:hr.model_hr_department @@ -288,7 +288,7 @@ msgstr "" #. module: hr #: selection:hr.timesheet,dayofweek:0 msgid "Monday" -msgstr "Måndag" +msgstr "" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_tree @@ -299,7 +299,7 @@ msgstr "" #. module: hr #: field:hr.timesheet,dayofweek:0 msgid "Day of week" -msgstr "Veckodag" +msgstr "" #. module: hr #: field:hr.employee,birthday:0 @@ -309,7 +309,7 @@ msgstr "" #. module: hr #: field:hr.employee,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: hr #: constraint:hr.employee:0 @@ -339,7 +339,7 @@ msgstr "" #. module: hr #: selection:hr.timesheet,dayofweek:0 msgid "Wednesday" -msgstr "Onsdag" +msgstr "" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_form @@ -380,7 +380,7 @@ msgstr "" #. module: hr #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: hr #: view:hr.timesheet:0 @@ -392,12 +392,12 @@ msgstr "" #. module: hr #: selection:hr.timesheet,dayofweek:0 msgid "Thursday" -msgstr "Torsdag" +msgstr "" #. module: hr #: field:hr.timesheet,hour_to:0 msgid "Work to" -msgstr "Arbete till" +msgstr "" #. module: hr #: selection:hr.employee,marital:0 @@ -432,7 +432,7 @@ msgstr "" #. module: hr #: field:hr.timesheet,name:0 msgid "Name" -msgstr "Namn" +msgstr "" #. module: hr #: field:hr.employee,gender:0 @@ -481,7 +481,7 @@ msgstr "" #. module: hr #: selection:hr.timesheet,dayofweek:0 msgid "Saturday" -msgstr "Lördag" +msgstr "" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_employee_new diff --git a/addons/hr/i18n/zh_CN.po b/addons/hr/i18n/zh_CN.po index 0e085af2f83..0c6011ce388 100644 --- a/addons/hr/i18n/zh_CN.po +++ b/addons/hr/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/zh_TW.po b/addons/hr/i18n/zh_TW.po index 23cb8dd7611..654d62bf3ec 100644 --- a/addons/hr/i18n/zh_TW.po +++ b/addons/hr/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/ar_AR.po b/addons/hr_attendance/i18n/ar_AR.po index 53db6c5dffc..c405b312d3d 100644 --- a/addons/hr_attendance/i18n/ar_AR.po +++ b/addons/hr_attendance/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/bg_BG.po b/addons/hr_attendance/i18n/bg_BG.po index 4a6019f5621..3ad8ffe9284 100644 --- a/addons/hr_attendance/i18n/bg_BG.po +++ b/addons/hr_attendance/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:42+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/bs_BS.po b/addons/hr_attendance/i18n/bs_BS.po index 6edb466e8fa..19471ec040e 100644 --- a/addons/hr_attendance/i18n/bs_BS.po +++ b/addons/hr_attendance/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/ca_ES.po b/addons/hr_attendance/i18n/ca_ES.po index 68a39a4c72c..1f7f56a8a80 100644 --- a/addons/hr_attendance/i18n/ca_ES.po +++ b/addons/hr_attendance/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/cs_CZ.po b/addons/hr_attendance/i18n/cs_CZ.po index 48e89416b40..4aa55fb514e 100644 --- a/addons/hr_attendance/i18n/cs_CZ.po +++ b/addons/hr_attendance/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/de_DE.po b/addons/hr_attendance/i18n/de_DE.po index cde81655c33..fc3bc95dd17 100644 --- a/addons/hr_attendance/i18n/de_DE.po +++ b/addons/hr_attendance/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/es_AR.po b/addons/hr_attendance/i18n/es_AR.po index 16e0a871b23..9d6d32ae9e2 100644 --- a/addons/hr_attendance/i18n/es_AR.po +++ b/addons/hr_attendance/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/es_ES.po b/addons/hr_attendance/i18n/es_ES.po index 089e159671d..70b88014b56 100644 --- a/addons/hr_attendance/i18n/es_ES.po +++ b/addons/hr_attendance/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/et_EE.po b/addons/hr_attendance/i18n/et_EE.po index 7667013f509..84aaecbe307 100644 --- a/addons/hr_attendance/i18n/et_EE.po +++ b/addons/hr_attendance/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/fi_FI.po b/addons/hr_attendance/i18n/fi_FI.po index 90ab85fe913..80378cadc70 100644 --- a/addons/hr_attendance/i18n/fi_FI.po +++ b/addons/hr_attendance/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/fr_FR.po b/addons/hr_attendance/i18n/fr_FR.po index 92080ec64cd..a1d495d336a 100644 --- a/addons/hr_attendance/i18n/fr_FR.po +++ b/addons/hr_attendance/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ msgstr "Imprimer le Rapport des Erreurs de Pointage" #. module: hr_attendance #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: hr_attendance #: model:ir.actions.wizard,name:hr_attendance.print_week diff --git a/addons/hr_attendance/i18n/hr_HR.po b/addons/hr_attendance/i18n/hr_HR.po index 495766bbdb1..55f7bbbf292 100644 --- a/addons/hr_attendance/i18n/hr_HR.po +++ b/addons/hr_attendance/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/hr_attendance.pot b/addons/hr_attendance/i18n/hr_attendance.pot index d9cdd33ff2c..40dad5e092a 100644 --- a/addons/hr_attendance/i18n/hr_attendance.pot +++ b/addons/hr_attendance/i18n/hr_attendance.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/hu_HU.po b/addons/hr_attendance/i18n/hu_HU.po index 6772ee22bd7..110ea2ee783 100644 --- a/addons/hr_attendance/i18n/hu_HU.po +++ b/addons/hr_attendance/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/id_ID.po b/addons/hr_attendance/i18n/id_ID.po index 1de61c32690..436f1474268 100644 --- a/addons/hr_attendance/i18n/id_ID.po +++ b/addons/hr_attendance/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/it_IT.po b/addons/hr_attendance/i18n/it_IT.po index e5885fa1ea4..2f80627af16 100644 --- a/addons/hr_attendance/i18n/it_IT.po +++ b/addons/hr_attendance/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/lt_LT.po b/addons/hr_attendance/i18n/lt_LT.po index a9cdb8dace0..bb4c714dc27 100644 --- a/addons/hr_attendance/i18n/lt_LT.po +++ b/addons/hr_attendance/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/nl_BE.po b/addons/hr_attendance/i18n/nl_BE.po index 0766015c952..9c34321921a 100644 --- a/addons/hr_attendance/i18n/nl_BE.po +++ b/addons/hr_attendance/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/nl_NL.po b/addons/hr_attendance/i18n/nl_NL.po index 991bd981d84..314ff819a5d 100644 --- a/addons/hr_attendance/i18n/nl_NL.po +++ b/addons/hr_attendance/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/pl_PL.po b/addons/hr_attendance/i18n/pl_PL.po index f27ce615ac1..f9a4d9845a2 100644 --- a/addons/hr_attendance/i18n/pl_PL.po +++ b/addons/hr_attendance/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/pt_BR.po b/addons/hr_attendance/i18n/pt_BR.po index 3135f3f9b8c..893c10b8c34 100644 --- a/addons/hr_attendance/i18n/pt_BR.po +++ b/addons/hr_attendance/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/pt_PT.po b/addons/hr_attendance/i18n/pt_PT.po index 273ce20e2f9..58948356e9b 100644 --- a/addons/hr_attendance/i18n/pt_PT.po +++ b/addons/hr_attendance/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/ro_RO.po b/addons/hr_attendance/i18n/ro_RO.po index 32faf3b04fb..5a42f447a8c 100644 --- a/addons/hr_attendance/i18n/ro_RO.po +++ b/addons/hr_attendance/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/ru_RU.po b/addons/hr_attendance/i18n/ru_RU.po index 2dc5b6de266..ec4fabd3e9f 100644 --- a/addons/hr_attendance/i18n/ru_RU.po +++ b/addons/hr_attendance/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/sl_SL.po b/addons/hr_attendance/i18n/sl_SL.po index 6757d9387c1..999765edb4d 100644 --- a/addons/hr_attendance/i18n/sl_SL.po +++ b/addons/hr_attendance/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/sv_SV.po b/addons/hr_attendance/i18n/sq_AL.po similarity index 96% rename from addons/hr_attendance/i18n/sv_SV.po rename to addons/hr_attendance/i18n/sq_AL.po index 1be84d5b9e0..cbde0449117 100644 --- a/addons/hr_attendance/i18n/sv_SV.po +++ b/addons/hr_attendance/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgstr "" #. module: hr_attendance #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: hr_attendance #: wizard_view:hr.si_so,init:0 @@ -98,7 +98,7 @@ msgstr "" #. module: hr_attendance #: field:hr.attendance,employee_id:0 msgid "Employee" -msgstr "Anställd" +msgstr "" #. module: hr_attendance #: wizard_view:hr.attendance.print_week,init:0 @@ -172,7 +172,7 @@ msgstr "" #. module: hr_attendance #: field:hr.action.reason,name:0 msgid "Reason" -msgstr "Anledning" +msgstr "" #. module: hr_attendance #: constraint:hr.attendance:0 @@ -187,7 +187,7 @@ msgstr "" #. module: hr_attendance #: field:hr.attendance,name:0 msgid "Date" -msgstr "Datum" +msgstr "" #. module: hr_attendance #: selection:hr.attendance.print_month,init,month:0 @@ -293,7 +293,7 @@ msgstr "" #: field:hr.attendance,action:0 #: selection:hr.attendance,action:0 msgid "Action" -msgstr "Åtgärd" +msgstr "" #. module: hr_attendance #: wizard_button:hr.attendance.report,init,print:0 diff --git a/addons/hr_attendance/i18n/sv_SE.po b/addons/hr_attendance/i18n/sv_SE.po index d672c21771f..9b09eb5a543 100644 --- a/addons/hr_attendance/i18n/sv_SE.po +++ b/addons/hr_attendance/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/tr_TR.po b/addons/hr_attendance/i18n/tr_TR.po index 95d7869d7bc..2532019ff25 100644 --- a/addons/hr_attendance/i18n/tr_TR.po +++ b/addons/hr_attendance/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/uk_UK.po b/addons/hr_attendance/i18n/uk_UA.po similarity index 98% rename from addons/hr_attendance/i18n/uk_UK.po rename to addons/hr_attendance/i18n/uk_UA.po index 1faba79aa02..750b6063f50 100644 --- a/addons/hr_attendance/i18n/uk_UK.po +++ b/addons/hr_attendance/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/cs_CS.po b/addons/hr_attendance/i18n/vi_VN.po similarity index 92% rename from addons/hr_attendance/i18n/cs_CS.po rename to addons/hr_attendance/i18n/vi_VN.po index 528997b5c58..2f79b20c2b0 100644 --- a/addons/hr_attendance/i18n/cs_CS.po +++ b/addons/hr_attendance/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: model:ir.actions.wizard,name:hr_attendance.si_so #: model:ir.ui.menu,name:hr_attendance.menu_si_so msgid "Sign in / Sign out" -msgstr "Přihlásit / Odhlásit" +msgstr "" #. module: hr_attendance #: rml:report.hr.timesheet.attendance.error:0 @@ -53,14 +53,14 @@ msgstr "" #. module: hr_attendance #: wizard_view:hr.si_so,init:0 msgid "You are now ready to sign in or out of the attendance follow up" -msgstr "Teď jste schopni se přihlašovat/odhlašovat(You are now ready to sign in or out of the attendance follow up)" +msgstr "" #. module: hr_attendance #: selection:hr.action.reason,action_type:0 #: wizard_button:hr.si_so,init,so_test:0 #: wizard_button:hr.si_so,so_ask_si,so:0 msgid "Sign out" -msgstr "Odhlásit(Sign out)" +msgstr "" #. module: hr_attendance #: rml:report.hr.timesheet.attendance.error:0 @@ -72,7 +72,7 @@ msgstr "" #: wizard_field:hr.si_so,si_ask_so,name:0 #: wizard_field:hr.si_so,so_ask_si,name:0 msgid "Employee's name" -msgstr "Jméno zaměstnance(Employee's name)" +msgstr "" #. module: hr_attendance #: wizard_button:hr.attendance.print_month,init,print:0 @@ -146,7 +146,7 @@ msgstr "" #. module: hr_attendance #: wizard_field:hr.si_so,so_ask_si,last_time:0 msgid "Your last sign in" -msgstr "Naposledy jste se přihlásil" +msgstr "" #. module: hr_attendance #: selection:hr.attendance.print_month,init,month:0 @@ -197,7 +197,7 @@ msgstr "" #. module: hr_attendance #: wizard_view:hr.si_so,si_ask_so:0 msgid "You did not signed out the last time. Please enter the date and time you signed out." -msgstr "Minule jste se neodhlásil. Prosím zadejte datum a čas odhlášení" +msgstr "" #. module: hr_attendance #: view:hr.action.reason:0 @@ -233,7 +233,7 @@ msgstr "" #. module: hr_attendance #: wizard_field:hr.si_so,si_ask_so,last_time:0 msgid "Your last sign out" -msgstr "Naposledy jste se přihlásil(Your last sign out)" +msgstr "" #. module: hr_attendance #: rml:report.hr.timesheet.attendance.error:0 @@ -255,7 +255,7 @@ msgstr "" #: wizard_button:hr.si_so,init,si_test:0 #: wizard_button:hr.si_so,si_ask_so,si:0 msgid "Sign in" -msgstr "Přihlásit se(Sign in)" +msgstr "" #. module: hr_attendance #: wizard_view:hr.attendance.report,init:0 @@ -265,7 +265,7 @@ msgstr "" #. module: hr_attendance #: wizard_field:hr.si_so,init,state:0 msgid "Current state" -msgstr "Současný stav(Current state)" +msgstr "" #. module: hr_attendance #: selection:hr.attendance.print_month,init,month:0 @@ -335,7 +335,7 @@ msgstr "" #. module: hr_attendance #: wizard_view:hr.si_so,so_ask_si:0 msgid "You did not signed in the last time. Please enter the date and time you signed in." -msgstr "Minule jste se neodhlásil. Prosím zadejte datum a čas odhlášení" +msgstr "" #. module: hr_attendance #: selection:hr.attendance.print_month,init,month:0 @@ -385,7 +385,7 @@ msgstr "" #: wizard_button:hr.si_so,si_ask_so,end:0 #: wizard_button:hr.si_so,so_ask_si,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: hr_attendance #: rml:report.hr.timesheet.attendance.error:0 diff --git a/addons/hr_attendance/i18n/zh_CN.po b/addons/hr_attendance/i18n/zh_CN.po index f009121a603..f1aede0eebc 100644 --- a/addons/hr_attendance/i18n/zh_CN.po +++ b/addons/hr_attendance/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_attendance/i18n/zh_TW.po b/addons/hr_attendance/i18n/zh_TW.po index ac9edddb8bd..60bbd4e4903 100644 --- a/addons/hr_attendance/i18n/zh_TW.po +++ b/addons/hr_attendance/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/ar_AR.po b/addons/hr_contract/i18n/ar_AR.po index 52bb6657802..d83d46b8568 100644 --- a/addons/hr_contract/i18n/ar_AR.po +++ b/addons/hr_contract/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/bg_BG.po b/addons/hr_contract/i18n/bg_BG.po index cb79995f9dd..35bccab2141 100644 --- a/addons/hr_contract/i18n/bg_BG.po +++ b/addons/hr_contract/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/bs_BS.po b/addons/hr_contract/i18n/bs_BS.po index ed825ce216a..fc9c5a6ab0a 100644 --- a/addons/hr_contract/i18n/bs_BS.po +++ b/addons/hr_contract/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/ca_ES.po b/addons/hr_contract/i18n/ca_ES.po index 03a0c398740..66784f03ece 100644 --- a/addons/hr_contract/i18n/ca_ES.po +++ b/addons/hr_contract/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/cs_CZ.po b/addons/hr_contract/i18n/cs_CZ.po index cb552610dcc..4f20dc790c2 100644 --- a/addons/hr_contract/i18n/cs_CZ.po +++ b/addons/hr_contract/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/de_DE.po b/addons/hr_contract/i18n/de_DE.po index 23211ed334a..b38b6cda126 100644 --- a/addons/hr_contract/i18n/de_DE.po +++ b/addons/hr_contract/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/es_AR.po b/addons/hr_contract/i18n/es_AR.po index 4068693f94c..cb9e5d61d5a 100644 --- a/addons/hr_contract/i18n/es_AR.po +++ b/addons/hr_contract/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/es_ES.po b/addons/hr_contract/i18n/es_ES.po index b3604a6e9e5..6b5d1594ab9 100644 --- a/addons/hr_contract/i18n/es_ES.po +++ b/addons/hr_contract/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/et_EE.po b/addons/hr_contract/i18n/et_EE.po index 936a0152130..321487b7712 100644 --- a/addons/hr_contract/i18n/et_EE.po +++ b/addons/hr_contract/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/fi_FI.po b/addons/hr_contract/i18n/fi_FI.po index 4016135c16c..2ac80a7acaa 100644 --- a/addons/hr_contract/i18n/fi_FI.po +++ b/addons/hr_contract/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/fr_FR.po b/addons/hr_contract/i18n/fr_FR.po index e795e80a783..eb14fa72f6f 100644 --- a/addons/hr_contract/i18n/fr_FR.po +++ b/addons/hr_contract/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Types de Salaire" #. module: hr_contract #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: hr_contract #: field:hr.contract,employee_id:0 diff --git a/addons/hr_contract/i18n/hr_HR.po b/addons/hr_contract/i18n/hr_HR.po index b7532f0b606..31c6bddb190 100644 --- a/addons/hr_contract/i18n/hr_HR.po +++ b/addons/hr_contract/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/hr_contract.pot b/addons/hr_contract/i18n/hr_contract.pot index 033d41fde53..2f57a52899d 100644 --- a/addons/hr_contract/i18n/hr_contract.pot +++ b/addons/hr_contract/i18n/hr_contract.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/hu_HU.po b/addons/hr_contract/i18n/hu_HU.po index eec1900043a..fc2ecafed33 100644 --- a/addons/hr_contract/i18n/hu_HU.po +++ b/addons/hr_contract/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/id_ID.po b/addons/hr_contract/i18n/id_ID.po index 58248d102e9..58a013b2ab8 100644 --- a/addons/hr_contract/i18n/id_ID.po +++ b/addons/hr_contract/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/it_IT.po b/addons/hr_contract/i18n/it_IT.po index 7740ee189ca..ed65abff094 100644 --- a/addons/hr_contract/i18n/it_IT.po +++ b/addons/hr_contract/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/lt_LT.po b/addons/hr_contract/i18n/lt_LT.po index 12dfdbce071..ae077023244 100644 --- a/addons/hr_contract/i18n/lt_LT.po +++ b/addons/hr_contract/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/nl_BE.po b/addons/hr_contract/i18n/nl_BE.po index f9fe47ae044..45d72bf5b1f 100644 --- a/addons/hr_contract/i18n/nl_BE.po +++ b/addons/hr_contract/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/nl_NL.po b/addons/hr_contract/i18n/nl_NL.po index d88ef6409da..48a20970b8a 100644 --- a/addons/hr_contract/i18n/nl_NL.po +++ b/addons/hr_contract/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/pl_PL.po b/addons/hr_contract/i18n/pl_PL.po index 5cdf22d636d..9d2052eaee8 100644 --- a/addons/hr_contract/i18n/pl_PL.po +++ b/addons/hr_contract/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/pt_BR.po b/addons/hr_contract/i18n/pt_BR.po index de077cbdca4..333211fa4eb 100644 --- a/addons/hr_contract/i18n/pt_BR.po +++ b/addons/hr_contract/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/pt_PT.po b/addons/hr_contract/i18n/pt_PT.po index 6620879d830..3f1abb3e7df 100644 --- a/addons/hr_contract/i18n/pt_PT.po +++ b/addons/hr_contract/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/ro_RO.po b/addons/hr_contract/i18n/ro_RO.po index ea75d3dec0f..6e88bb216f1 100644 --- a/addons/hr_contract/i18n/ro_RO.po +++ b/addons/hr_contract/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/ru_RU.po b/addons/hr_contract/i18n/ru_RU.po index abadc976a4a..7b5465b9e12 100644 --- a/addons/hr_contract/i18n/ru_RU.po +++ b/addons/hr_contract/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/sl_SL.po b/addons/hr_contract/i18n/sl_SL.po index c769bacb2ab..5f8f4a3580c 100644 --- a/addons/hr_contract/i18n/sl_SL.po +++ b/addons/hr_contract/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/cs_CS.po b/addons/hr_contract/i18n/sq_AL.po similarity index 97% rename from addons/hr_contract/i18n/cs_CS.po rename to addons/hr_contract/i18n/sq_AL.po index e72ee5b6a1c..fff1e0c8d46 100644 --- a/addons/hr_contract/i18n/cs_CS.po +++ b/addons/hr_contract/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/sv_SE.po b/addons/hr_contract/i18n/sv_SE.po index 1e8236615de..36f8483df74 100644 --- a/addons/hr_contract/i18n/sv_SE.po +++ b/addons/hr_contract/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/tr_TR.po b/addons/hr_contract/i18n/tr_TR.po index bf8651a7b67..eefbff20b25 100644 --- a/addons/hr_contract/i18n/tr_TR.po +++ b/addons/hr_contract/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/uk_UK.po b/addons/hr_contract/i18n/uk_UA.po similarity index 97% rename from addons/hr_contract/i18n/uk_UK.po rename to addons/hr_contract/i18n/uk_UA.po index a12b9406cf7..f68caa2a974 100644 --- a/addons/hr_contract/i18n/uk_UK.po +++ b/addons/hr_contract/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/sv_SV.po b/addons/hr_contract/i18n/vi_VN.po similarity index 95% rename from addons/hr_contract/i18n/sv_SV.po rename to addons/hr_contract/i18n/vi_VN.po index 724eeb899ab..0ebe7c3d7f2 100644 --- a/addons/hr_contract/i18n/sv_SV.po +++ b/addons/hr_contract/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "" #. module: hr_contract #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: hr_contract #: view:hr.contract:0 @@ -159,7 +159,7 @@ msgstr "" #: field:hr.contract,notes:0 #: view:hr.employee:0 msgid "Notes" -msgstr "Anteckningar" +msgstr "" #. module: hr_contract #: view:hr.contract:0 diff --git a/addons/hr_contract/i18n/zh_CN.po b/addons/hr_contract/i18n/zh_CN.po index 458e6d7798c..98cafb98ee8 100644 --- a/addons/hr_contract/i18n/zh_CN.po +++ b/addons/hr_contract/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_contract/i18n/zh_TW.po b/addons/hr_contract/i18n/zh_TW.po index 4e3f7ee9b40..d3ca3b36ebb 100644 --- a/addons/hr_contract/i18n/zh_TW.po +++ b/addons/hr_contract/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/ar_AR.po b/addons/hr_expense/i18n/ar_AR.po index 3db9da05261..acd85c7ccb3 100644 --- a/addons/hr_expense/i18n/ar_AR.po +++ b/addons/hr_expense/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/bg_BG.po b/addons/hr_expense/i18n/bg_BG.po index 278d1d4bc24..f64d80d47fe 100644 --- a/addons/hr_expense/i18n/bg_BG.po +++ b/addons/hr_expense/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/bs_BS.po b/addons/hr_expense/i18n/bs_BS.po index 963bb786ec5..6bf253a2277 100644 --- a/addons/hr_expense/i18n/bs_BS.po +++ b/addons/hr_expense/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/ca_ES.po b/addons/hr_expense/i18n/ca_ES.po index 94031553754..7cdaab2f0b8 100644 --- a/addons/hr_expense/i18n/ca_ES.po +++ b/addons/hr_expense/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/cs_CZ.po b/addons/hr_expense/i18n/cs_CZ.po index 32b47f5bf07..0224892ec9b 100644 --- a/addons/hr_expense/i18n/cs_CZ.po +++ b/addons/hr_expense/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/de_DE.po b/addons/hr_expense/i18n/de_DE.po index df8f987d27e..4e92c19a5c6 100644 --- a/addons/hr_expense/i18n/de_DE.po +++ b/addons/hr_expense/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/es_AR.po b/addons/hr_expense/i18n/es_AR.po index 331c1748534..71f64c75aea 100644 --- a/addons/hr_expense/i18n/es_AR.po +++ b/addons/hr_expense/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/es_ES.po b/addons/hr_expense/i18n/es_ES.po index 7377dfb7a7f..48bcc301e7a 100644 --- a/addons/hr_expense/i18n/es_ES.po +++ b/addons/hr_expense/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/et_EE.po b/addons/hr_expense/i18n/et_EE.po index 5b1f9f4863b..f89ca41c4ff 100644 --- a/addons/hr_expense/i18n/et_EE.po +++ b/addons/hr_expense/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/fi_FI.po b/addons/hr_expense/i18n/fi_FI.po index bca26c72167..a8cd36cb20b 100644 --- a/addons/hr_expense/i18n/fi_FI.po +++ b/addons/hr_expense/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/fr_FR.po b/addons/hr_expense/i18n/fr_FR.po index 839ed3529a1..36045a41eed 100644 --- a/addons/hr_expense/i18n/fr_FR.po +++ b/addons/hr_expense/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "Dépenses en attende de validation" #. module: hr_expense #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 diff --git a/addons/hr_expense/i18n/hr_HR.po b/addons/hr_expense/i18n/hr_HR.po index cabd017aa19..4ac25d9aa63 100644 --- a/addons/hr_expense/i18n/hr_HR.po +++ b/addons/hr_expense/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31: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 eace0b6c18d..2925396c69f 100644 --- a/addons/hr_expense/i18n/hr_expense.pot +++ b/addons/hr_expense/i18n/hr_expense.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/hu_HU.po b/addons/hr_expense/i18n/hu_HU.po index 73b1a2f840f..a525dc99fff 100644 --- a/addons/hr_expense/i18n/hu_HU.po +++ b/addons/hr_expense/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/id_ID.po b/addons/hr_expense/i18n/id_ID.po index 8e0d1e2c133..c023b30ea61 100644 --- a/addons/hr_expense/i18n/id_ID.po +++ b/addons/hr_expense/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/it_IT.po b/addons/hr_expense/i18n/it_IT.po index db4098db85d..d660aba48e7 100644 --- a/addons/hr_expense/i18n/it_IT.po +++ b/addons/hr_expense/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/lt_LT.po b/addons/hr_expense/i18n/lt_LT.po index 071808f24a8..391c0e3de4a 100644 --- a/addons/hr_expense/i18n/lt_LT.po +++ b/addons/hr_expense/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/nl_BE.po b/addons/hr_expense/i18n/nl_BE.po index 599e0b77913..f2e8e65ea57 100644 --- a/addons/hr_expense/i18n/nl_BE.po +++ b/addons/hr_expense/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/nl_NL.po b/addons/hr_expense/i18n/nl_NL.po index 9ea1695da8c..e073fe79cad 100644 --- a/addons/hr_expense/i18n/nl_NL.po +++ b/addons/hr_expense/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/pl_PL.po b/addons/hr_expense/i18n/pl_PL.po index 4f4a9a3392e..41589100857 100644 --- a/addons/hr_expense/i18n/pl_PL.po +++ b/addons/hr_expense/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/pt_BR.po b/addons/hr_expense/i18n/pt_BR.po index e7c3db8640f..e10cb986eff 100644 --- a/addons/hr_expense/i18n/pt_BR.po +++ b/addons/hr_expense/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/pt_PT.po b/addons/hr_expense/i18n/pt_PT.po index 5b412503a32..f290a82e58c 100644 --- a/addons/hr_expense/i18n/pt_PT.po +++ b/addons/hr_expense/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/ro_RO.po b/addons/hr_expense/i18n/ro_RO.po index 8855b9389c9..60047ba149e 100644 --- a/addons/hr_expense/i18n/ro_RO.po +++ b/addons/hr_expense/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/ru_RU.po b/addons/hr_expense/i18n/ru_RU.po index f7370e1a752..1f68dc3b211 100644 --- a/addons/hr_expense/i18n/ru_RU.po +++ b/addons/hr_expense/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/sl_SL.po b/addons/hr_expense/i18n/sl_SL.po index f149a9c613b..32ac7ba6500 100644 --- a/addons/hr_expense/i18n/sl_SL.po +++ b/addons/hr_expense/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/cs_CS.po b/addons/hr_expense/i18n/sq_AL.po similarity index 98% rename from addons/hr_expense/i18n/cs_CS.po rename to addons/hr_expense/i18n/sq_AL.po index bf61adfa9a9..34a7c03426b 100644 --- a/addons/hr_expense/i18n/cs_CS.po +++ b/addons/hr_expense/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/sv_SE.po b/addons/hr_expense/i18n/sv_SE.po index dadfefd88d4..98ba9475df8 100644 --- a/addons/hr_expense/i18n/sv_SE.po +++ b/addons/hr_expense/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/tr_TR.po b/addons/hr_expense/i18n/tr_TR.po index a7626fa7d41..c682164bae7 100644 --- a/addons/hr_expense/i18n/tr_TR.po +++ b/addons/hr_expense/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/uk_UK.po b/addons/hr_expense/i18n/uk_UA.po similarity index 98% rename from addons/hr_expense/i18n/uk_UK.po rename to addons/hr_expense/i18n/uk_UA.po index 4a8f9b06950..7910d336487 100644 --- a/addons/hr_expense/i18n/uk_UK.po +++ b/addons/hr_expense/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/sv_SV.po b/addons/hr_expense/i18n/vi_VN.po similarity index 97% rename from addons/hr_expense/i18n/sv_SV.po rename to addons/hr_expense/i18n/vi_VN.po index 124df36ec75..c5b8e96746b 100644 --- a/addons/hr_expense/i18n/sv_SV.po +++ b/addons/hr_expense/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -225,7 +225,7 @@ msgstr "" #: field:hr.expense.line,expense_id:0 #: model:ir.model,name:hr_expense.model_hr_expense_expense msgid "Expense" -msgstr "Utgift" +msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 @@ -272,7 +272,7 @@ msgstr "" #. module: hr_expense #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/zh_CN.po b/addons/hr_expense/i18n/zh_CN.po index b1679ec08db..a24f822e26b 100644 --- a/addons/hr_expense/i18n/zh_CN.po +++ b/addons/hr_expense/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/zh_TW.po b/addons/hr_expense/i18n/zh_TW.po index 4bf72fc2d2d..f4fe33c0c64 100644 --- a/addons/hr_expense/i18n/zh_TW.po +++ b/addons/hr_expense/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/ar_AR.po b/addons/hr_holidays/i18n/ar_AR.po index d4ee7612e7d..a749e8d9168 100644 --- a/addons/hr_holidays/i18n/ar_AR.po +++ b/addons/hr_holidays/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/bg_BG.po b/addons/hr_holidays/i18n/bg_BG.po index 8989347f37f..ad661ef5602 100644 --- a/addons/hr_holidays/i18n/bg_BG.po +++ b/addons/hr_holidays/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/bs_BS.po b/addons/hr_holidays/i18n/bs_BS.po index d0ec97b1f81..1816b15db50 100644 --- a/addons/hr_holidays/i18n/bs_BS.po +++ b/addons/hr_holidays/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/ca_ES.po b/addons/hr_holidays/i18n/ca_ES.po index 142e607b435..64249cc1876 100644 --- a/addons/hr_holidays/i18n/ca_ES.po +++ b/addons/hr_holidays/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/cs_CZ.po b/addons/hr_holidays/i18n/cs_CZ.po index 0fefe533a28..4ab0d436454 100644 --- a/addons/hr_holidays/i18n/cs_CZ.po +++ b/addons/hr_holidays/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/de_DE.po b/addons/hr_holidays/i18n/de_DE.po index b7dff5e9ac4..aea28d8b5a4 100644 --- a/addons/hr_holidays/i18n/de_DE.po +++ b/addons/hr_holidays/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/es_AR.po b/addons/hr_holidays/i18n/es_AR.po index e593099bc2f..7f93da55f6c 100644 --- a/addons/hr_holidays/i18n/es_AR.po +++ b/addons/hr_holidays/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/es_ES.po b/addons/hr_holidays/i18n/es_ES.po index 868b47741f6..4c8ade05332 100644 --- a/addons/hr_holidays/i18n/es_ES.po +++ b/addons/hr_holidays/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/et_EE.po b/addons/hr_holidays/i18n/et_EE.po index d6024e73bfa..95e18592b11 100644 --- a/addons/hr_holidays/i18n/et_EE.po +++ b/addons/hr_holidays/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/fi_FI.po b/addons/hr_holidays/i18n/fi_FI.po index f5946c77bb9..95c25d3da87 100644 --- a/addons/hr_holidays/i18n/fi_FI.po +++ b/addons/hr_holidays/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/fr_FR.po b/addons/hr_holidays/i18n/fr_FR.po index 48209684729..e570e038ded 100644 --- a/addons/hr_holidays/i18n/fr_FR.po +++ b/addons/hr_holidays/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays_new msgid "New Holidays Request" -msgstr "Nouvelle demande de vacance" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_all_holiday msgid "All Holidays Requests" -msgstr "Toutes les Demandes de Vacances" +msgstr "" #. module: hr_holidays #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: hr_holidays #: field:hr.holidays.per.user,remaining_leaves:0 msgid "Remaining Leaves" -msgstr "Congés disponibles" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_holiday_waiting msgid "Requests Awaiting for Validation" -msgstr "Demandes en attende de Validation" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -65,7 +65,7 @@ msgstr "" #: view:hr.holidays.per.user:0 #: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 msgid "Employee Holidays" -msgstr "Vacances des employés" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -78,7 +78,7 @@ msgstr "" #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" -msgstr "Vacances" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -98,7 +98,7 @@ msgstr "" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 msgid "Employee Declaration" -msgstr "Déclaration de l'employé" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -110,7 +110,7 @@ msgstr "Valider" #. module: hr_holidays #: model:process.transition,name:hr_holidays.process_transition_refusedrequest0 msgid "Refused Request" -msgstr "Demande refusée" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_approved0 @@ -131,35 +131,35 @@ msgstr "" #: wizard_button:hr.holidays.summary,notify,end:0 #: wizard_button:hr.holidays.summary.employee,notify,end:0 msgid "Ok" -msgstr "Ok" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday msgid "My Holidays Requests" -msgstr "Mes Demandes de Vacances" +msgstr "" #. module: hr_holidays #: field:hr.holidays,notes:0 #: field:hr.holidays.per.user,notes:0 msgid "Notes" -msgstr "Notes" +msgstr "" #. module: hr_holidays #: field:hr.holidays,holiday_status:0 #: field:hr.holidays.log,holiday_status:0 #: field:hr.holidays.per.user,holiday_status:0 msgid "Holiday's Status" -msgstr "Type de congés" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_refusedrequest0 msgid "Request is refused." -msgstr "La demande est refusée" +msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays msgid "Holidays Management" -msgstr "Gestion des Congés" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -169,12 +169,12 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary msgid "Summary Of Holidays" -msgstr "Résumé des Vacances" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_calendar0 msgid "The holiday is set in the calendar" -msgstr "Le congé est ajouté au calendrier" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 @@ -184,12 +184,12 @@ msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Holidays Status" -msgstr "Statut des vacances" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_to:0 msgid "Vacation end day" -msgstr "Fin du congé" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 @@ -199,7 +199,7 @@ msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_legaldeclaration0 msgid "Legal Declaration Document to declare new employee" -msgstr "Document officiel de déclaration d'entrée d'un employé" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -209,7 +209,7 @@ msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_per_user msgid "Holidays Per User" -msgstr "Vacnaces par Utilisateur" +msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 @@ -226,7 +226,7 @@ msgstr "" #: wizard_field:hr.holidays.summary,init,date_from:0 #: wizard_field:hr.holidays.summary.employee,init,date_from:0 msgid "From" -msgstr "De" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -238,24 +238,24 @@ msgstr "Confirmer" #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting msgid "My Awaiting Confirmation Holidays Requests" -msgstr "Mes Demandes de Vacances en attende de Confirmation" +msgstr "" #. module: hr_holidays #: field:hr.holidays,user_id:0 msgid "Employee_id" -msgstr "Identifiant de l'employé" +msgstr "" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_holidaysdefinition0 msgid "Encoding of annual available holidays." -msgstr "Saisie du nombre de congé annuel disponibles" +msgstr "" #. module: hr_holidays #: field:hr.holidays,employee_id:0 #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Employé" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -280,12 +280,12 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays.log,nb_holidays:0 msgid "Number of Holidays Requested" -msgstr "Nombre de congés demandés" +msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_employee_holiday_request msgid "My Holiday Requests" -msgstr "Mes demandes de congés" +msgstr "" #. module: hr_holidays #: view:hr.holidays:0 @@ -298,13 +298,13 @@ msgstr "" #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Holiday Status" -msgstr "Statut des Vacances" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary,init:0 #: wizard_view:hr.holidays.summary.employee,init:0 msgid "Report Options" -msgstr "Options du Rapport" +msgstr "" #. module: hr_holidays #: constraint:ir.ui.view:0 @@ -314,12 +314,12 @@ msgstr "XML non valide pour l'architecture de la vue" #. module: hr_holidays #: model:process.node,note:hr_holidays.process_node_approved0 msgid "His manager approves the request" -msgstr "Son responsable approuve la demande" +msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_holidaysdefrequest0 msgid "If holidays available, employee can take it and fill it." -msgstr "Si des congés sont disponibles, l'employé peut les prendre" +msgstr "" #. module: hr_holidays #: wizard_view:hr.holidays.summary.employee,notify:0 @@ -329,34 +329,34 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_validate msgid "My Validated Holidays Requests" -msgstr "Mes Demandes de Vacances Validée" +msgstr "" #. module: hr_holidays #: wizard_field:hr.holidays.summary.employee,init,emp:0 msgid "Employee(s)" -msgstr "Employés" +msgstr "" #. module: hr_holidays #: field:hr.holidays,number_of_days:0 msgid "Number of Days in this Holiday Request" -msgstr "Nombre de Jours dans cette Demande de Congé" +msgstr "" #. module: hr_holidays #: view:hr.holidays.per.user:0 #: model:ir.actions.act_window,name:hr_holidays.action_holidays_per_user #: model:ir.ui.menu,name:hr_holidays.menu_open_holidays_per_user msgid "Holidays Per Employee" -msgstr "Congés par Employé" +msgstr "" #. module: hr_holidays #: field:hr.holidays.status,limit:0 msgid "Allow to override Limit" -msgstr "Authoriser le dépassement de la limite" +msgstr "" #. module: hr_holidays #: field:hr.holidays.log,holiday_user_id:0 msgid "Holidays user" -msgstr "Congés utilisateur" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -366,22 +366,22 @@ msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_log msgid "hr.holidays.log" -msgstr "hr.holidays.log" +msgstr "" #. module: hr_holidays #: model:ir.actions.wizard,name:hr_holidays.wizard_holidays_summary msgid "Print Summary of Employee's Holidays" -msgstr "Imprimer un Résumé des Vacances de l'employé" +msgstr "" #. module: hr_holidays #: model:process.node,name:hr_holidays.process_node_calendar0 msgid "Calendar" -msgstr "Calendrier" +msgstr "" #. module: hr_holidays #: field:hr.holidays,date_from:0 msgid "Vacation start day" -msgstr "Début du congé" +msgstr "" #. module: hr_holidays #: model:ir.module.module,description:hr_holidays.module_meta_information @@ -420,7 +420,7 @@ msgstr "" #. module: hr_holidays #: model:process.transition,note:hr_holidays.process_transition_setholiday0 msgid "Holiday is set in the calendar." -msgstr "Les vacances sont affichées dans le calendrier" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -431,7 +431,7 @@ msgstr "" #: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_available #: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_available msgid "My Available Holidays" -msgstr "Mes Vacances Disponibles" +msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/hr_HR.po b/addons/hr_holidays/i18n/hr_HR.po index 2737a00081c..1bc2df8eb39 100644 --- a/addons/hr_holidays/i18n/hr_HR.po +++ b/addons/hr_holidays/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31: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 b3c81828abc..d411768243a 100644 --- a/addons/hr_holidays/i18n/hr_holidays.pot +++ b/addons/hr_holidays/i18n/hr_holidays.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/hu_HU.po b/addons/hr_holidays/i18n/hu_HU.po index 5a2668ac7c3..f25b29d46d9 100644 --- a/addons/hr_holidays/i18n/hu_HU.po +++ b/addons/hr_holidays/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/id_ID.po b/addons/hr_holidays/i18n/id_ID.po index 26444b5a60b..682d1b61d50 100644 --- a/addons/hr_holidays/i18n/id_ID.po +++ b/addons/hr_holidays/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/it_IT.po b/addons/hr_holidays/i18n/it_IT.po index 0ad9fdd315b..b19fb6becc9 100644 --- a/addons/hr_holidays/i18n/it_IT.po +++ b/addons/hr_holidays/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/lt_LT.po b/addons/hr_holidays/i18n/lt_LT.po index 66b01a6d703..a580902b4c6 100644 --- a/addons/hr_holidays/i18n/lt_LT.po +++ b/addons/hr_holidays/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/nl_BE.po b/addons/hr_holidays/i18n/nl_BE.po index e05b8e6cb60..1dd40093f4a 100644 --- a/addons/hr_holidays/i18n/nl_BE.po +++ b/addons/hr_holidays/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/nl_NL.po b/addons/hr_holidays/i18n/nl_NL.po index 637b4b6b699..8fd6dda7550 100644 --- a/addons/hr_holidays/i18n/nl_NL.po +++ b/addons/hr_holidays/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/pl_PL.po b/addons/hr_holidays/i18n/pl_PL.po index 170e4b93bbc..50a91f7a0e1 100644 --- a/addons/hr_holidays/i18n/pl_PL.po +++ b/addons/hr_holidays/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/pt_BR.po b/addons/hr_holidays/i18n/pt_BR.po index 4dd69a9bcad..e0f3696b6df 100644 --- a/addons/hr_holidays/i18n/pt_BR.po +++ b/addons/hr_holidays/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/pt_PT.po b/addons/hr_holidays/i18n/pt_PT.po index 33fba425610..89db8902387 100644 --- a/addons/hr_holidays/i18n/pt_PT.po +++ b/addons/hr_holidays/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/ro_RO.po b/addons/hr_holidays/i18n/ro_RO.po index b3a2159b8b3..5ba08ba35dc 100644 --- a/addons/hr_holidays/i18n/ro_RO.po +++ b/addons/hr_holidays/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/ru_RU.po b/addons/hr_holidays/i18n/ru_RU.po index 73fff91ac99..a9c6023383f 100644 --- a/addons/hr_holidays/i18n/ru_RU.po +++ b/addons/hr_holidays/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/sl_SL.po b/addons/hr_holidays/i18n/sl_SL.po index 2a70b3c7dee..fa28ccaa808 100644 --- a/addons/hr_holidays/i18n/sl_SL.po +++ b/addons/hr_holidays/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/cs_CS.po b/addons/hr_holidays/i18n/sq_AL.po similarity index 99% rename from addons/hr_holidays/i18n/cs_CS.po rename to addons/hr_holidays/i18n/sq_AL.po index 925c5bd69ee..ba7442f793e 100644 --- a/addons/hr_holidays/i18n/cs_CS.po +++ b/addons/hr_holidays/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/sv_SE.po b/addons/hr_holidays/i18n/sv_SE.po index d752d2a46fd..9348fa32d14 100644 --- a/addons/hr_holidays/i18n/sv_SE.po +++ b/addons/hr_holidays/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "" #: model:ir.model,name:hr_holidays.model_hr_holidays #: model:process.node,name:hr_holidays.process_node_holidays0 msgid "Holidays" -msgstr "Helgdagar" +msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -255,7 +255,7 @@ msgstr "" #: field:hr.holidays.log,employee_id:0 #: field:hr.holidays.per.user,employee_id:0 msgid "Employee" -msgstr "Anställd" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -613,7 +613,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,name:0 msgid "Description" -msgstr "Beskrivning" +msgstr "" #. module: hr_holidays #: selection:hr.holidays,state:0 diff --git a/addons/hr_holidays/i18n/th_TH.po b/addons/hr_holidays/i18n/th_TH.po index 2e3916981a9..f3d2d7f8514 100644 --- a/addons/hr_holidays/i18n/th_TH.po +++ b/addons/hr_holidays/i18n/th_TH.po @@ -14,5 +14,5 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:09+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" diff --git a/addons/hr_holidays/i18n/tr_TR.po b/addons/hr_holidays/i18n/tr_TR.po index f533c0e9736..36af8cd5b12 100644 --- a/addons/hr_holidays/i18n/tr_TR.po +++ b/addons/hr_holidays/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/uk_UK.po b/addons/hr_holidays/i18n/uk_UA.po similarity index 99% rename from addons/hr_holidays/i18n/uk_UK.po rename to addons/hr_holidays/i18n/uk_UA.po index f857acbffcb..d13ef2722e2 100644 --- a/addons/hr_holidays/i18n/uk_UK.po +++ b/addons/hr_holidays/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/sv_SV.po b/addons/hr_holidays/i18n/vi_VN.po similarity index 98% rename from addons/hr_holidays/i18n/sv_SV.po rename to addons/hr_holidays/i18n/vi_VN.po index ade54d49626..955ef791062 100644 --- a/addons/hr_holidays/i18n/sv_SV.po +++ b/addons/hr_holidays/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -591,7 +591,7 @@ msgstr "" #. module: hr_holidays #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: hr_holidays #: wizard_button:hr.holidays.summary,init,checkdept:0 diff --git a/addons/hr_holidays/i18n/zh_CN.po b/addons/hr_holidays/i18n/zh_CN.po index 160bf9d0193..9f6b4281584 100644 --- a/addons/hr_holidays/i18n/zh_CN.po +++ b/addons/hr_holidays/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/zh_TW.po b/addons/hr_holidays/i18n/zh_TW.po index f6a1658dbd9..fba79e0f2f6 100644 --- a/addons/hr_holidays/i18n/zh_TW.po +++ b/addons/hr_holidays/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/ar_AR.po b/addons/hr_timesheet/i18n/ar_AR.po index 3dfc93023fb..a5b6fc166bd 100644 --- a/addons/hr_timesheet/i18n/ar_AR.po +++ b/addons/hr_timesheet/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/bg_BG.po b/addons/hr_timesheet/i18n/bg_BG.po index 543d9986de8..2ea7a5aaf68 100644 --- a/addons/hr_timesheet/i18n/bg_BG.po +++ b/addons/hr_timesheet/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/bs_BS.po b/addons/hr_timesheet/i18n/bs_BS.po index adf4828080d..e2f2bbb48b6 100644 --- a/addons/hr_timesheet/i18n/bs_BS.po +++ b/addons/hr_timesheet/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/ca_ES.po b/addons/hr_timesheet/i18n/ca_ES.po index 6ff11b2bdc3..9b71e230d9c 100644 --- a/addons/hr_timesheet/i18n/ca_ES.po +++ b/addons/hr_timesheet/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/cs_CZ.po b/addons/hr_timesheet/i18n/cs_CZ.po index 783098014ed..d2f57113cc7 100644 --- a/addons/hr_timesheet/i18n/cs_CZ.po +++ b/addons/hr_timesheet/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/de_DE.po b/addons/hr_timesheet/i18n/de_DE.po index 191048c172c..f66f161cc99 100644 --- a/addons/hr_timesheet/i18n/de_DE.po +++ b/addons/hr_timesheet/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/es_AR.po b/addons/hr_timesheet/i18n/es_AR.po index 9a944c09807..161e79cefd6 100644 --- a/addons/hr_timesheet/i18n/es_AR.po +++ b/addons/hr_timesheet/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/es_ES.po b/addons/hr_timesheet/i18n/es_ES.po index 22ed122be36..ff0971b6fb1 100644 --- a/addons/hr_timesheet/i18n/es_ES.po +++ b/addons/hr_timesheet/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/et_EE.po b/addons/hr_timesheet/i18n/et_EE.po index 9c83e8e6d18..a2a89f9a6a4 100644 --- a/addons/hr_timesheet/i18n/et_EE.po +++ b/addons/hr_timesheet/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/fi_FI.po b/addons/hr_timesheet/i18n/fi_FI.po index 2e37e1fed27..609d448b13e 100644 --- a/addons/hr_timesheet/i18n/fi_FI.po +++ b/addons/hr_timesheet/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/fr_FR.po b/addons/hr_timesheet/i18n/fr_FR.po index c1dba897b9d..148579a4348 100644 --- a/addons/hr_timesheet/i18n/fr_FR.po +++ b/addons/hr_timesheet/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -50,7 +50,7 @@ msgstr "(Garder vide pour la date actuelle)" #. module: hr_timesheet #: constraint:product.template:0 msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "Erreur: l'unité de mesure par défaut et l'unité de mesure d'achat doivent faire partie de la même catégorie" +msgstr "Erreur: l'UdM par défaut et l'UdM d'achat doivent appartenir à la même catégorie." #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_in:0 @@ -70,7 +70,7 @@ msgstr "Date du jour" #. module: hr_timesheet #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: hr_timesheet #: wizard_button:hr.analytical.timesheet,init,report:0 @@ -236,7 +236,7 @@ msgstr "Ligne analytique" #. module: hr_timesheet #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "Erreur: l'unité de vente doit appartenir à une catégorie différente que l'unité de mesure" +msgstr "Erreur : l'Unité Secondaire doit appartenir à une autre catégorie que l'Unité de Mesure." #. module: hr_timesheet #: wizard_view:hr.analytical.timesheet_users,init:0 diff --git a/addons/hr_timesheet/i18n/hr_HR.po b/addons/hr_timesheet/i18n/hr_HR.po index a83740b8c4c..a5518704bf7 100644 --- a/addons/hr_timesheet/i18n/hr_HR.po +++ b/addons/hr_timesheet/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31: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 653ec8789fb..044cd2f0407 100644 --- a/addons/hr_timesheet/i18n/hr_timesheet.pot +++ b/addons/hr_timesheet/i18n/hr_timesheet.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/hu_HU.po b/addons/hr_timesheet/i18n/hu_HU.po index 3e1bff08a40..612d26f7759 100644 --- a/addons/hr_timesheet/i18n/hu_HU.po +++ b/addons/hr_timesheet/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/id_ID.po b/addons/hr_timesheet/i18n/id_ID.po index 0fb28c37770..d1c65b5ffe5 100644 --- a/addons/hr_timesheet/i18n/id_ID.po +++ b/addons/hr_timesheet/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/it_IT.po b/addons/hr_timesheet/i18n/it_IT.po index ce12eabfb31..46c7218bcc1 100644 --- a/addons/hr_timesheet/i18n/it_IT.po +++ b/addons/hr_timesheet/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/lt_LT.po b/addons/hr_timesheet/i18n/lt_LT.po index 96d3523bbe3..a40fb5ea8c0 100644 --- a/addons/hr_timesheet/i18n/lt_LT.po +++ b/addons/hr_timesheet/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/nl_BE.po b/addons/hr_timesheet/i18n/nl_BE.po index 32e9c7ab6df..15051cf0208 100644 --- a/addons/hr_timesheet/i18n/nl_BE.po +++ b/addons/hr_timesheet/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/nl_NL.po b/addons/hr_timesheet/i18n/nl_NL.po index 6f64fc2c196..7417872dbad 100644 --- a/addons/hr_timesheet/i18n/nl_NL.po +++ b/addons/hr_timesheet/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/pl_PL.po b/addons/hr_timesheet/i18n/pl_PL.po index 1149b230a1e..fb2774efdf3 100644 --- a/addons/hr_timesheet/i18n/pl_PL.po +++ b/addons/hr_timesheet/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/pt_BR.po b/addons/hr_timesheet/i18n/pt_BR.po index 26fc9e36af1..e1b3ed0bc9f 100644 --- a/addons/hr_timesheet/i18n/pt_BR.po +++ b/addons/hr_timesheet/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/pt_PT.po b/addons/hr_timesheet/i18n/pt_PT.po index 9fea98182b4..711fd0264b8 100644 --- a/addons/hr_timesheet/i18n/pt_PT.po +++ b/addons/hr_timesheet/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/ro_RO.po b/addons/hr_timesheet/i18n/ro_RO.po index a401543c4c4..a746033260c 100644 --- a/addons/hr_timesheet/i18n/ro_RO.po +++ b/addons/hr_timesheet/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/ru_RU.po b/addons/hr_timesheet/i18n/ru_RU.po index 0506f8206ab..0e510700502 100644 --- a/addons/hr_timesheet/i18n/ru_RU.po +++ b/addons/hr_timesheet/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/sl_SL.po b/addons/hr_timesheet/i18n/sl_SL.po index 0f70f203604..dd9b0684a07 100644 --- a/addons/hr_timesheet/i18n/sl_SL.po +++ b/addons/hr_timesheet/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/sv_SV.po b/addons/hr_timesheet/i18n/sq_AL.po similarity index 98% rename from addons/hr_timesheet/i18n/sv_SV.po rename to addons/hr_timesheet/i18n/sq_AL.po index 4a16d83bc29..7b9749f6305 100644 --- a/addons/hr_timesheet/i18n/sv_SV.po +++ b/addons/hr_timesheet/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgstr "" #. module: hr_timesheet #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: hr_timesheet #: model:ir.actions.report.xml,name:hr_timesheet.report_user_timesheet diff --git a/addons/hr_timesheet/i18n/sv_SE.po b/addons/hr_timesheet/i18n/sv_SE.po index a4f7cd4ac01..b624c314762 100644 --- a/addons/hr_timesheet/i18n/sv_SE.po +++ b/addons/hr_timesheet/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/tr_TR.po b/addons/hr_timesheet/i18n/tr_TR.po index ac2712c4fc6..3c6fca8d4ae 100644 --- a/addons/hr_timesheet/i18n/tr_TR.po +++ b/addons/hr_timesheet/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/uk_UK.po b/addons/hr_timesheet/i18n/uk_UA.po similarity index 98% rename from addons/hr_timesheet/i18n/uk_UK.po rename to addons/hr_timesheet/i18n/uk_UA.po index e5afbcf831d..fdcbda0ee35 100644 --- a/addons/hr_timesheet/i18n/uk_UK.po +++ b/addons/hr_timesheet/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/cs_CS.po b/addons/hr_timesheet/i18n/vi_VN.po similarity index 94% rename from addons/hr_timesheet/i18n/cs_CS.po rename to addons/hr_timesheet/i18n/vi_VN.po index de3b5f949e5..92812642f83 100644 --- a/addons/hr_timesheet/i18n/cs_CS.po +++ b/addons/hr_timesheet/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: wizard_view:hr.analytical.timesheet,init:0 #: wizard_view:hr.analytical.timesheet.my,init:0 msgid "Choose your month" -msgstr "Vyberte měsíc" +msgstr "" #. module: hr_timesheet #: constraint:ir.model:0 @@ -40,7 +40,7 @@ msgstr "" #. module: hr_timesheet #: wizard_button:hr_timesheet.si_so,sign_in,so_result_end:0 msgid "Stop Working" -msgstr "Ukončit práci" +msgstr "" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_in:0 @@ -65,7 +65,7 @@ msgstr "" #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_out,server_date:0 msgid "Current Date" -msgstr "Současné datum" +msgstr "" #. module: hr_timesheet #: constraint:ir.actions.act_window:0 @@ -77,7 +77,7 @@ msgstr "" #: wizard_button:hr.analytical.timesheet.my,init,report:0 #: wizard_button:hr.analytical.timesheet_users,init,report:0 msgid "Print" -msgstr "Tisk" +msgstr "" #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 @@ -87,13 +87,13 @@ msgstr "" #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,server_date:0 msgid "Current Server Date" -msgstr "Současné datum ze serveru" +msgstr "" #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,date_start:0 #: wizard_field:hr_timesheet.si_so,sign_out,date:0 msgid "Starting Date" -msgstr "Počáteční datum" +msgstr "" #. module: hr_timesheet #: field:hr.employee,product_id:0 @@ -183,12 +183,12 @@ msgstr "" #: wizard_field:hr.analytical.timesheet,init,user_id:0 #: wizard_field:hr.analytical.timesheet.my,init,user_id:0 msgid "User" -msgstr "Uživatel" +msgstr "" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_out:0 msgid "Sign in" -msgstr "Přihlásit" +msgstr "" #. module: hr_timesheet #: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_today_form @@ -199,7 +199,7 @@ msgstr "" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_out:0 msgid "(local time on the server side)" -msgstr "(lokální čas na serveru)" +msgstr "" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -214,7 +214,7 @@ msgstr "" #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,date:0 msgid "Closing Date" -msgstr "Koncové datum" +msgstr "" #. module: hr_timesheet #: constraint:ir.ui.view:0 @@ -241,7 +241,7 @@ msgstr "" #. module: hr_timesheet #: wizard_view:hr.analytical.timesheet_users,init:0 msgid "Choose Users" -msgstr "Uživatelé" +msgstr "" #. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 @@ -253,7 +253,7 @@ msgstr "" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_out:0 msgid "Sign in / Sign out" -msgstr "Přihlásit / Odhlásit" +msgstr "" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_in:0 @@ -269,7 +269,7 @@ msgstr "" #: wizard_field:hr_timesheet.si_so,sign_in,state:0 #: wizard_field:hr_timesheet.si_so,sign_out,state:0 msgid "Current state" -msgstr "Současné datum" +msgstr "" #. module: hr_timesheet #: selection:hr.analytical.timesheet,init,month:0 @@ -293,13 +293,13 @@ msgstr "" #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,info:0 msgid "Work Description" -msgstr "Popis práce" +msgstr "" #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,name:0 #: wizard_field:hr_timesheet.si_so,sign_out,name:0 msgid "Employee's name" -msgstr "Jméno zaměstnance" +msgstr "" #. module: hr_timesheet #: model:product.template,name:hr_timesheet.product_consultant_product_template @@ -356,7 +356,7 @@ msgstr "" #. module: hr_timesheet #: wizard_button:hr_timesheet.si_so,sign_out,si_result:0 msgid "Start Working" -msgstr "Začít pracovat" +msgstr "" #. module: hr_timesheet #: wizard_button:hr_timesheet.si_so,sign_in,so_result:0 @@ -381,17 +381,17 @@ msgstr "" #: wizard_field:hr.analytical.timesheet.my,init,month:0 #: wizard_field:hr.analytical.timesheet_users,init,month:0 msgid "Month" -msgstr "Měsíc" +msgstr "" #. module: hr_timesheet #: wizard_field:hr_timesheet.si_so,sign_in,account_id:0 msgid "Analytic Account" -msgstr "Analytický účet" +msgstr "" #. module: hr_timesheet #: wizard_view:hr_timesheet.si_so,sign_in:0 msgid "General Information" -msgstr "Obecné informace" +msgstr "" #. module: hr_timesheet #: model:process.process,name:hr_timesheet.process_process_timesheetprocess0 @@ -423,7 +423,7 @@ msgstr "" #: wizard_field:hr.analytical.timesheet.my,init,year:0 #: wizard_field:hr.analytical.timesheet_users,init,year:0 msgid "Year" -msgstr "Rok" +msgstr "" #. module: hr_timesheet #: wizard_button:hr.analytical.timesheet,init,end:0 @@ -432,13 +432,13 @@ msgstr "Rok" #: wizard_button:hr_timesheet.si_so,sign_in,end:0 #: wizard_button:hr_timesheet.si_so,sign_out,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: hr_timesheet #: view:account.analytic.account:0 #: wizard_field:hr.analytical.timesheet_users,init,user_ids:0 msgid "Users" -msgstr "Uživatelé" +msgstr "" #. module: hr_timesheet #: model:product.uom.categ,name:hr_timesheet.uom_categ_wtime diff --git a/addons/hr_timesheet/i18n/zh_CN.po b/addons/hr_timesheet/i18n/zh_CN.po index b27beccf338..a55c1f4f1a6 100644 --- a/addons/hr_timesheet/i18n/zh_CN.po +++ b/addons/hr_timesheet/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/zh_TW.po b/addons/hr_timesheet/i18n/zh_TW.po index a899e440d3c..5805c3e46bc 100644 --- a/addons/hr_timesheet/i18n/zh_TW.po +++ b/addons/hr_timesheet/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/ar_AR.po b/addons/hr_timesheet_invoice/i18n/ar_AR.po index e61a1fde4e5..f56d374c313 100644 --- a/addons/hr_timesheet_invoice/i18n/ar_AR.po +++ b/addons/hr_timesheet_invoice/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/bg_BG.po b/addons/hr_timesheet_invoice/i18n/bg_BG.po index 75caa05fbc9..f8566ef4856 100644 --- a/addons/hr_timesheet_invoice/i18n/bg_BG.po +++ b/addons/hr_timesheet_invoice/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/bs_BS.po b/addons/hr_timesheet_invoice/i18n/bs_BS.po index 043f084d009..2347c632c93 100644 --- a/addons/hr_timesheet_invoice/i18n/bs_BS.po +++ b/addons/hr_timesheet_invoice/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/ca_ES.po b/addons/hr_timesheet_invoice/i18n/ca_ES.po index aed26c5d738..af33e043ddc 100644 --- a/addons/hr_timesheet_invoice/i18n/ca_ES.po +++ b/addons/hr_timesheet_invoice/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/cs_CZ.po b/addons/hr_timesheet_invoice/i18n/cs_CZ.po index 75b1a1be9b4..13ec801d076 100644 --- a/addons/hr_timesheet_invoice/i18n/cs_CZ.po +++ b/addons/hr_timesheet_invoice/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/de_DE.po b/addons/hr_timesheet_invoice/i18n/de_DE.po index bf1d8b8bfa2..c78112826f9 100644 --- a/addons/hr_timesheet_invoice/i18n/de_DE.po +++ b/addons/hr_timesheet_invoice/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/es_AR.po b/addons/hr_timesheet_invoice/i18n/es_AR.po index 92d60e42da2..1ae0a508f95 100644 --- a/addons/hr_timesheet_invoice/i18n/es_AR.po +++ b/addons/hr_timesheet_invoice/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/es_ES.po b/addons/hr_timesheet_invoice/i18n/es_ES.po index 6d25cd9e6c3..b9836d2867f 100644 --- a/addons/hr_timesheet_invoice/i18n/es_ES.po +++ b/addons/hr_timesheet_invoice/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/et_EE.po b/addons/hr_timesheet_invoice/i18n/et_EE.po index 7d45aee314d..1f6161b5368 100644 --- a/addons/hr_timesheet_invoice/i18n/et_EE.po +++ b/addons/hr_timesheet_invoice/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/fi_FI.po b/addons/hr_timesheet_invoice/i18n/fi_FI.po index caefd4f1eef..ce8e85b22f5 100644 --- a/addons/hr_timesheet_invoice/i18n/fi_FI.po +++ b/addons/hr_timesheet_invoice/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/fr_FR.po b/addons/hr_timesheet_invoice/i18n/fr_FR.po index f003d921572..9401628a5aa 100644 --- a/addons/hr_timesheet_invoice/i18n/fr_FR.po +++ b/addons/hr_timesheet_invoice/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "Forcer l'utilisation d'un produit spécifique" #. module: hr_timesheet_invoice #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 diff --git a/addons/hr_timesheet_invoice/i18n/hr_HR.po b/addons/hr_timesheet_invoice/i18n/hr_HR.po index c48579f461e..9bab442ec9a 100644 --- a/addons/hr_timesheet_invoice/i18n/hr_HR.po +++ b/addons/hr_timesheet_invoice/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+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 9d7ff74dbb1..35b924e3483 100644 --- a/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot +++ b/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/hu_HU.po b/addons/hr_timesheet_invoice/i18n/hu_HU.po index f3c83ef3bce..6dabe464b09 100644 --- a/addons/hr_timesheet_invoice/i18n/hu_HU.po +++ b/addons/hr_timesheet_invoice/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/id_ID.po b/addons/hr_timesheet_invoice/i18n/id_ID.po index e34c6b5f77a..ff3d1f81721 100644 --- a/addons/hr_timesheet_invoice/i18n/id_ID.po +++ b/addons/hr_timesheet_invoice/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/it_IT.po b/addons/hr_timesheet_invoice/i18n/it_IT.po index 44dccf1f5e6..fdeab84e9ab 100644 --- a/addons/hr_timesheet_invoice/i18n/it_IT.po +++ b/addons/hr_timesheet_invoice/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/lt_LT.po b/addons/hr_timesheet_invoice/i18n/lt_LT.po index 6a911062942..3f5b8f45a8e 100644 --- a/addons/hr_timesheet_invoice/i18n/lt_LT.po +++ b/addons/hr_timesheet_invoice/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/nl_BE.po b/addons/hr_timesheet_invoice/i18n/nl_BE.po index f12a183d6b4..85fdc902589 100644 --- a/addons/hr_timesheet_invoice/i18n/nl_BE.po +++ b/addons/hr_timesheet_invoice/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/nl_NL.po b/addons/hr_timesheet_invoice/i18n/nl_NL.po index 7b4e46ac7fc..278b9dff77e 100644 --- a/addons/hr_timesheet_invoice/i18n/nl_NL.po +++ b/addons/hr_timesheet_invoice/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/pl_PL.po b/addons/hr_timesheet_invoice/i18n/pl_PL.po index 8c1196dc0fb..0bb86188170 100644 --- a/addons/hr_timesheet_invoice/i18n/pl_PL.po +++ b/addons/hr_timesheet_invoice/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/pt_BR.po b/addons/hr_timesheet_invoice/i18n/pt_BR.po index 2b88c53d39d..9d4e7e4272e 100644 --- a/addons/hr_timesheet_invoice/i18n/pt_BR.po +++ b/addons/hr_timesheet_invoice/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/pt_PT.po b/addons/hr_timesheet_invoice/i18n/pt_PT.po index bd8ddb0797e..a576f8d077d 100644 --- a/addons/hr_timesheet_invoice/i18n/pt_PT.po +++ b/addons/hr_timesheet_invoice/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/ro_RO.po b/addons/hr_timesheet_invoice/i18n/ro_RO.po index 6d553b4de86..a99eb149e06 100644 --- a/addons/hr_timesheet_invoice/i18n/ro_RO.po +++ b/addons/hr_timesheet_invoice/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/ru_RU.po b/addons/hr_timesheet_invoice/i18n/ru_RU.po index 62a498dc5d0..303ddb988bb 100644 --- a/addons/hr_timesheet_invoice/i18n/ru_RU.po +++ b/addons/hr_timesheet_invoice/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/sl_SL.po b/addons/hr_timesheet_invoice/i18n/sl_SL.po index 88ef22416c4..a14dad0b24b 100644 --- a/addons/hr_timesheet_invoice/i18n/sl_SL.po +++ b/addons/hr_timesheet_invoice/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/sv_SV.po b/addons/hr_timesheet_invoice/i18n/sq_AL.po similarity index 98% rename from addons/hr_timesheet_invoice/i18n/sv_SV.po rename to addons/hr_timesheet_invoice/i18n/sq_AL.po index ccf46ba81f2..e068d70294f 100644 --- a/addons/hr_timesheet_invoice/i18n/sv_SV.po +++ b/addons/hr_timesheet_invoice/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -385,7 +385,7 @@ msgstr "" #. module: hr_timesheet_invoice #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: hr_timesheet_invoice #: wizard_field:account.analytic.profit,init,employee_ids:0 diff --git a/addons/hr_timesheet_invoice/i18n/sv_SE.po b/addons/hr_timesheet_invoice/i18n/sv_SE.po index 6662c57bf07..a5acd85b86f 100644 --- a/addons/hr_timesheet_invoice/i18n/sv_SE.po +++ b/addons/hr_timesheet_invoice/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/tr_TR.po b/addons/hr_timesheet_invoice/i18n/tr_TR.po index f9fc3ad1d8b..38f500b96c5 100644 --- a/addons/hr_timesheet_invoice/i18n/tr_TR.po +++ b/addons/hr_timesheet_invoice/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/uk_UK.po b/addons/hr_timesheet_invoice/i18n/uk_UA.po similarity index 99% rename from addons/hr_timesheet_invoice/i18n/uk_UK.po rename to addons/hr_timesheet_invoice/i18n/uk_UA.po index 094e4ea7368..df2b972750f 100644 --- a/addons/hr_timesheet_invoice/i18n/uk_UK.po +++ b/addons/hr_timesheet_invoice/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/cs_CS.po b/addons/hr_timesheet_invoice/i18n/vi_VN.po similarity index 97% rename from addons/hr_timesheet_invoice/i18n/cs_CS.po rename to addons/hr_timesheet_invoice/i18n/vi_VN.po index b425b299af6..32c7a499792 100644 --- a/addons/hr_timesheet_invoice/i18n/cs_CS.po +++ b/addons/hr_timesheet_invoice/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "" #: wizard_field:hr.timesheet.final.invoice.create,init,time:0 #: wizard_field:hr.timesheet.invoice.create,init,time:0 msgid "Time spent" -msgstr "Strávený čas" +msgstr "" #. module: hr_timesheet_invoice #: field:account.analytic.account,amount_invoiced:0 @@ -146,7 +146,7 @@ msgstr "" #. module: hr_timesheet_invoice #: wizard_view:account.analytic.profit,init:0 msgid "Choose" -msgstr "Vybrat" +msgstr "" #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 @@ -223,7 +223,7 @@ msgstr "" #: wizard_field:hr.timesheet.final.invoice.create,init,name:0 #: wizard_field:hr.timesheet.invoice.create,init,name:0 msgid "Name of entry" -msgstr "Název položky" +msgstr "" #. module: hr_timesheet_invoice #: rml:account.analytic.profit:0 @@ -249,7 +249,7 @@ msgstr "" #. module: hr_timesheet_invoice #: wizard_button:hr.timesheet.final.invoice.create,init,create:0 msgid "Create invoices" -msgstr "Vytvořit faktury" +msgstr "" #. module: hr_timesheet_invoice #: wizard_view:hr.timesheet.final.invoice.create,init:0 @@ -264,7 +264,7 @@ msgstr "" #. module: hr_timesheet_invoice #: wizard_field:account.analytic.profit,init,date_from:0 msgid "From" -msgstr "Od" +msgstr "" #. module: hr_timesheet_invoice #: help:account.analytic.account,amount_invoiced:0 @@ -317,7 +317,7 @@ msgstr "" #. module: hr_timesheet_invoice #: wizard_field:hr.timesheet.invoice.create,init,accounts:0 msgid "Analytic Accounts" -msgstr "Analytické účty" +msgstr "" #. module: hr_timesheet_invoice #: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 @@ -352,7 +352,7 @@ msgstr "" #. module: hr_timesheet_invoice #: wizard_field:account.analytic.profit,init,date_to:0 msgid "To" -msgstr "Do" +msgstr "" #. module: hr_timesheet_invoice #: wizard_view:hr.timesheet.invoice.create,init:0 @@ -405,7 +405,7 @@ msgstr "" #. module: hr_timesheet_invoice #: wizard_view:hr.timesheet.invoice.create,init:0 msgid "Choose accounts you want to invoice" -msgstr "Vyberte účet který chcete fakturovat." +msgstr "" #. module: hr_timesheet_invoice #: wizard_field:hr.timesheet.invoice.create,init,product:0 diff --git a/addons/hr_timesheet_invoice/i18n/zh_CN.po b/addons/hr_timesheet_invoice/i18n/zh_CN.po index 644245a9ba6..29453ad2c8b 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_CN.po +++ b/addons/hr_timesheet_invoice/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/zh_TW.po b/addons/hr_timesheet_invoice/i18n/zh_TW.po index 2e52dbfa470..98899b38bff 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_TW.po +++ b/addons/hr_timesheet_invoice/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/ar_AR.po b/addons/hr_timesheet_sheet/i18n/ar_AR.po index b9866aa2dc9..2cf00ab8e7c 100644 --- a/addons/hr_timesheet_sheet/i18n/ar_AR.po +++ b/addons/hr_timesheet_sheet/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/bg_BG.po b/addons/hr_timesheet_sheet/i18n/bg_BG.po index 6b79f0be75c..58a41c02580 100644 --- a/addons/hr_timesheet_sheet/i18n/bg_BG.po +++ b/addons/hr_timesheet_sheet/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:42+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/bs_BS.po b/addons/hr_timesheet_sheet/i18n/bs_BS.po index 15e331e723d..2856a182201 100644 --- a/addons/hr_timesheet_sheet/i18n/bs_BS.po +++ b/addons/hr_timesheet_sheet/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/ca_ES.po b/addons/hr_timesheet_sheet/i18n/ca_ES.po index 6cb823f566e..9ab4e9761e2 100644 --- a/addons/hr_timesheet_sheet/i18n/ca_ES.po +++ b/addons/hr_timesheet_sheet/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/cs_CZ.po b/addons/hr_timesheet_sheet/i18n/cs_CZ.po index aeedfaa5fe1..3b8677c22a5 100644 --- a/addons/hr_timesheet_sheet/i18n/cs_CZ.po +++ b/addons/hr_timesheet_sheet/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/de_DE.po b/addons/hr_timesheet_sheet/i18n/de_DE.po index 3749188116f..e02ef62df22 100644 --- a/addons/hr_timesheet_sheet/i18n/de_DE.po +++ b/addons/hr_timesheet_sheet/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/es_AR.po b/addons/hr_timesheet_sheet/i18n/es_AR.po index b9a9211e8c7..97596d67d9f 100644 --- a/addons/hr_timesheet_sheet/i18n/es_AR.po +++ b/addons/hr_timesheet_sheet/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/es_ES.po b/addons/hr_timesheet_sheet/i18n/es_ES.po index 94ecc9b5d5a..04401ef4427 100644 --- a/addons/hr_timesheet_sheet/i18n/es_ES.po +++ b/addons/hr_timesheet_sheet/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/et_EE.po b/addons/hr_timesheet_sheet/i18n/et_EE.po index 1d5a2c0efed..184342be4df 100644 --- a/addons/hr_timesheet_sheet/i18n/et_EE.po +++ b/addons/hr_timesheet_sheet/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/fi_FI.po b/addons/hr_timesheet_sheet/i18n/fi_FI.po index b6572bd8db4..c6e0de86530 100644 --- a/addons/hr_timesheet_sheet/i18n/fi_FI.po +++ b/addons/hr_timesheet_sheet/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/fr_FR.po b/addons/hr_timesheet_sheet/i18n/fr_FR.po index e48f42806a9..24b95e48675 100644 --- a/addons/hr_timesheet_sheet/i18n/fr_FR.po +++ b/addons/hr_timesheet_sheet/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -37,7 +37,7 @@ msgstr "Feuille" #. module: hr_timesheet_sheet #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,total_attendance:0 diff --git a/addons/hr_timesheet_sheet/i18n/hr_HR.po b/addons/hr_timesheet_sheet/i18n/hr_HR.po index 322338ed44a..541a107d3f8 100644 --- a/addons/hr_timesheet_sheet/i18n/hr_HR.po +++ b/addons/hr_timesheet_sheet/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot b/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot index dc2e7dfc369..0a8b54157c6 100644 --- a/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot +++ b/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/hu_HU.po b/addons/hr_timesheet_sheet/i18n/hu_HU.po index 9329fa2ef47..3fe343bc11d 100644 --- a/addons/hr_timesheet_sheet/i18n/hu_HU.po +++ b/addons/hr_timesheet_sheet/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/id_ID.po b/addons/hr_timesheet_sheet/i18n/id_ID.po index dce8c82c3b0..59ad5005054 100644 --- a/addons/hr_timesheet_sheet/i18n/id_ID.po +++ b/addons/hr_timesheet_sheet/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/it_IT.po b/addons/hr_timesheet_sheet/i18n/it_IT.po index a1f943383b6..37491c2c38b 100644 --- a/addons/hr_timesheet_sheet/i18n/it_IT.po +++ b/addons/hr_timesheet_sheet/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/lt_LT.po b/addons/hr_timesheet_sheet/i18n/lt_LT.po index 4230942626b..5fd5a857b31 100644 --- a/addons/hr_timesheet_sheet/i18n/lt_LT.po +++ b/addons/hr_timesheet_sheet/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:28+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/nl_BE.po b/addons/hr_timesheet_sheet/i18n/nl_BE.po index a1124d5d55f..b3bb910bb47 100644 --- a/addons/hr_timesheet_sheet/i18n/nl_BE.po +++ b/addons/hr_timesheet_sheet/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/nl_NL.po b/addons/hr_timesheet_sheet/i18n/nl_NL.po index 46c146267e8..d29b6c31d30 100644 --- a/addons/hr_timesheet_sheet/i18n/nl_NL.po +++ b/addons/hr_timesheet_sheet/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/pl_PL.po b/addons/hr_timesheet_sheet/i18n/pl_PL.po index acf28a4dd50..bff2ca38410 100644 --- a/addons/hr_timesheet_sheet/i18n/pl_PL.po +++ b/addons/hr_timesheet_sheet/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/pt_BR.po b/addons/hr_timesheet_sheet/i18n/pt_BR.po index ba2418ae8b7..ad0b2c881bb 100644 --- a/addons/hr_timesheet_sheet/i18n/pt_BR.po +++ b/addons/hr_timesheet_sheet/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/pt_PT.po b/addons/hr_timesheet_sheet/i18n/pt_PT.po index 3a19086aa19..94b2e091139 100644 --- a/addons/hr_timesheet_sheet/i18n/pt_PT.po +++ b/addons/hr_timesheet_sheet/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/ro_RO.po b/addons/hr_timesheet_sheet/i18n/ro_RO.po index 98050084562..efd2d088b4b 100644 --- a/addons/hr_timesheet_sheet/i18n/ro_RO.po +++ b/addons/hr_timesheet_sheet/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/ru_RU.po b/addons/hr_timesheet_sheet/i18n/ru_RU.po index f471a11a4dc..beeff7e8b94 100644 --- a/addons/hr_timesheet_sheet/i18n/ru_RU.po +++ b/addons/hr_timesheet_sheet/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/sl_SL.po b/addons/hr_timesheet_sheet/i18n/sl_SL.po index 7d15c55b50a..f47f9e7543a 100644 --- a/addons/hr_timesheet_sheet/i18n/sl_SL.po +++ b/addons/hr_timesheet_sheet/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/cs_CS.po b/addons/hr_timesheet_sheet/i18n/sq_AL.po similarity index 99% rename from addons/hr_timesheet_sheet/i18n/cs_CS.po rename to addons/hr_timesheet_sheet/i18n/sq_AL.po index 472fe520466..3c8357bb980 100644 --- a/addons/hr_timesheet_sheet/i18n/cs_CS.po +++ b/addons/hr_timesheet_sheet/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -263,7 +263,7 @@ msgstr "" #. module: hr_timesheet_sheet #: view:res.company:0 msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: hr_timesheet_sheet #: selection:res.company,timesheet_range:0 diff --git a/addons/hr_timesheet_sheet/i18n/sv_SE.po b/addons/hr_timesheet_sheet/i18n/sv_SE.po index 7c1f4782ad6..a49475ef51c 100644 --- a/addons/hr_timesheet_sheet/i18n/sv_SE.po +++ b/addons/hr_timesheet_sheet/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/tr_TR.po b/addons/hr_timesheet_sheet/i18n/tr_TR.po index fca9dcc997c..09310d9830b 100644 --- a/addons/hr_timesheet_sheet/i18n/tr_TR.po +++ b/addons/hr_timesheet_sheet/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/uk_UK.po b/addons/hr_timesheet_sheet/i18n/uk_UA.po similarity index 99% rename from addons/hr_timesheet_sheet/i18n/uk_UK.po rename to addons/hr_timesheet_sheet/i18n/uk_UA.po index 899a4ae5558..7121ca4a170 100644 --- a/addons/hr_timesheet_sheet/i18n/uk_UK.po +++ b/addons/hr_timesheet_sheet/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/sv_SV.po b/addons/hr_timesheet_sheet/i18n/vi_VN.po similarity index 98% rename from addons/hr_timesheet_sheet/i18n/sv_SV.po rename to addons/hr_timesheet_sheet/i18n/vi_VN.po index 0b8b24f2131..38b6d2f544a 100644 --- a/addons/hr_timesheet_sheet/i18n/sv_SV.po +++ b/addons/hr_timesheet_sheet/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -263,7 +263,7 @@ msgstr "" #. module: hr_timesheet_sheet #: view:res.company:0 msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: hr_timesheet_sheet #: selection:res.company,timesheet_range:0 @@ -451,7 +451,7 @@ msgstr "" #. module: hr_timesheet_sheet #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_validatetimesheet0 diff --git a/addons/hr_timesheet_sheet/i18n/zh_CN.po b/addons/hr_timesheet_sheet/i18n/zh_CN.po index ec8ee1792c8..5e19a86475e 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_CN.po +++ b/addons/hr_timesheet_sheet/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_sheet/i18n/zh_TW.po b/addons/hr_timesheet_sheet/i18n/zh_TW.po index afbffc1bc22..a1c7fbb8525 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_TW.po +++ b/addons/hr_timesheet_sheet/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/ar_AR.po b/addons/idea/i18n/ar_AR.po index 1da4964fc84..72ed95e0da5 100644 --- a/addons/idea/i18n/ar_AR.po +++ b/addons/idea/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/bg_BG.po b/addons/idea/i18n/bg_BG.po index 86b290bba17..71db7efbbc4 100644 --- a/addons/idea/i18n/bg_BG.po +++ b/addons/idea/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/bs_BS.po b/addons/idea/i18n/bs_BS.po index 69ad91bd49a..e3048157c18 100644 --- a/addons/idea/i18n/bs_BS.po +++ b/addons/idea/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/ca_ES.po b/addons/idea/i18n/ca_ES.po index fa1163c660f..d3f592b0054 100644 --- a/addons/idea/i18n/ca_ES.po +++ b/addons/idea/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/cs_CZ.po b/addons/idea/i18n/cs_CZ.po index 35ccb5d372f..16a57685ee6 100644 --- a/addons/idea/i18n/cs_CZ.po +++ b/addons/idea/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/de_DE.po b/addons/idea/i18n/de_DE.po index 8c1deba68bb..03845bda2a5 100644 --- a/addons/idea/i18n/de_DE.po +++ b/addons/idea/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/es_AR.po b/addons/idea/i18n/es_AR.po index 262e2db46ad..05357047b3d 100644 --- a/addons/idea/i18n/es_AR.po +++ b/addons/idea/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/es_ES.po b/addons/idea/i18n/es_ES.po index 5b3ab989673..a67b366769f 100644 --- a/addons/idea/i18n/es_ES.po +++ b/addons/idea/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/et_EE.po b/addons/idea/i18n/et_EE.po index 7451b01d9ca..f0bedc0a3a6 100644 --- a/addons/idea/i18n/et_EE.po +++ b/addons/idea/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/fi_FI.po b/addons/idea/i18n/fi_FI.po index 651c5abd3df..785c94ec947 100644 --- a/addons/idea/i18n/fi_FI.po +++ b/addons/idea/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/fr_FR.po b/addons/idea/i18n/fr_FR.po index 4d20ecb35f1..1f43119489a 100644 --- a/addons/idea/i18n/fr_FR.po +++ b/addons/idea/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Mes Idées" #. module: idea #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: idea #: selection:idea.idea,my_vote:0 diff --git a/addons/idea/i18n/hr_HR.po b/addons/idea/i18n/hr_HR.po index 76ee9e77d25..c866fde26e4 100644 --- a/addons/idea/i18n/hr_HR.po +++ b/addons/idea/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/hu_HU.po b/addons/idea/i18n/hu_HU.po index de4ec2600d3..84864248b45 100644 --- a/addons/idea/i18n/hu_HU.po +++ b/addons/idea/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/id_ID.po b/addons/idea/i18n/id_ID.po index f713580da1a..2b2a74c3926 100644 --- a/addons/idea/i18n/id_ID.po +++ b/addons/idea/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/idea.pot b/addons/idea/i18n/idea.pot index 6250e918102..a4be99af911 100644 --- a/addons/idea/i18n/idea.pot +++ b/addons/idea/i18n/idea.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/it_IT.po b/addons/idea/i18n/it_IT.po index 3248db26577..fcffe58814d 100644 --- a/addons/idea/i18n/it_IT.po +++ b/addons/idea/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/lt_LT.po b/addons/idea/i18n/lt_LT.po index a7e3de189db..243610f6895 100644 --- a/addons/idea/i18n/lt_LT.po +++ b/addons/idea/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/nl_BE.po b/addons/idea/i18n/nl_BE.po index 1843eab7e26..983cd977c8e 100644 --- a/addons/idea/i18n/nl_BE.po +++ b/addons/idea/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/nl_NL.po b/addons/idea/i18n/nl_NL.po index 73dd720ef14..e61b397bd6a 100644 --- a/addons/idea/i18n/nl_NL.po +++ b/addons/idea/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/pl_PL.po b/addons/idea/i18n/pl_PL.po index 6e48f0982cd..37a3dd530ef 100644 --- a/addons/idea/i18n/pl_PL.po +++ b/addons/idea/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/pt_BR.po b/addons/idea/i18n/pt_BR.po index b92c3c24bf5..107bd88a922 100644 --- a/addons/idea/i18n/pt_BR.po +++ b/addons/idea/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/pt_PT.po b/addons/idea/i18n/pt_PT.po index cf275effcd8..6a6876ad818 100644 --- a/addons/idea/i18n/pt_PT.po +++ b/addons/idea/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/ro_RO.po b/addons/idea/i18n/ro_RO.po index b6df5677844..4020bf9a478 100644 --- a/addons/idea/i18n/ro_RO.po +++ b/addons/idea/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/ru_RU.po b/addons/idea/i18n/ru_RU.po index 6e0ca1091d1..751e5d7e20f 100644 --- a/addons/idea/i18n/ru_RU.po +++ b/addons/idea/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/sl_SL.po b/addons/idea/i18n/sl_SL.po index 2153e1d514e..d889e44bb27 100644 --- a/addons/idea/i18n/sl_SL.po +++ b/addons/idea/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/cs_CS.po b/addons/idea/i18n/sq_AL.po similarity index 97% rename from addons/idea/i18n/cs_CS.po rename to addons/idea/i18n/sq_AL.po index 7d55c2e6148..2c30edd23f5 100644 --- a/addons/idea/i18n/cs_CS.po +++ b/addons/idea/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -180,13 +180,13 @@ msgstr "" #. module: idea #: model:ir.ui.menu,name:idea.menu_config msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: idea #: model:ir.actions.act_window,name:idea.action_idea_category #: model:ir.ui.menu,name:idea.menu_idea_category msgid "Categories" -msgstr "Kategorie" +msgstr "" #. module: idea #: view:idea.stat:0 diff --git a/addons/idea/i18n/sv_SE.po b/addons/idea/i18n/sv_SE.po index fb502a9ff75..a189e1bfbba 100644 --- a/addons/idea/i18n/sv_SE.po +++ b/addons/idea/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/tr_TR.po b/addons/idea/i18n/tr_TR.po index 186e2292b25..5259f2b4333 100644 --- a/addons/idea/i18n/tr_TR.po +++ b/addons/idea/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/uk_UK.po b/addons/idea/i18n/uk_UA.po similarity index 98% rename from addons/idea/i18n/uk_UK.po rename to addons/idea/i18n/uk_UA.po index 90cf786567f..10b708e04db 100644 --- a/addons/idea/i18n/uk_UK.po +++ b/addons/idea/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/sv_SV.po b/addons/idea/i18n/vi_VN.po similarity index 96% rename from addons/idea/i18n/sv_SV.po rename to addons/idea/i18n/vi_VN.po index ef31d66acad..9c9e6ecff59 100644 --- a/addons/idea/i18n/sv_SV.po +++ b/addons/idea/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -105,7 +105,7 @@ msgstr "" #. module: idea #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: idea #: model:ir.model,name:idea.model_idea_category @@ -180,13 +180,13 @@ msgstr "" #. module: idea #: model:ir.ui.menu,name:idea.menu_config msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: idea #: model:ir.actions.act_window,name:idea.action_idea_category #: model:ir.ui.menu,name:idea.menu_idea_category msgid "Categories" -msgstr "Kategorier" +msgstr "" #. module: idea #: view:idea.stat:0 @@ -319,7 +319,7 @@ msgstr "" #. module: idea #: model:ir.ui.menu,name:idea.menu_tools msgid "Tools" -msgstr "Verktyg" +msgstr "" #. module: idea #: field:idea.comment,idea_id:0 diff --git a/addons/idea/i18n/zh_CN.po b/addons/idea/i18n/zh_CN.po index 4182c55c708..6b40f9d5205 100644 --- a/addons/idea/i18n/zh_CN.po +++ b/addons/idea/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/idea/i18n/zh_TW.po b/addons/idea/i18n/zh_TW.po index da65a53d299..f6c49b90381 100644 --- a/addons/idea/i18n/zh_TW.po +++ b/addons/idea/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/ar_AR.po b/addons/l10n_be/i18n/ar_AR.po index 2abc35c0424..7ead644f988 100644 --- a/addons/l10n_be/i18n/ar_AR.po +++ b/addons/l10n_be/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/bg_BG.po b/addons/l10n_be/i18n/bg_BG.po index b0d20457108..78ef97a55b3 100644 --- a/addons/l10n_be/i18n/bg_BG.po +++ b/addons/l10n_be/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/bs_BS.po b/addons/l10n_be/i18n/bs_BS.po index aebb0031d94..c6d45423d40 100644 --- a/addons/l10n_be/i18n/bs_BS.po +++ b/addons/l10n_be/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/ca_ES.po b/addons/l10n_be/i18n/ca_ES.po index 39490bd2dfe..93375c36941 100644 --- a/addons/l10n_be/i18n/ca_ES.po +++ b/addons/l10n_be/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/cs_CZ.po b/addons/l10n_be/i18n/cs_CZ.po index 14167e3cd3d..b4dc2268055 100644 --- a/addons/l10n_be/i18n/cs_CZ.po +++ b/addons/l10n_be/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/de_DE.po b/addons/l10n_be/i18n/de_DE.po index 6d2fe64343f..15e520d38ba 100644 --- a/addons/l10n_be/i18n/de_DE.po +++ b/addons/l10n_be/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/es_AR.po b/addons/l10n_be/i18n/es_AR.po index cc773e7b56c..c42c59e97a5 100644 --- a/addons/l10n_be/i18n/es_AR.po +++ b/addons/l10n_be/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/es_ES.po b/addons/l10n_be/i18n/es_ES.po index f4b88e89087..d109b17c22c 100644 --- a/addons/l10n_be/i18n/es_ES.po +++ b/addons/l10n_be/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/et_EE.po b/addons/l10n_be/i18n/et_EE.po index c96f1cb42f0..728ed0fb02b 100644 --- a/addons/l10n_be/i18n/et_EE.po +++ b/addons/l10n_be/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/fi_FI.po b/addons/l10n_be/i18n/fi_FI.po index d87969e0f41..b779daa1fa3 100644 --- a/addons/l10n_be/i18n/fi_FI.po +++ b/addons/l10n_be/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/fr_FR.po b/addons/l10n_be/i18n/fr_FR.po index 7a09d002835..d8a778556d5 100644 --- a/addons/l10n_be/i18n/fr_FR.po +++ b/addons/l10n_be/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/hr_HR.po b/addons/l10n_be/i18n/hr_HR.po index 6e1a730a598..23c846a8366 100644 --- a/addons/l10n_be/i18n/hr_HR.po +++ b/addons/l10n_be/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/hu_HU.po b/addons/l10n_be/i18n/hu_HU.po index dac5cb4db4c..bbc9bf5040c 100644 --- a/addons/l10n_be/i18n/hu_HU.po +++ b/addons/l10n_be/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/id_ID.po b/addons/l10n_be/i18n/id_ID.po index f39696dd3e0..b727d96181f 100644 --- a/addons/l10n_be/i18n/id_ID.po +++ b/addons/l10n_be/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/it_IT.po b/addons/l10n_be/i18n/it_IT.po index c079810e67f..b51aafeb1fc 100644 --- a/addons/l10n_be/i18n/it_IT.po +++ b/addons/l10n_be/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/ko_KO.po b/addons/l10n_be/i18n/ko_KO.po index 43250efadc5..0c58c129dff 100644 --- a/addons/l10n_be/i18n/ko_KO.po +++ b/addons/l10n_be/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:09+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_be diff --git a/addons/l10n_be/i18n/l10n_be.pot b/addons/l10n_be/i18n/l10n_be.pot index 30ee1bb43ae..4b60e0e9a37 100644 --- a/addons/l10n_be/i18n/l10n_be.pot +++ b/addons/l10n_be/i18n/l10n_be.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/lt_LT.po b/addons/l10n_be/i18n/lt_LT.po index 4e3bdadc70d..5301e4bdaa0 100644 --- a/addons/l10n_be/i18n/lt_LT.po +++ b/addons/l10n_be/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/nl_BE.po b/addons/l10n_be/i18n/nl_BE.po index 90aec1820a2..8f3ba35f558 100644 --- a/addons/l10n_be/i18n/nl_BE.po +++ b/addons/l10n_be/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/nl_NL.po b/addons/l10n_be/i18n/nl_NL.po index d645c9e4505..dc6004f228b 100644 --- a/addons/l10n_be/i18n/nl_NL.po +++ b/addons/l10n_be/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/pl_PL.po b/addons/l10n_be/i18n/pl_PL.po index d4a4ed6ed8e..16b862d43c6 100644 --- a/addons/l10n_be/i18n/pl_PL.po +++ b/addons/l10n_be/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/pt_BR.po b/addons/l10n_be/i18n/pt_BR.po index 8e9a8ea9530..95f84c4f3b2 100644 --- a/addons/l10n_be/i18n/pt_BR.po +++ b/addons/l10n_be/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/pt_PT.po b/addons/l10n_be/i18n/pt_PT.po index c35a1bc4187..e27785b5717 100644 --- a/addons/l10n_be/i18n/pt_PT.po +++ b/addons/l10n_be/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -240,7 +240,7 @@ msgstr "Países Europeus" #. module: l10n_be #: wizard_view:vat.intra.xml,init:0 msgid "General Information" -msgstr "" +msgstr "Informação Geral" #. module: l10n_be #: wizard_view:list.vat.detail,go:0 diff --git a/addons/l10n_be/i18n/ro_RO.po b/addons/l10n_be/i18n/ro_RO.po index c7daef2d475..b9b674e6471 100644 --- a/addons/l10n_be/i18n/ro_RO.po +++ b/addons/l10n_be/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/ru_RU.po b/addons/l10n_be/i18n/ru_RU.po index cf11a32d0c7..8f81cd32760 100644 --- a/addons/l10n_be/i18n/ru_RU.po +++ b/addons/l10n_be/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/sl_SL.po b/addons/l10n_be/i18n/sl_SL.po index e6782519fd5..661878661c2 100644 --- a/addons/l10n_be/i18n/sl_SL.po +++ b/addons/l10n_be/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/cs_CS.po b/addons/l10n_be/i18n/sq_AL.po similarity index 98% rename from addons/l10n_be/i18n/cs_CS.po rename to addons/l10n_be/i18n/sq_AL.po index 4d6b8b0da57..8bf4f4de2c6 100644 --- a/addons/l10n_be/i18n/cs_CS.po +++ b/addons/l10n_be/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/sv_SE.po b/addons/l10n_be/i18n/sv_SE.po index 44f60f7f60a..a86b46ea4b6 100644 --- a/addons/l10n_be/i18n/sv_SE.po +++ b/addons/l10n_be/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/tr_TR.po b/addons/l10n_be/i18n/tr_TR.po index 1c9ed41fa8f..4887a9d2b2b 100644 --- a/addons/l10n_be/i18n/tr_TR.po +++ b/addons/l10n_be/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/uk_UK.po b/addons/l10n_be/i18n/uk_UA.po similarity index 98% rename from addons/l10n_be/i18n/uk_UK.po rename to addons/l10n_be/i18n/uk_UA.po index d90ff017878..e38f9b52e65 100644 --- a/addons/l10n_be/i18n/uk_UK.po +++ b/addons/l10n_be/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/sv_SV.po b/addons/l10n_be/i18n/vi_VN.po similarity index 97% rename from addons/l10n_be/i18n/sv_SV.po rename to addons/l10n_be/i18n/vi_VN.po index 7f45861ecd5..4157ba24ce6 100644 --- a/addons/l10n_be/i18n/sv_SV.po +++ b/addons/l10n_be/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -224,7 +224,7 @@ msgstr "" #. module: l10n_be #: model:account.account.type,name:l10n_be.user_type_tax msgid "Tax" -msgstr "Skatt" +msgstr "" #. module: l10n_be #: wizard_field:wizard.account.xml.vat.declaration,init,period:0 diff --git a/addons/l10n_be/i18n/zh_CN.po b/addons/l10n_be/i18n/zh_CN.po index 42461ba4099..4cb1aa2b73c 100644 --- a/addons/l10n_be/i18n/zh_CN.po +++ b/addons/l10n_be/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/zh_TW.po b/addons/l10n_be/i18n/zh_TW.po index a251b49541e..0305347622e 100644 --- a/addons/l10n_be/i18n/zh_TW.po +++ b/addons/l10n_be/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/znd_ZND.po b/addons/l10n_be/i18n/znd_ZND.po index 106f400408f..3e3b5b96b0a 100644 --- a/addons/l10n_be/i18n/znd_ZND.po +++ b/addons/l10n_be/i18n/znd_ZND.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:09+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_be diff --git a/addons/l10n_ch/i18n/ar_AR.po b/addons/l10n_ch/i18n/ar_AR.po index 2d32a4820bc..e2aaf718d72 100644 --- a/addons/l10n_ch/i18n/ar_AR.po +++ b/addons/l10n_ch/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/bg_BG.po b/addons/l10n_ch/i18n/bg_BG.po index 32a0f2b4558..5ff081bfd63 100644 --- a/addons/l10n_ch/i18n/bg_BG.po +++ b/addons/l10n_ch/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/bs_BS.po b/addons/l10n_ch/i18n/bs_BS.po index b0163ef572f..3a05d5ea51c 100644 --- a/addons/l10n_ch/i18n/bs_BS.po +++ b/addons/l10n_ch/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/ca_ES.po b/addons/l10n_ch/i18n/ca_ES.po index b22eed870cd..1c516718006 100644 --- a/addons/l10n_ch/i18n/ca_ES.po +++ b/addons/l10n_ch/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/cs_CZ.po b/addons/l10n_ch/i18n/cs_CZ.po index d518bc5a54d..c1bb8f3fff8 100644 --- a/addons/l10n_ch/i18n/cs_CZ.po +++ b/addons/l10n_ch/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/de_DE.po b/addons/l10n_ch/i18n/de_DE.po index f2ecdc19dd6..f5e9a050c4b 100644 --- a/addons/l10n_ch/i18n/de_DE.po +++ b/addons/l10n_ch/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/es_AR.po b/addons/l10n_ch/i18n/es_AR.po index 6c82c434d91..f835589b97b 100644 --- a/addons/l10n_ch/i18n/es_AR.po +++ b/addons/l10n_ch/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/es_ES.po b/addons/l10n_ch/i18n/es_ES.po index 77e3de5aae6..7b43c53b7e5 100644 --- a/addons/l10n_ch/i18n/es_ES.po +++ b/addons/l10n_ch/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/et_EE.po b/addons/l10n_ch/i18n/et_EE.po index f0a02e12c7d..74243c9df80 100644 --- a/addons/l10n_ch/i18n/et_EE.po +++ b/addons/l10n_ch/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/fi_FI.po b/addons/l10n_ch/i18n/fi_FI.po index e3a4886ef73..c082e288744 100644 --- a/addons/l10n_ch/i18n/fi_FI.po +++ b/addons/l10n_ch/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/fr_FR.po b/addons/l10n_ch/i18n/fr_FR.po index 33240f8352a..36cb9d3492f 100644 --- a/addons/l10n_ch/i18n/fr_FR.po +++ b/addons/l10n_ch/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #. module: l10n_ch #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: l10n_ch #: model:res.partner.bank.type,name:l10n_ch.bvrpost diff --git a/addons/l10n_ch/i18n/hr_HR.po b/addons/l10n_ch/i18n/hr_HR.po index 68488892a10..3248d6cef64 100644 --- a/addons/l10n_ch/i18n/hr_HR.po +++ b/addons/l10n_ch/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/hu_HU.po b/addons/l10n_ch/i18n/hu_HU.po index 9e37253c0aa..a5808ec097d 100644 --- a/addons/l10n_ch/i18n/hu_HU.po +++ b/addons/l10n_ch/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/id_ID.po b/addons/l10n_ch/i18n/id_ID.po index b1b28a34fc6..7b7c5f68245 100644 --- a/addons/l10n_ch/i18n/id_ID.po +++ b/addons/l10n_ch/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/it_IT.po b/addons/l10n_ch/i18n/it_IT.po index df2bcd7a22b..c1c83dc0ff9 100644 --- a/addons/l10n_ch/i18n/it_IT.po +++ b/addons/l10n_ch/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/l10n_ch.pot b/addons/l10n_ch/i18n/l10n_ch.pot index d2cb84c81da..414fbfa5073 100644 --- a/addons/l10n_ch/i18n/l10n_ch.pot +++ b/addons/l10n_ch/i18n/l10n_ch.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/lt_LT.po b/addons/l10n_ch/i18n/lt_LT.po index 0372f3d6521..253bde339b1 100644 --- a/addons/l10n_ch/i18n/lt_LT.po +++ b/addons/l10n_ch/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/nl_BE.po b/addons/l10n_ch/i18n/nl_BE.po index 70ddbce331c..55783f2565d 100644 --- a/addons/l10n_ch/i18n/nl_BE.po +++ b/addons/l10n_ch/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/nl_NL.po b/addons/l10n_ch/i18n/nl_NL.po index d8775a1cec0..b9f80c0fa4d 100644 --- a/addons/l10n_ch/i18n/nl_NL.po +++ b/addons/l10n_ch/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/pl_PL.po b/addons/l10n_ch/i18n/pl_PL.po index 9e0fb881800..fc6df7203a6 100644 --- a/addons/l10n_ch/i18n/pl_PL.po +++ b/addons/l10n_ch/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/pt_BR.po b/addons/l10n_ch/i18n/pt_BR.po index 427e81f05d6..32c55d7f0f1 100644 --- a/addons/l10n_ch/i18n/pt_BR.po +++ b/addons/l10n_ch/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/pt_PT.po b/addons/l10n_ch/i18n/pt_PT.po index 813dee32449..99cc64d4ae2 100644 --- a/addons/l10n_ch/i18n/pt_PT.po +++ b/addons/l10n_ch/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/ro_RO.po b/addons/l10n_ch/i18n/ro_RO.po index dd7800e1ded..62f6d432dfd 100644 --- a/addons/l10n_ch/i18n/ro_RO.po +++ b/addons/l10n_ch/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/ru_RU.po b/addons/l10n_ch/i18n/ru_RU.po index 68049892359..dcec5b8ed35 100644 --- a/addons/l10n_ch/i18n/ru_RU.po +++ b/addons/l10n_ch/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/sl_SL.po b/addons/l10n_ch/i18n/sl_SL.po index b2e0d206b64..0c25254c7ed 100644 --- a/addons/l10n_ch/i18n/sl_SL.po +++ b/addons/l10n_ch/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/cs_CS.po b/addons/l10n_ch/i18n/sq_AL.po similarity index 98% rename from addons/l10n_ch/i18n/cs_CS.po rename to addons/l10n_ch/i18n/sq_AL.po index f6785c92ad3..7c0348f3352 100644 --- a/addons/l10n_ch/i18n/cs_CS.po +++ b/addons/l10n_ch/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/sv_SE.po b/addons/l10n_ch/i18n/sv_SE.po index d500b961938..3730b35566b 100644 --- a/addons/l10n_ch/i18n/sv_SE.po +++ b/addons/l10n_ch/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/tr_TR.po b/addons/l10n_ch/i18n/tr_TR.po index e071a01ff11..2de513f8bcd 100644 --- a/addons/l10n_ch/i18n/tr_TR.po +++ b/addons/l10n_ch/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/uk_UK.po b/addons/l10n_ch/i18n/uk_UA.po similarity index 98% rename from addons/l10n_ch/i18n/uk_UK.po rename to addons/l10n_ch/i18n/uk_UA.po index da4401d317d..318ac6e0246 100644 --- a/addons/l10n_ch/i18n/uk_UK.po +++ b/addons/l10n_ch/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/sv_SV.po b/addons/l10n_ch/i18n/vi_VN.po similarity index 97% rename from addons/l10n_ch/i18n/sv_SV.po rename to addons/l10n_ch/i18n/vi_VN.po index 38ae35c7f3b..79e703e078a 100644 --- a/addons/l10n_ch/i18n/sv_SV.po +++ b/addons/l10n_ch/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -410,7 +410,7 @@ msgstr "" #. module: l10n_ch #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: l10n_ch #: field:account.journal.todo,default_credit_account_id:0 diff --git a/addons/l10n_ch/i18n/zh_CN.po b/addons/l10n_ch/i18n/zh_CN.po index f98f6610001..454536f235f 100644 --- a/addons/l10n_ch/i18n/zh_CN.po +++ b/addons/l10n_ch/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch/i18n/zh_TW.po b/addons/l10n_ch/i18n/zh_TW.po index a94f6dc8da9..3032b6b4974 100644 --- a/addons/l10n_ch/i18n/zh_TW.po +++ b/addons/l10n_ch/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/ar_AR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/ar_AR.po index 82aea67eaea..2c95512971b 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/ar_AR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/bg_BG.po b/addons/l10n_ch_chart_c2c_pcg/i18n/bg_BG.po index b409d2492e2..60f3f5dd7b0 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/bg_BG.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/bs_BS.po b/addons/l10n_ch_chart_c2c_pcg/i18n/bs_BS.po index 4d3c6df5009..1ea5a1dab3a 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/bs_BS.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/ca_ES.po b/addons/l10n_ch_chart_c2c_pcg/i18n/ca_ES.po index 8aa3610a77a..80ff606bdf3 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/ca_ES.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CZ.po b/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CZ.po index 7612b081582..05f67aceb6a 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CZ.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/de_DE.po b/addons/l10n_ch_chart_c2c_pcg/i18n/de_DE.po index 0af58a87a11..6324655b347 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/de_DE.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/es_AR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/es_AR.po index 9ebdef97e41..f98e781000b 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/es_AR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/es_ES.po b/addons/l10n_ch_chart_c2c_pcg/i18n/es_ES.po index db25cdc8d29..d5fdc20fe05 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/es_ES.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/et_EE.po b/addons/l10n_ch_chart_c2c_pcg/i18n/et_EE.po index e5c0def4acd..c89ea81c195 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/et_EE.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/fi_FI.po b/addons/l10n_ch_chart_c2c_pcg/i18n/fi_FI.po index 05a5b2cef7a..1dd758e5311 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/fi_FI.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/fr_FR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/fr_FR.po index 388647d5a47..7661a365e8b 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/fr_FR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "" #. module: l10n_ch_chart_c2c_pcg #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: l10n_ch_chart_c2c_pcg #: model:account.account.type,name:l10n_ch_chart_c2c_pcg.account_type_financial_asset diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/hr_HR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/hr_HR.po index ff6f2275335..64af4eafea1 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/hr_HR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/hu_HU.po b/addons/l10n_ch_chart_c2c_pcg/i18n/hu_HU.po index 48672a3a68e..617cc99e8e9 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/hu_HU.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/id_ID.po b/addons/l10n_ch_chart_c2c_pcg/i18n/id_ID.po index 1887cd6f8f2..4daf3d1c481 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/id_ID.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/it_IT.po b/addons/l10n_ch_chart_c2c_pcg/i18n/it_IT.po index 2a1951293ca..142daddeded 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/it_IT.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/ko_KO.po b/addons/l10n_ch_chart_c2c_pcg/i18n/ko_KO.po index 99cd1914a40..23b3a9851da 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/ko_KO.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:10+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_ch_chart_c2c_pcg diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/l10n_ch_chart_c2c_pcg.pot b/addons/l10n_ch_chart_c2c_pcg/i18n/l10n_ch_chart_c2c_pcg.pot index 8091a0fb36e..58db6dfaafc 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/l10n_ch_chart_c2c_pcg.pot +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/l10n_ch_chart_c2c_pcg.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/lt_LT.po b/addons/l10n_ch_chart_c2c_pcg/i18n/lt_LT.po index a8d5ce7a29c..4578e3a5e53 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/lt_LT.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/nl_BE.po b/addons/l10n_ch_chart_c2c_pcg/i18n/nl_BE.po index 4a3a84425f5..b055b2f08ec 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/nl_BE.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/nl_NL.po b/addons/l10n_ch_chart_c2c_pcg/i18n/nl_NL.po index 5192c3f1f15..5b83055036e 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/nl_NL.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/pl_PL.po b/addons/l10n_ch_chart_c2c_pcg/i18n/pl_PL.po index 1c7aaa1a0e6..1773f4fbff7 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/pl_PL.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/pt_BR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/pt_BR.po index dd263c58f8b..a1903b83193 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/pt_BR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/pt_PT.po b/addons/l10n_ch_chart_c2c_pcg/i18n/pt_PT.po index 75565ce9da9..9db160cb748 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/pt_PT.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/ro_RO.po b/addons/l10n_ch_chart_c2c_pcg/i18n/ro_RO.po index f5a5d3da571..7d29a66d10a 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/ro_RO.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/ru_RU.po b/addons/l10n_ch_chart_c2c_pcg/i18n/ru_RU.po index 49831c90d25..ea44cfa3685 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/ru_RU.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/sl_SL.po b/addons/l10n_ch_chart_c2c_pcg/i18n/sl_SL.po index bf6bd080555..100a4cb04f5 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/sl_SL.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CS.po b/addons/l10n_ch_chart_c2c_pcg/i18n/sq_AL.po similarity index 98% rename from addons/l10n_ch_chart_c2c_pcg/i18n/cs_CS.po rename to addons/l10n_ch_chart_c2c_pcg/i18n/sq_AL.po index 78c7be30834..c781a0d1c2d 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/cs_CS.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SE.po b/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SE.po index 7fcd4a70d54..ce269f912b7 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SE.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/tr_TR.po b/addons/l10n_ch_chart_c2c_pcg/i18n/tr_TR.po index 32edde2f45d..7511f60cb4c 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/tr_TR.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/uk_UK.po b/addons/l10n_ch_chart_c2c_pcg/i18n/uk_UA.po similarity index 98% rename from addons/l10n_ch_chart_c2c_pcg/i18n/uk_UK.po rename to addons/l10n_ch_chart_c2c_pcg/i18n/uk_UA.po index bfc0e72a679..2f7c491708d 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/uk_UK.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SV.po b/addons/l10n_ch_chart_c2c_pcg/i18n/vi_VN.po similarity index 97% rename from addons/l10n_ch_chart_c2c_pcg/i18n/sv_SV.po rename to addons/l10n_ch_chart_c2c_pcg/i18n/vi_VN.po index e012dae7bdb..00e84d99858 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/sv_SV.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: l10n_ch_chart_c2c_pcg #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: l10n_ch_chart_c2c_pcg #: field:account.tax.template.todo,account_paid_id:0 diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/zh_CN.po b/addons/l10n_ch_chart_c2c_pcg/i18n/zh_CN.po index 97b91fe9556..3365049696d 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/zh_CN.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_ch_chart_c2c_pcg/i18n/zh_TW.po b/addons/l10n_ch_chart_c2c_pcg/i18n/zh_TW.po index f4219543aae..8dfac242cf8 100644 --- a/addons/l10n_ch_chart_c2c_pcg/i18n/zh_TW.po +++ b/addons/l10n_ch_chart_c2c_pcg/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/ar_AR.po b/addons/l10n_chart_uk_minimal/i18n/ar_AR.po index cc8342e9d70..fcf944d4738 100644 --- a/addons/l10n_chart_uk_minimal/i18n/ar_AR.po +++ b/addons/l10n_chart_uk_minimal/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/bg_BG.po b/addons/l10n_chart_uk_minimal/i18n/bg_BG.po index ba3d1bf798e..8962d07edda 100644 --- a/addons/l10n_chart_uk_minimal/i18n/bg_BG.po +++ b/addons/l10n_chart_uk_minimal/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:42+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/bs_BS.po b/addons/l10n_chart_uk_minimal/i18n/bs_BS.po index 54b0e03b545..26558c5e944 100644 --- a/addons/l10n_chart_uk_minimal/i18n/bs_BS.po +++ b/addons/l10n_chart_uk_minimal/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/ca_ES.po b/addons/l10n_chart_uk_minimal/i18n/ca_ES.po index 863a17f5a24..b2735817fb2 100644 --- a/addons/l10n_chart_uk_minimal/i18n/ca_ES.po +++ b/addons/l10n_chart_uk_minimal/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/cs_CZ.po b/addons/l10n_chart_uk_minimal/i18n/cs_CZ.po index 0973914308c..9ce4891e584 100644 --- a/addons/l10n_chart_uk_minimal/i18n/cs_CZ.po +++ b/addons/l10n_chart_uk_minimal/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/de_DE.po b/addons/l10n_chart_uk_minimal/i18n/de_DE.po index 3703c22776f..85b350a4bd0 100644 --- a/addons/l10n_chart_uk_minimal/i18n/de_DE.po +++ b/addons/l10n_chart_uk_minimal/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/es_AR.po b/addons/l10n_chart_uk_minimal/i18n/es_AR.po index 0699f2dc06c..ed2f881ba38 100644 --- a/addons/l10n_chart_uk_minimal/i18n/es_AR.po +++ b/addons/l10n_chart_uk_minimal/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/es_ES.po b/addons/l10n_chart_uk_minimal/i18n/es_ES.po index 7788e699e99..d2dc354fd16 100644 --- a/addons/l10n_chart_uk_minimal/i18n/es_ES.po +++ b/addons/l10n_chart_uk_minimal/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/et_EE.po b/addons/l10n_chart_uk_minimal/i18n/et_EE.po index 4b288a552ed..01b3fddf12f 100644 --- a/addons/l10n_chart_uk_minimal/i18n/et_EE.po +++ b/addons/l10n_chart_uk_minimal/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/fi_FI.po b/addons/l10n_chart_uk_minimal/i18n/fi_FI.po index e2621f76e7c..514e9f04531 100644 --- a/addons/l10n_chart_uk_minimal/i18n/fi_FI.po +++ b/addons/l10n_chart_uk_minimal/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/fr_FR.po b/addons/l10n_chart_uk_minimal/i18n/fr_FR.po index 5e607c3bcce..1087e94862f 100644 --- a/addons/l10n_chart_uk_minimal/i18n/fr_FR.po +++ b/addons/l10n_chart_uk_minimal/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/hr_HR.po b/addons/l10n_chart_uk_minimal/i18n/hr_HR.po index a39710f26ec..744cadeafc3 100644 --- a/addons/l10n_chart_uk_minimal/i18n/hr_HR.po +++ b/addons/l10n_chart_uk_minimal/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/hu_HU.po b/addons/l10n_chart_uk_minimal/i18n/hu_HU.po index 15cd65ab04a..3b9099a7858 100644 --- a/addons/l10n_chart_uk_minimal/i18n/hu_HU.po +++ b/addons/l10n_chart_uk_minimal/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/id_ID.po b/addons/l10n_chart_uk_minimal/i18n/id_ID.po index 5f2345d05ce..ddec5099b0c 100644 --- a/addons/l10n_chart_uk_minimal/i18n/id_ID.po +++ b/addons/l10n_chart_uk_minimal/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/it_IT.po b/addons/l10n_chart_uk_minimal/i18n/it_IT.po index 4e19b1de271..ce74e3e7221 100644 --- a/addons/l10n_chart_uk_minimal/i18n/it_IT.po +++ b/addons/l10n_chart_uk_minimal/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/ko_KO.po b/addons/l10n_chart_uk_minimal/i18n/ko_KO.po index bffbf91b86d..060ac923999 100644 --- a/addons/l10n_chart_uk_minimal/i18n/ko_KO.po +++ b/addons/l10n_chart_uk_minimal/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:09+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_chart_uk_minimal 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 53aa9950432..fa2827f6029 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 @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/lt_LT.po b/addons/l10n_chart_uk_minimal/i18n/lt_LT.po index f142b7678ed..25ac3945d80 100644 --- a/addons/l10n_chart_uk_minimal/i18n/lt_LT.po +++ b/addons/l10n_chart_uk_minimal/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:28+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/nl_BE.po b/addons/l10n_chart_uk_minimal/i18n/nl_BE.po index 3208217e846..b1b4e76796b 100644 --- a/addons/l10n_chart_uk_minimal/i18n/nl_BE.po +++ b/addons/l10n_chart_uk_minimal/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/nl_NL.po b/addons/l10n_chart_uk_minimal/i18n/nl_NL.po index 6f2685ee901..0759e69d2db 100644 --- a/addons/l10n_chart_uk_minimal/i18n/nl_NL.po +++ b/addons/l10n_chart_uk_minimal/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/pl_PL.po b/addons/l10n_chart_uk_minimal/i18n/pl_PL.po index fd03a42803c..1f2d88b7295 100644 --- a/addons/l10n_chart_uk_minimal/i18n/pl_PL.po +++ b/addons/l10n_chart_uk_minimal/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/pt_BR.po b/addons/l10n_chart_uk_minimal/i18n/pt_BR.po index 220cd6067ee..f06744e0d70 100644 --- a/addons/l10n_chart_uk_minimal/i18n/pt_BR.po +++ b/addons/l10n_chart_uk_minimal/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/pt_PT.po b/addons/l10n_chart_uk_minimal/i18n/pt_PT.po index 22a07fd78dd..fc116cb4264 100644 --- a/addons/l10n_chart_uk_minimal/i18n/pt_PT.po +++ b/addons/l10n_chart_uk_minimal/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/ro_RO.po b/addons/l10n_chart_uk_minimal/i18n/ro_RO.po index 2e179b1b715..2884d42eee8 100644 --- a/addons/l10n_chart_uk_minimal/i18n/ro_RO.po +++ b/addons/l10n_chart_uk_minimal/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/ru_RU.po b/addons/l10n_chart_uk_minimal/i18n/ru_RU.po index b571de1c76f..d10b247074c 100644 --- a/addons/l10n_chart_uk_minimal/i18n/ru_RU.po +++ b/addons/l10n_chart_uk_minimal/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/sl_SL.po b/addons/l10n_chart_uk_minimal/i18n/sl_SL.po index cc791252af4..49e47df8767 100644 --- a/addons/l10n_chart_uk_minimal/i18n/sl_SL.po +++ b/addons/l10n_chart_uk_minimal/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/cs_CS.po b/addons/l10n_chart_uk_minimal/i18n/sq_AL.po similarity index 95% rename from addons/l10n_chart_uk_minimal/i18n/cs_CS.po rename to addons/l10n_chart_uk_minimal/i18n/sq_AL.po index 70b865cac0a..ac5778e6156 100644 --- a/addons/l10n_chart_uk_minimal/i18n/cs_CS.po +++ b/addons/l10n_chart_uk_minimal/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/sv_SE.po b/addons/l10n_chart_uk_minimal/i18n/sv_SE.po index 69d0aa12222..525999480ca 100644 --- a/addons/l10n_chart_uk_minimal/i18n/sv_SE.po +++ b/addons/l10n_chart_uk_minimal/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/tr_TR.po b/addons/l10n_chart_uk_minimal/i18n/tr_TR.po index dab060fefef..344459587d4 100644 --- a/addons/l10n_chart_uk_minimal/i18n/tr_TR.po +++ b/addons/l10n_chart_uk_minimal/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/uk_UK.po b/addons/l10n_chart_uk_minimal/i18n/uk_UA.po similarity index 95% rename from addons/l10n_chart_uk_minimal/i18n/uk_UK.po rename to addons/l10n_chart_uk_minimal/i18n/uk_UA.po index b25c6d22b32..f0ae626f276 100644 --- a/addons/l10n_chart_uk_minimal/i18n/uk_UK.po +++ b/addons/l10n_chart_uk_minimal/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/sv_SV.po b/addons/l10n_chart_uk_minimal/i18n/vi_VN.po similarity index 92% rename from addons/l10n_chart_uk_minimal/i18n/sv_SV.po rename to addons/l10n_chart_uk_minimal/i18n/vi_VN.po index aca508d1e8d..5392bf95ae3 100644 --- a/addons/l10n_chart_uk_minimal/i18n/sv_SV.po +++ b/addons/l10n_chart_uk_minimal/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,17 +33,17 @@ msgstr "" #. module: l10n_chart_uk_minimal #: model:account.account.type,name:l10n_chart_uk_minimal.account_type_income msgid "Income" -msgstr "Inkomst" +msgstr "" #. module: l10n_chart_uk_minimal #: model:account.account.type,name:l10n_chart_uk_minimal.account_type_tax msgid "Tax" -msgstr "Skatt" +msgstr "" #. module: l10n_chart_uk_minimal #: model:account.account.type,name:l10n_chart_uk_minimal.account_type_cash msgid "Cash" -msgstr "Kontant" +msgstr "" #. module: l10n_chart_uk_minimal #: model:ir.actions.todo,note:l10n_chart_uk_minimal.config_call_account_template_uk_minimal @@ -74,7 +74,7 @@ msgstr "" #. module: l10n_chart_uk_minimal #: model:account.account.type,name:l10n_chart_uk_minimal.account_type_expense msgid "Expense" -msgstr "Utgift" +msgstr "" #. module: l10n_chart_uk_minimal #: model:account.account.type,name:l10n_chart_uk_minimal.account_type_view diff --git a/addons/l10n_chart_uk_minimal/i18n/zh_CN.po b/addons/l10n_chart_uk_minimal/i18n/zh_CN.po index 6c290e64de1..dceaaebdcf5 100644 --- a/addons/l10n_chart_uk_minimal/i18n/zh_CN.po +++ b/addons/l10n_chart_uk_minimal/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/zh_TW.po b/addons/l10n_chart_uk_minimal/i18n/zh_TW.po index b894dd43bee..4889df9d74f 100644 --- a/addons/l10n_chart_uk_minimal/i18n/zh_TW.po +++ b/addons/l10n_chart_uk_minimal/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/ar_AR.po b/addons/l10n_fr/i18n/ar_AR.po index c27b6765f9b..d36260a937a 100644 --- a/addons/l10n_fr/i18n/ar_AR.po +++ b/addons/l10n_fr/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/bg_BG.po b/addons/l10n_fr/i18n/bg_BG.po index 5fef5c356db..cc020c2e8f2 100644 --- a/addons/l10n_fr/i18n/bg_BG.po +++ b/addons/l10n_fr/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/bs_BS.po b/addons/l10n_fr/i18n/bs_BS.po index d83499f57c0..a96bfd0ce44 100644 --- a/addons/l10n_fr/i18n/bs_BS.po +++ b/addons/l10n_fr/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/ca_ES.po b/addons/l10n_fr/i18n/ca_ES.po index 6503b841392..ae2cf155e9f 100644 --- a/addons/l10n_fr/i18n/ca_ES.po +++ b/addons/l10n_fr/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/cs_CZ.po b/addons/l10n_fr/i18n/cs_CZ.po index d114b9517fc..f52ed26856b 100644 --- a/addons/l10n_fr/i18n/cs_CZ.po +++ b/addons/l10n_fr/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/de_DE.po b/addons/l10n_fr/i18n/de_DE.po index e4c08a5e5a0..e10dcbb49fd 100644 --- a/addons/l10n_fr/i18n/de_DE.po +++ b/addons/l10n_fr/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/es_AR.po b/addons/l10n_fr/i18n/es_AR.po index 1671fb47347..e2cc3f3dacf 100644 --- a/addons/l10n_fr/i18n/es_AR.po +++ b/addons/l10n_fr/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/es_ES.po b/addons/l10n_fr/i18n/es_ES.po index 1d2ab9a6927..f4d504ba00d 100644 --- a/addons/l10n_fr/i18n/es_ES.po +++ b/addons/l10n_fr/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/et_EE.po b/addons/l10n_fr/i18n/et_EE.po index 27304fbe584..8a80f8ace15 100644 --- a/addons/l10n_fr/i18n/et_EE.po +++ b/addons/l10n_fr/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/fi_FI.po b/addons/l10n_fr/i18n/fi_FI.po index 1951db23fde..0a21af14bab 100644 --- a/addons/l10n_fr/i18n/fi_FI.po +++ b/addons/l10n_fr/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/fr_FR.po b/addons/l10n_fr/i18n/fr_FR.po index 99159a890b6..bb93ba6ec1b 100644 --- a/addons/l10n_fr/i18n/fr_FR.po +++ b/addons/l10n_fr/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/hr_HR.po b/addons/l10n_fr/i18n/hr_HR.po index b6e504291e4..45015c824a4 100644 --- a/addons/l10n_fr/i18n/hr_HR.po +++ b/addons/l10n_fr/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/hu_HU.po b/addons/l10n_fr/i18n/hu_HU.po index 5c954615e2b..bdc14cb22ed 100644 --- a/addons/l10n_fr/i18n/hu_HU.po +++ b/addons/l10n_fr/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/id_ID.po b/addons/l10n_fr/i18n/id_ID.po index f8a4cc6a9ea..0b6f12965e2 100644 --- a/addons/l10n_fr/i18n/id_ID.po +++ b/addons/l10n_fr/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/it_IT.po b/addons/l10n_fr/i18n/it_IT.po index 98550e1265b..5ea33a7e003 100644 --- a/addons/l10n_fr/i18n/it_IT.po +++ b/addons/l10n_fr/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/ko_KO.po b/addons/l10n_fr/i18n/ko_KO.po index 1861339b936..3b56fcbc41e 100644 --- a/addons/l10n_fr/i18n/ko_KO.po +++ b/addons/l10n_fr/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:06+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/l10n_fr.pot b/addons/l10n_fr/i18n/l10n_fr.pot index 3ac57bf8499..6d880cbbfa3 100644 --- a/addons/l10n_fr/i18n/l10n_fr.pot +++ b/addons/l10n_fr/i18n/l10n_fr.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/lt_LT.po b/addons/l10n_fr/i18n/lt_LT.po index 5fcfde6de42..ac1957753ee 100644 --- a/addons/l10n_fr/i18n/lt_LT.po +++ b/addons/l10n_fr/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/nl_BE.po b/addons/l10n_fr/i18n/nl_BE.po index 1a3e16b80c7..39754c4d680 100644 --- a/addons/l10n_fr/i18n/nl_BE.po +++ b/addons/l10n_fr/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/nl_NL.po b/addons/l10n_fr/i18n/nl_NL.po index 85e92ad3979..6f93b32d48c 100644 --- a/addons/l10n_fr/i18n/nl_NL.po +++ b/addons/l10n_fr/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/pl_PL.po b/addons/l10n_fr/i18n/pl_PL.po index 6a725d48f07..c8496965d3d 100644 --- a/addons/l10n_fr/i18n/pl_PL.po +++ b/addons/l10n_fr/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/pt_BR.po b/addons/l10n_fr/i18n/pt_BR.po index 5b92e7cb654..030328a7a28 100644 --- a/addons/l10n_fr/i18n/pt_BR.po +++ b/addons/l10n_fr/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/pt_PT.po b/addons/l10n_fr/i18n/pt_PT.po index b6895d49b4e..c2a80aed796 100644 --- a/addons/l10n_fr/i18n/pt_PT.po +++ b/addons/l10n_fr/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/ro_RO.po b/addons/l10n_fr/i18n/ro_RO.po index 17e18c55f2b..139083b765d 100644 --- a/addons/l10n_fr/i18n/ro_RO.po +++ b/addons/l10n_fr/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/ru_RU.po b/addons/l10n_fr/i18n/ru_RU.po index cc858bd42bd..620861da2b4 100644 --- a/addons/l10n_fr/i18n/ru_RU.po +++ b/addons/l10n_fr/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/sl_SL.po b/addons/l10n_fr/i18n/sl_SL.po index 34771c54265..1949a4a1aad 100644 --- a/addons/l10n_fr/i18n/sl_SL.po +++ b/addons/l10n_fr/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/cs_CS.po b/addons/l10n_fr/i18n/sq_AL.po similarity index 99% rename from addons/l10n_fr/i18n/cs_CS.po rename to addons/l10n_fr/i18n/sq_AL.po index 9782f41b6b2..907e94ebea5 100644 --- a/addons/l10n_fr/i18n/cs_CS.po +++ b/addons/l10n_fr/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/sv_SE.po b/addons/l10n_fr/i18n/sv_SE.po index 1ca101e8aab..5d5d3d3c619 100644 --- a/addons/l10n_fr/i18n/sv_SE.po +++ b/addons/l10n_fr/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/tr_TR.po b/addons/l10n_fr/i18n/tr_TR.po index 707d36e856d..aa4cf230a9e 100644 --- a/addons/l10n_fr/i18n/tr_TR.po +++ b/addons/l10n_fr/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/uk_UK.po b/addons/l10n_fr/i18n/uk_UA.po similarity index 99% rename from addons/l10n_fr/i18n/uk_UK.po rename to addons/l10n_fr/i18n/uk_UA.po index f84e76d0623..2a127106d1c 100644 --- a/addons/l10n_fr/i18n/uk_UK.po +++ b/addons/l10n_fr/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/sv_SV.po b/addons/l10n_fr/i18n/vi_VN.po similarity index 98% rename from addons/l10n_fr/i18n/sv_SV.po rename to addons/l10n_fr/i18n/vi_VN.po index 14b15426e99..9a367c59351 100644 --- a/addons/l10n_fr/i18n/sv_SV.po +++ b/addons/l10n_fr/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -65,12 +65,12 @@ msgstr "" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_asset msgid "Asset" -msgstr "Tillgång" +msgstr "" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_income msgid "Income" -msgstr "Inkomst" +msgstr "" #. module: l10n_fr #: rml:l10n.fr.cdr:0 @@ -221,7 +221,7 @@ msgstr "" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_tax msgid "Tax" -msgstr "Skatt" +msgstr "" #. module: l10n_fr #: rml:l10n.fr.cdr:0 @@ -434,7 +434,7 @@ msgstr "" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_expense msgid "Expense" -msgstr "Utgift" +msgstr "" #. module: l10n_fr #: rml:l10n.fr.bilan:0 @@ -783,7 +783,7 @@ msgstr "" #. module: l10n_fr #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: l10n_fr #: field:l10n.fr.line,definition:0 @@ -932,7 +932,7 @@ msgstr "" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_cash msgid "Cash" -msgstr "Kontant" +msgstr "" #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_special diff --git a/addons/l10n_fr/i18n/zh_CN.po b/addons/l10n_fr/i18n/zh_CN.po index a25added903..cb4f914fb03 100644 --- a/addons/l10n_fr/i18n/zh_CN.po +++ b/addons/l10n_fr/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/zh_TW.po b/addons/l10n_fr/i18n/zh_TW.po index b16e6d8f63c..c481a068439 100644 --- a/addons/l10n_fr/i18n/zh_TW.po +++ b/addons/l10n_fr/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/ar_AR.po b/addons/l10n_lu/i18n/ar_AR.po index 416c5e74bb5..3b210b02fa9 100644 --- a/addons/l10n_lu/i18n/ar_AR.po +++ b/addons/l10n_lu/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/bg_BG.po b/addons/l10n_lu/i18n/bg_BG.po index f1399f09adc..e0db4316597 100644 --- a/addons/l10n_lu/i18n/bg_BG.po +++ b/addons/l10n_lu/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/bs_BS.po b/addons/l10n_lu/i18n/bs_BS.po index 5be4eeeacda..193a5cdc613 100644 --- a/addons/l10n_lu/i18n/bs_BS.po +++ b/addons/l10n_lu/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/ca_ES.po b/addons/l10n_lu/i18n/ca_ES.po index d5236a8452f..ef2a77bdfd4 100644 --- a/addons/l10n_lu/i18n/ca_ES.po +++ b/addons/l10n_lu/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/cs_CZ.po b/addons/l10n_lu/i18n/cs_CZ.po index 16544e5ef2c..10bbecb734f 100644 --- a/addons/l10n_lu/i18n/cs_CZ.po +++ b/addons/l10n_lu/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/de_DE.po b/addons/l10n_lu/i18n/de_DE.po index 80c8723eada..9b46bc88e1c 100644 --- a/addons/l10n_lu/i18n/de_DE.po +++ b/addons/l10n_lu/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/es_AR.po b/addons/l10n_lu/i18n/es_AR.po index ae091ba4950..a92bb6b91f1 100644 --- a/addons/l10n_lu/i18n/es_AR.po +++ b/addons/l10n_lu/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/es_ES.po b/addons/l10n_lu/i18n/es_ES.po index c9b519ad00d..e1123d303bb 100644 --- a/addons/l10n_lu/i18n/es_ES.po +++ b/addons/l10n_lu/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/et_EE.po b/addons/l10n_lu/i18n/et_EE.po index c59fd1b67d0..2ad2b05a97d 100644 --- a/addons/l10n_lu/i18n/et_EE.po +++ b/addons/l10n_lu/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/fi_FI.po b/addons/l10n_lu/i18n/fi_FI.po index 38ed272ccb4..6fcf24e5592 100644 --- a/addons/l10n_lu/i18n/fi_FI.po +++ b/addons/l10n_lu/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/fr_FR.po b/addons/l10n_lu/i18n/fr_FR.po index 74ba7892d7f..919133fd77d 100644 --- a/addons/l10n_lu/i18n/fr_FR.po +++ b/addons/l10n_lu/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/hr_HR.po b/addons/l10n_lu/i18n/hr_HR.po index 95d123a6b10..8b5d1fcb749 100644 --- a/addons/l10n_lu/i18n/hr_HR.po +++ b/addons/l10n_lu/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/hu_HU.po b/addons/l10n_lu/i18n/hu_HU.po index fbcc14aadd3..3fd23d3ef1d 100644 --- a/addons/l10n_lu/i18n/hu_HU.po +++ b/addons/l10n_lu/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/id_ID.po b/addons/l10n_lu/i18n/id_ID.po index 911d6259bd0..f8db31c8018 100644 --- a/addons/l10n_lu/i18n/id_ID.po +++ b/addons/l10n_lu/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/it_IT.po b/addons/l10n_lu/i18n/it_IT.po index 0233cdfa6c6..8067609779c 100644 --- a/addons/l10n_lu/i18n/it_IT.po +++ b/addons/l10n_lu/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/ko_KO.po b/addons/l10n_lu/i18n/ko_KO.po index a44a0a5ae76..067e7680f1c 100644 --- a/addons/l10n_lu/i18n/ko_KO.po +++ b/addons/l10n_lu/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:08+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: l10n_lu diff --git a/addons/l10n_lu/i18n/l10n_lu.pot b/addons/l10n_lu/i18n/l10n_lu.pot index 8122ef39a8c..eb2aae9e386 100644 --- a/addons/l10n_lu/i18n/l10n_lu.pot +++ b/addons/l10n_lu/i18n/l10n_lu.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/lt_LT.po b/addons/l10n_lu/i18n/lt_LT.po index fa26aa9d631..bee804a86d2 100644 --- a/addons/l10n_lu/i18n/lt_LT.po +++ b/addons/l10n_lu/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/nl_BE.po b/addons/l10n_lu/i18n/nl_BE.po index d6a78b5db51..5b8feee9e5f 100644 --- a/addons/l10n_lu/i18n/nl_BE.po +++ b/addons/l10n_lu/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/nl_NL.po b/addons/l10n_lu/i18n/nl_NL.po index 1608ed5a104..03e05778b2f 100644 --- a/addons/l10n_lu/i18n/nl_NL.po +++ b/addons/l10n_lu/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/pl_PL.po b/addons/l10n_lu/i18n/pl_PL.po index b13a19ee557..c6f18fdf21d 100644 --- a/addons/l10n_lu/i18n/pl_PL.po +++ b/addons/l10n_lu/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/pt_BR.po b/addons/l10n_lu/i18n/pt_BR.po index 3f78b365145..76ebceac2c9 100644 --- a/addons/l10n_lu/i18n/pt_BR.po +++ b/addons/l10n_lu/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/pt_PT.po b/addons/l10n_lu/i18n/pt_PT.po index 3a7f999bf4c..4ddd68b6ddd 100644 --- a/addons/l10n_lu/i18n/pt_PT.po +++ b/addons/l10n_lu/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/ro_RO.po b/addons/l10n_lu/i18n/ro_RO.po index 5661f0b5558..7b0d6770180 100644 --- a/addons/l10n_lu/i18n/ro_RO.po +++ b/addons/l10n_lu/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/ru_RU.po b/addons/l10n_lu/i18n/ru_RU.po index d2edbd05c35..e91708b778d 100644 --- a/addons/l10n_lu/i18n/ru_RU.po +++ b/addons/l10n_lu/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/sl_SL.po b/addons/l10n_lu/i18n/sl_SL.po index 87df393d92b..2f4a322effa 100644 --- a/addons/l10n_lu/i18n/sl_SL.po +++ b/addons/l10n_lu/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/cs_CS.po b/addons/l10n_lu/i18n/sq_AL.po similarity index 95% rename from addons/l10n_lu/i18n/cs_CS.po rename to addons/l10n_lu/i18n/sq_AL.po index 70d523ef642..0e2826efe07 100644 --- a/addons/l10n_lu/i18n/cs_CS.po +++ b/addons/l10n_lu/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/sv_SE.po b/addons/l10n_lu/i18n/sv_SE.po index 98b59988d2f..23218248389 100644 --- a/addons/l10n_lu/i18n/sv_SE.po +++ b/addons/l10n_lu/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/tr_TR.po b/addons/l10n_lu/i18n/tr_TR.po index f713fba28a6..e84f77e3cd0 100644 --- a/addons/l10n_lu/i18n/tr_TR.po +++ b/addons/l10n_lu/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/uk_UK.po b/addons/l10n_lu/i18n/uk_UA.po similarity index 95% rename from addons/l10n_lu/i18n/uk_UK.po rename to addons/l10n_lu/i18n/uk_UA.po index 7f98d26e8c6..95d747568ee 100644 --- a/addons/l10n_lu/i18n/uk_UK.po +++ b/addons/l10n_lu/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/sv_SV.po b/addons/l10n_lu/i18n/vi_VN.po similarity index 93% rename from addons/l10n_lu/i18n/sv_SV.po rename to addons/l10n_lu/i18n/vi_VN.po index 67868afccf2..17df61860d3 100644 --- a/addons/l10n_lu/i18n/sv_SV.po +++ b/addons/l10n_lu/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -38,12 +38,12 @@ msgstr "" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_income msgid "Income" -msgstr "Inkomst" +msgstr "" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_cash_moves msgid "Cash" -msgstr "Kontant" +msgstr "" #. module: l10n_lu #: model:ir.actions.todo,note:l10n_lu.config_call_account_template @@ -80,7 +80,7 @@ msgstr "" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_asset msgid "Asset" -msgstr "Tillgång" +msgstr "" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_cash_equity @@ -105,7 +105,7 @@ msgstr "" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_expense msgid "Expense" -msgstr "Utgift" +msgstr "" #. module: l10n_lu #: model:account.account.type,name:l10n_lu.account_type_creances diff --git a/addons/l10n_lu/i18n/zh_CN.po b/addons/l10n_lu/i18n/zh_CN.po index 20cc637aa55..514d2fa033b 100644 --- a/addons/l10n_lu/i18n/zh_CN.po +++ b/addons/l10n_lu/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_lu/i18n/zh_TW.po b/addons/l10n_lu/i18n/zh_TW.po index db768679bd7..c55f114fa23 100644 --- a/addons/l10n_lu/i18n/zh_TW.po +++ b/addons/l10n_lu/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/ar_AR.po b/addons/membership/i18n/ar_AR.po index 30d959f64da..8b35049c2e1 100644 --- a/addons/membership/i18n/ar_AR.po +++ b/addons/membership/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/bg_BG.po b/addons/membership/i18n/bg_BG.po index 20ab4376e52..e2354f7b084 100644 --- a/addons/membership/i18n/bg_BG.po +++ b/addons/membership/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:42+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/bs_BS.po b/addons/membership/i18n/bs_BS.po index dd9476e23c5..db8c48c07fa 100644 --- a/addons/membership/i18n/bs_BS.po +++ b/addons/membership/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/ca_ES.po b/addons/membership/i18n/ca_ES.po index 661d9cb27d9..1ae29360486 100644 --- a/addons/membership/i18n/ca_ES.po +++ b/addons/membership/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/cs_CZ.po b/addons/membership/i18n/cs_CZ.po index 68fae2f91f3..b109e5d79ab 100644 --- a/addons/membership/i18n/cs_CZ.po +++ b/addons/membership/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/de_DE.po b/addons/membership/i18n/de_DE.po index b8b2f94e032..ca8be8c2afb 100644 --- a/addons/membership/i18n/de_DE.po +++ b/addons/membership/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/es_AR.po b/addons/membership/i18n/es_AR.po index 2f1813ec964..5b01f1ff869 100644 --- a/addons/membership/i18n/es_AR.po +++ b/addons/membership/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/es_ES.po b/addons/membership/i18n/es_ES.po index 39a9bc4c0be..f80840de0bc 100644 --- a/addons/membership/i18n/es_ES.po +++ b/addons/membership/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/et_EE.po b/addons/membership/i18n/et_EE.po index 3a107d3b050..dfedf586c80 100644 --- a/addons/membership/i18n/et_EE.po +++ b/addons/membership/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/fi_FI.po b/addons/membership/i18n/fi_FI.po index e85dc5814b2..58f20d1fa07 100644 --- a/addons/membership/i18n/fi_FI.po +++ b/addons/membership/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/fr_FR.po b/addons/membership/i18n/fr_FR.po index 1d4c98bf79b..35dc4abf92a 100644 --- a/addons/membership/i18n/fr_FR.po +++ b/addons/membership/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "Membre Cotisant" #. module: membership #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: membership #: field:report.partner_member.year,currency:0 @@ -214,7 +214,7 @@ msgstr "" #. module: membership #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "Erreur: l'unité de vente doit appartenir à une catégorie différente que l'unité de mesure" +msgstr "Erreur : l'Unité Secondaire doit appartenir à une autre catégorie que l'Unité de Mesure." #. module: membership #: model:ir.ui.menu,name:membership.menu_membership_products @@ -277,7 +277,7 @@ msgstr "" #. module: membership #: constraint:product.template:0 msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "Erreur: l'unité de mesure par défaut et l'unité de mesure d'achat doivent faire partie de la même catégorie" +msgstr "Erreur: l'UdM par défaut et l'UdM d'achat doivent appartenir à la même catégorie." #. module: membership #: help:res.partner,membership_amount:0 diff --git a/addons/membership/i18n/hr_HR.po b/addons/membership/i18n/hr_HR.po index af559504e43..a19185e8075 100644 --- a/addons/membership/i18n/hr_HR.po +++ b/addons/membership/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/hu_HU.po b/addons/membership/i18n/hu_HU.po index 8a3bd4a6f46..4fe767c9472 100644 --- a/addons/membership/i18n/hu_HU.po +++ b/addons/membership/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/id_ID.po b/addons/membership/i18n/id_ID.po index a00e432e44b..3383315122a 100644 --- a/addons/membership/i18n/id_ID.po +++ b/addons/membership/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/it_IT.po b/addons/membership/i18n/it_IT.po index 174798d92a7..a223e11cc53 100644 --- a/addons/membership/i18n/it_IT.po +++ b/addons/membership/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/lt_LT.po b/addons/membership/i18n/lt_LT.po index 301026939b4..48e1745146c 100644 --- a/addons/membership/i18n/lt_LT.po +++ b/addons/membership/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:28+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:28+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 3e8a92c75f5..7d8ac5dfbbe 100644 --- a/addons/membership/i18n/membership.pot +++ b/addons/membership/i18n/membership.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/nl_BE.po b/addons/membership/i18n/nl_BE.po index 39b854f8114..88d1fd23acb 100644 --- a/addons/membership/i18n/nl_BE.po +++ b/addons/membership/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/nl_NL.po b/addons/membership/i18n/nl_NL.po index ba7b8646785..af2d1e3d192 100644 --- a/addons/membership/i18n/nl_NL.po +++ b/addons/membership/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/pl_PL.po b/addons/membership/i18n/pl_PL.po index ca7bed77c8f..9845ba577f4 100644 --- a/addons/membership/i18n/pl_PL.po +++ b/addons/membership/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/pt_BR.po b/addons/membership/i18n/pt_BR.po index da48574c5f0..dd459264bb8 100644 --- a/addons/membership/i18n/pt_BR.po +++ b/addons/membership/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/pt_PT.po b/addons/membership/i18n/pt_PT.po index 24f08f0620a..9cd8018d7cd 100644 --- a/addons/membership/i18n/pt_PT.po +++ b/addons/membership/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/ro_RO.po b/addons/membership/i18n/ro_RO.po index 8e7b55b03cb..3411ce4eab1 100644 --- a/addons/membership/i18n/ro_RO.po +++ b/addons/membership/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/ru_RU.po b/addons/membership/i18n/ru_RU.po index f899ad95ea5..f18c8c30da4 100644 --- a/addons/membership/i18n/ru_RU.po +++ b/addons/membership/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/sl_SL.po b/addons/membership/i18n/sl_SL.po index db2b0b0beaa..370d20fcdc7 100644 --- a/addons/membership/i18n/sl_SL.po +++ b/addons/membership/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/cs_CS.po b/addons/membership/i18n/sq_AL.po similarity index 98% rename from addons/membership/i18n/cs_CS.po rename to addons/membership/i18n/sq_AL.po index 7674393b3fc..04d0bd3982b 100644 --- a/addons/membership/i18n/cs_CS.po +++ b/addons/membership/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" #. module: membership #: view:res.partner:0 msgid "Partners" -msgstr "Partneři" +msgstr "" #. module: membership #: field:membership.membership_line,date_from:0 @@ -199,7 +199,7 @@ msgstr "" #. module: membership #: model:ir.ui.menu,name:membership.menu_conf msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: membership #: model:process.transition,note:membership.process_transition_producttomember0 @@ -425,7 +425,7 @@ msgstr "" #. module: membership #: view:product.product:0 msgid "Information" -msgstr "Informace" +msgstr "" #. module: membership #: field:membership.membership_line,account_invoice_line:0 diff --git a/addons/membership/i18n/sv_SE.po b/addons/membership/i18n/sv_SE.po index 49d5a316e69..33aadc856e9 100644 --- a/addons/membership/i18n/sv_SE.po +++ b/addons/membership/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/tr_TR.po b/addons/membership/i18n/tr_TR.po index 1bbb33cd119..bc11c0a8fa9 100644 --- a/addons/membership/i18n/tr_TR.po +++ b/addons/membership/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/uk_UK.po b/addons/membership/i18n/uk_UA.po similarity index 98% rename from addons/membership/i18n/uk_UK.po rename to addons/membership/i18n/uk_UA.po index bf92148ff80..aa41081f600 100644 --- a/addons/membership/i18n/uk_UK.po +++ b/addons/membership/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/sv_SV.po b/addons/membership/i18n/vi_VN.po similarity index 98% rename from addons/membership/i18n/sv_SV.po rename to addons/membership/i18n/vi_VN.po index 58eb911fc78..fb0a51d63b5 100644 --- a/addons/membership/i18n/sv_SV.po +++ b/addons/membership/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -199,7 +199,7 @@ msgstr "" #. module: membership #: model:ir.ui.menu,name:membership.menu_conf msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: membership #: model:process.transition,note:membership.process_transition_producttomember0 @@ -435,7 +435,7 @@ msgstr "" #. module: membership #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: membership #: model:process.node,note:membership.process_node_waitingmember0 diff --git a/addons/membership/i18n/zh_CN.po b/addons/membership/i18n/zh_CN.po index 7f8d2c2291d..f553aa3859f 100644 --- a/addons/membership/i18n/zh_CN.po +++ b/addons/membership/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/zh_TW.po b/addons/membership/i18n/zh_TW.po index e544fb71a8e..00e2ddbc205 100644 --- a/addons/membership/i18n/zh_TW.po +++ b/addons/membership/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/ar_AR.po b/addons/mrp/i18n/ar_AR.po index 65444cc202c..bdcb1f12cae 100644 --- a/addons/mrp/i18n/ar_AR.po +++ b/addons/mrp/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/bg_BG.po b/addons/mrp/i18n/bg_BG.po index 67917b0eef9..8c78e0b2fb1 100644 --- a/addons/mrp/i18n/bg_BG.po +++ b/addons/mrp/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:42+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/bs_BS.po b/addons/mrp/i18n/bs_BS.po index 769fb0b89c0..233d5f2e04e 100644 --- a/addons/mrp/i18n/bs_BS.po +++ b/addons/mrp/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/ca_ES.po b/addons/mrp/i18n/ca_ES.po index 0f0a56bd492..2de89bd0911 100644 --- a/addons/mrp/i18n/ca_ES.po +++ b/addons/mrp/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/cs_CZ.po b/addons/mrp/i18n/cs_CZ.po index 18eda863957..a6194e17732 100644 --- a/addons/mrp/i18n/cs_CZ.po +++ b/addons/mrp/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/de_DE.po b/addons/mrp/i18n/de_DE.po index ebcbd8213e3..61b7cc11c98 100644 --- a/addons/mrp/i18n/de_DE.po +++ b/addons/mrp/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/es_AR.po b/addons/mrp/i18n/es_AR.po index a40b8b87b07..a8de5eeb49f 100644 --- a/addons/mrp/i18n/es_AR.po +++ b/addons/mrp/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/es_ES.po b/addons/mrp/i18n/es_ES.po index 0385a66d615..9792bbafd2b 100644 --- a/addons/mrp/i18n/es_ES.po +++ b/addons/mrp/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/et_EE.po b/addons/mrp/i18n/et_EE.po index 52a958240a8..4be192e89e5 100644 --- a/addons/mrp/i18n/et_EE.po +++ b/addons/mrp/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/fi_FI.po b/addons/mrp/i18n/fi_FI.po index 95e5ab81578..5bd324e6d51 100644 --- a/addons/mrp/i18n/fi_FI.po +++ b/addons/mrp/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/fr_FR.po b/addons/mrp/i18n/fr_FR.po index 68d3b0b5a34..8624466712e 100644 --- a/addons/mrp/i18n/fr_FR.po +++ b/addons/mrp/i18n/fr_FR.po @@ -1,12 +1,13 @@ # Translation of OpenERP Server. # This file contains the translation of the following modules: -# * mrp +# * mrp +# msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -22,7 +23,7 @@ msgstr "Mouvements créés" #. module: mrp #: rml:mrp.production.order:0 msgid "No. Of Cycles" -msgstr "Nombre de cycles" +msgstr "Nombre de Cycles" #. module: mrp #: help:mrp.procurement.compute.all,init,automatic:0 @@ -32,12 +33,12 @@ msgstr "Déclenche un approvisionnement automatique pour tous les produits qui o #. module: mrp #: model:ir.module.module,shortdesc:mrp.module_meta_information msgid "Manufacturing Resource Planning" -msgstr "Planification des ressources de productions" +msgstr "Gestion des Ressources de Production" #. module: mrp #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: mrp #: field:mrp.bom.revision,indice:0 @@ -48,7 +49,7 @@ msgstr "Révision" #: model:ir.actions.wizard,name:mrp.wiz_mrp_proc2 #: model:ir.ui.menu,name:mrp.menu_wiz_mrp_proc2 msgid "Compute Stock Minimum Rules Only" -msgstr "Calculer les règles de stocks minimums" +msgstr "Calculer seulement les règles du stock minimum" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_procurement_action5 @@ -59,18 +60,18 @@ msgstr "Approvisionnements en Exception" #. module: mrp #: view:mrp.routing.workcenter:0 msgid "Routing Workcenters" -msgstr "Poste de charge" +msgstr "Centre de Travail d'Acheminement" #. module: mrp #: help:mrp.property,composition:0 msgid "Not used in computations, for information purpose only." -msgstr "Non utilisé dans les calculs, proposer pour information seulement." +msgstr "Non utilisé dans les calculs, pour information seulement." #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_routing_action #: model:ir.ui.menu,name:mrp.menu_mrp_routing_action msgid "Routings" -msgstr "Gammes" +msgstr "Acheminements" #. module: mrp #: field:mrp.production,picking_id:0 @@ -80,13 +81,7 @@ msgstr "Liste des Colisages" #. module: mrp #: model:process.node,name:mrp.process_node_stock0 msgid "Stockable Stock" -msgstr "Stock de produits stockables" - -#. module: mrp -#: code:addons/mrp/wizard/wizard_change_production_qty.py:0 -#, python-format -msgid "Warning !" -msgstr "Attention !" +msgstr "Stock Stockable" #. module: mrp #: field:mrp.procurement,origin:0 @@ -106,36 +101,9 @@ msgid "Reference" msgstr "Référence" #. module: mrp -#: model:ir.module.module,description:mrp.module_meta_information -msgid "" -"\n" -" This is the base module to manage the manufacturing process in Open ERP.\n" -"\n" -" Features:\n" -" * Make to Stock / Make to Order (by line)\n" -" * Multi-level BoMs, no limit\n" -" * Multi-level routing, no limit\n" -" * Routing and workcenter integrated with analytic accounting\n" -" * Scheduler computation periodically / Just In Time module\n" -" * Multi-pos, multi-warehouse\n" -" * Different reordering policies\n" -" * Cost method by product: standard price, average price\n" -" * Easy analysis of troubles or needs\n" -" * Very flexible\n" -" * Allows to browse Bill of Materials in complete structure\n" -" that include child and phantom BoMs\n" -" It supports complete integration and planification of stockable goods,\n" -" consumable of services. Services are completely integrated with the rest\n" -" of the software. For instance, you can set up a sub-contracting service\n" -" in a BoM to automatically purchase on order the assembly of your production.\n" -"\n" -" Reports provided by this module:\n" -" * Bill of Material structure and components\n" -" * Load forecast on workcenters\n" -" * Print a production order\n" -" * Stock forecasts\n" -" " -msgstr "" +#: view:mrp.production:0 +msgid "Finished Products" +msgstr "Produits finis" #. module: mrp #: wizard_field:mrp.procurement.compute.all,init,automatic:0 @@ -156,7 +124,7 @@ msgstr "XML non valide pour l'architecture de la vue" #. module: mrp #: help:res.company,security_lead:0 msgid "This is the days added to what you promise to customers for security purpose" -msgstr "Ceci est le nombre de jours ajouter lorsque vous promettez à vos clients une date, proposer par sécurité" +msgstr "Ce sont les jours ajoutés à ce que vous avez promis au clients pour des raisons de sécurité" #. module: mrp #: field:mrp.workcenter,costs_hour:0 @@ -166,17 +134,17 @@ msgstr "Coût horaire" #. module: mrp #: selection:stock.warehouse.orderpoint,logic:0 msgid "Best price (not yet active!)" -msgstr "Meilleur prix (non actif !)" +msgstr "Meilleur Prix (pas encore actif!)" #. module: mrp #: view:mrp.procurement:0 msgid "Product & Location" -msgstr "Produit & Emplacement" +msgstr "Produit & Localisation" #. module: mrp #: view:res.company:0 msgid "MRP & Logistic Scheduler" -msgstr "Planificateur MRP & Logistique" +msgstr "Planificateur MRP et logistique" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 @@ -186,12 +154,12 @@ msgstr "Nombre d'opération que ce centre de travail peut effectuer en parallèl #. module: mrp #: wizard_button:product.product.procurement,init,create:0 msgid "Ask New Products" -msgstr "Demande de nouveau produit" +msgstr "Demander de Nouveaux Produits" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_mrp_reordering msgid "Automatic Procurements" -msgstr "Réapprovisionnements automatiques" +msgstr "Approvisionnements Automatiques" #. module: mrp #: wizard_field:change_production_qty,confirm,product_qty:0 @@ -209,7 +177,7 @@ msgstr "Produits consommés" #. module: mrp #: field:mrp.workcenter,costs_cycle_account_id:0 msgid "Cycle Account" -msgstr "Compte de cycle" +msgstr "" #. module: mrp #: view:mrp.workcenter:0 @@ -219,17 +187,17 @@ msgstr "Information sur la Capacité" #. module: mrp #: selection:mrp.production,state:0 msgid "Packing Exception" -msgstr "Exception de colisage" +msgstr "Exception de Colisage" #. module: mrp #: model:process.node,note:mrp.process_node_orderrfq0 msgid "A purchase order is created for a sub-contracting demand." -msgstr "Une commande d'achat est crée pour une demande de sous traitance." +msgstr "Un ordre d'achat est créé pour une demande sous-traitée." #. module: mrp #: rml:mrp.production.order:0 msgid "Destination Location" -msgstr "Emplacement de destination" +msgstr "Emplacement de Destination" #. module: mrp #: view:mrp.workcenter:0 @@ -241,16 +209,10 @@ msgstr "Comptabilité Analytique" msgid "Do nothing" msgstr "Ne rien faire" -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "products" -msgstr "produits" - #. module: mrp #: rml:mrp.production.order:0 msgid "Partner Ref" -msgstr "Réf partenaire" +msgstr "Réf. Partenaire" #. module: mrp #: help:mrp.procurement.orderpoint.compute,init,automatic:0 @@ -260,7 +222,7 @@ msgstr "Si le stock du produit est inférieur à 0, il sera traité comme un poi #. module: mrp #: selection:mrp.workcenter.load,init,measure_unit:0 msgid "Amount in hours" -msgstr "Montant en heures" +msgstr "Montant en Heures" #. module: mrp #: field:mrp.production,product_lines:0 @@ -270,7 +232,7 @@ msgstr "Biens Prévus" #. module: mrp #: model:process.transition,note:mrp.process_transition_producttostockrules0 msgid "you can see the minimum stock rules from product" -msgstr "Vous pouvez visualiser les règles de stock minimum pour le produit" +msgstr "Vous pouvez voir les règles de stock minimum pour ce produit" #. module: mrp #: selection:mrp.bom,type:0 @@ -302,7 +264,7 @@ msgstr "Commande de Production Stockable" #. module: mrp #: help:mrp.bom,position:0 msgid "Reference to a position in an external plan." -msgstr "Référence une position dans le plan externe" +msgstr "Référence vers une position dans un plan externe." #. module: mrp #: model:process.transition,name:mrp.process_transition_stockrfq0 @@ -312,7 +274,7 @@ msgstr "Requête Stockable" #. module: mrp #: model:process.node,name:mrp.process_node_serviceonorder0 msgid "Service on Order" -msgstr "Service à la demande" +msgstr "Service à la commande" #. module: mrp #: help:stock.warehouse.orderpoint,product_max_qty:0 @@ -354,13 +316,7 @@ msgstr "Approvisionnement de produit service" #. module: mrp #: view:mrp.production:0 msgid "Confirm Production" -msgstr "Confirmer la production" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Product Quantity" -msgstr "Quantité produit" +msgstr "Confirmer la Production" #. module: mrp #: model:process.node,name:mrp.process_node_purchaseprocure0 @@ -376,7 +332,7 @@ msgstr "Produits plannifiés pour la production" #. module: mrp #: field:mrp.workcenter,timesheet_id:0 msgid "Working Time" -msgstr "Temps de travail" +msgstr "Temps de Travail" #. module: mrp #: view:mrp.procurement:0 @@ -386,12 +342,12 @@ msgstr "Détails" #. module: mrp #: model:process.process,name:mrp.process_process_procurementprocess0 msgid "Procurement Process" -msgstr "Process d'approvisionnement." +msgstr "Processus des Approvisionnements" #. module: mrp #: field:mrp.production,date_planned_date:0 msgid "Scheduled Date" -msgstr "Date planifiée" +msgstr "" #. module: mrp #: selection:mrp.procurement,priority:0 @@ -399,12 +355,6 @@ msgstr "Date planifiée" msgid "Urgent" msgstr "Urgent" -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Product Standard Price" -msgstr "Prix standard du produit" - #. module: mrp #: help:mrp.bom,product_rounding:0 msgid "Rounding applied on the product quantity. For integer only values, put 1.0" @@ -413,7 +363,7 @@ msgstr "Arrondi appliqué sur la quantité de produits. Pour des valeurs entièr #. module: mrp #: rml:mrp.production.order:0 msgid "Bill Of Material" -msgstr "Nomemclature" +msgstr "Nomenclature des Matériaux" #. module: mrp #: help:mrp.routing,location_id:0 @@ -428,7 +378,7 @@ msgstr "Réservation" #. module: mrp #: model:ir.actions.act_window,name:mrp.action2 msgid "Bill of Materials Structure" -msgstr "Structure de la nomemclature" +msgstr "Structure de la Nomenclature des Matériaux" #. module: mrp #: wizard_field:product.product.procurement,init,product_id:0 @@ -445,12 +395,6 @@ msgstr "max" msgid "Product to stock rules" msgstr "Règles de stock produit" -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#, python-format -msgid "from stock: products assigned." -msgstr "Depuis le stock: produit assigné." - #. module: mrp #: wizard_button:product_price,init,price:0 msgid "Print product price" @@ -459,7 +403,7 @@ msgstr "Imprimer le prix du produit" #. module: mrp #: wizard_view:product.product.procurement,done:0 msgid "Make Procurement" -msgstr "Faire l'approvisionnement." +msgstr "Effectuer l'Approvisionnement" #. module: mrp #: field:mrp.bom.revision,date:0 @@ -511,7 +455,7 @@ msgstr "Stock de produit stockable" #: field:mrp.bom,product_uos:0 #: field:mrp.production.product.line,product_uos:0 msgid "Product UOS" -msgstr "UdV du produit" +msgstr "US produit" #. module: mrp #: model:process.transition,name:mrp.process_transition_productionprocureproducts0 @@ -526,19 +470,13 @@ msgstr "Processus produit service" #. module: mrp #: model:process.transition,note:mrp.process_transition_purchaseprocure0 msgid "Procurement convert into the draft purchase order." -msgstr "L'approvisionnement est converti en commande d'achat en brouillon." +msgstr "Approvisionnement converti en commande d'achat au brouillon." #. module: mrp #: field:mrp.procurement,message:0 msgid "Latest error" msgstr "Dernière Erreur" -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#, python-format -msgid "from stock and no minimum orderpoint rule defined" -msgstr "Depuis le stock et pas de règle de stock minimum définit." - #. module: mrp #: field:mrp.bom,bom_lines:0 msgid "BoM Lines" @@ -552,12 +490,12 @@ msgstr "Délai avant production" #. module: mrp #: model:ir.model,name:mrp.model_mrp_routing_workcenter msgid "Routing workcenter usage" -msgstr "Usage des Centre de Travail de la gamme" +msgstr "Usage des Centre de Travail d'Acheminement" #. module: mrp #: view:mrp.production:0 msgid "Consumed Products" -msgstr "Produits consommés" +msgstr "Produits Concommés" #. module: mrp #: constraint:mrp.bom:0 @@ -589,13 +527,13 @@ msgstr "Prêt" #. module: mrp #: view:mrp.routing:0 msgid "Workcenter Operations" -msgstr "Opération du centre de travail" +msgstr "Opérations du Centre de Travail" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_production_action2_gantt #: model:ir.ui.menu,name:mrp.menu_production_orders_start_gantt msgid "Production Orders Planning" -msgstr "Planification des ordres de production" +msgstr "Planification des Ordres de Production" #. module: mrp #: help:mrp.workcenter,time_efficiency:0 @@ -639,7 +577,7 @@ msgstr "En attente" #: view:mrp.routing:0 #: model:process.node,name:mrp.process_node_routing0 msgid "Routing" -msgstr "Gamme" +msgstr "Acheminement" #. module: mrp #: wizard_button:mrp.workcenter.load,init,report:0 @@ -665,18 +603,12 @@ msgstr "Par mois" #. module: mrp #: field:mrp.procurement,product_uos_qty:0 msgid "UoS Quantity" -msgstr "Quantité en UdV" +msgstr "Quantité en US" #. module: mrp #: rml:bom.structure:0 msgid "Product Name" -msgstr "Nom du produit" - -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#, python-format -msgid "Invalid action !" -msgstr "Action invalide !" +msgstr "Nom du Produit" #. module: mrp #: rml:mrp.production.order:0 @@ -687,28 +619,22 @@ msgstr "Date d'impression" #: model:process.node,name:mrp.process_node_orderrfq0 #: model:process.node,name:mrp.process_node_rfq0 msgid "RFQ" -msgstr "Devis" +msgstr "Demande de Devis" #. module: mrp #: field:mrp.bom,revision_type:0 msgid "indice type" msgstr "Type d'indice" -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Hours Cost" -msgstr "Coût par heure" - #. module: mrp #: model:process.node,note:mrp.process_node_production0 msgid "Production orders are created for the product manufacturing." -msgstr "Ordres de production crées pour la fabrication produit." +msgstr "Des Ordres de Production sont créés pour la fabrication des produits" #. module: mrp #: rml:mrp.production.order:0 msgid "WorkCenter" -msgstr "Centre de travail" +msgstr "Cenre de Travail" #. module: mrp #: field:stock.warehouse.orderpoint,product_min_qty:0 @@ -718,18 +644,18 @@ msgstr "Quantité Min." #. module: mrp #: view:mrp.production:0 msgid "Production orders" -msgstr "Ordres de production" +msgstr "Ordres de Production" #. module: mrp #: field:mrp.bom,child_complete_ids:0 #: field:mrp.bom,child_ids:0 msgid "BoM Hyerarchy" -msgstr "Hierarchie de la nomemclature" +msgstr "Hiérarchie de la Nomenclature des Matériaux" #. module: mrp #: view:mrp.procurement:0 msgid "Procurement Lines" -msgstr "Lignes d'approvisionnement" +msgstr "Lignes d'Approvisionnement" #. module: mrp #: model:process.transition,note:mrp.process_transition_servicemts0 @@ -751,12 +677,12 @@ msgstr "Jours de sécurité" #: view:mrp.production:0 #: field:mrp.production,cycle_total:0 msgid "Total Cycles" -msgstr "Cycles total" +msgstr "Cycles Totaux" #. module: mrp #: selection:mrp.production,state:0 msgid "Ready to Produce" -msgstr "Prêt à produire" +msgstr "Prêt à Produire" #. module: mrp #: field:mrp.bom.revision,name:0 @@ -791,18 +717,18 @@ msgstr "Ordre de Service Stockable" #. module: mrp #: model:process.transition,note:mrp.process_transition_minimumstockprocure0 msgid "From minimum stock rules, it goes for procure product." -msgstr "Depuis la règle de stock minimum. c'est utile pour la fabrication produit." +msgstr "Des règles de stock minimal, il mène à l'approvisionnement du produit." #. module: mrp #: model:process.node,name:mrp.process_node_stockproduct0 #: model:process.node,name:mrp.process_node_stockproduct1 msgid "Stockable Product" -msgstr "Produit stockable" +msgstr "Produit Stockable" #. module: mrp #: view:mrp.production:0 msgid "Production done" -msgstr "Production terminée" +msgstr "Production Effectuée" #. module: mrp #: rml:bom.structure:0 @@ -815,7 +741,7 @@ msgstr "Code" #. module: mrp #: rml:mrp.production.order:0 msgid "No. Of Hours" -msgstr "Nb d'heures" +msgstr "Nombre d'Heures" #. module: mrp #: model:ir.model,name:mrp.model_mrp_property_group @@ -829,12 +755,6 @@ msgstr "Groupe de Propriétés" msgid "Parent BoM" msgstr "Nomenclature Parente" -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Unit Product Price" -msgstr "Prix en unité produit" - #. module: mrp #: view:mrp.procurement:0 msgid "References" @@ -867,17 +787,17 @@ msgstr "Machine" #. module: mrp #: model:process.node,name:mrp.process_node_servicemts0 msgid "Make to stock" -msgstr "Sur stock" +msgstr "Production sur stock" #. module: mrp #: field:mrp.workcenter,name:0 msgid "Workcenter Name" -msgstr "Nom du centre de travail" +msgstr "Nom du Centre de Travail" #. module: mrp #: view:mrp.production:0 msgid "Start Production" -msgstr "Démarrer la production" +msgstr "Démarrer la Production" #. module: mrp #: selection:mrp.property,composition:0 @@ -897,7 +817,7 @@ msgstr "-" #. module: mrp #: selection:mrp.workcenter,type:0 msgid "Human Resource" -msgstr "Ressource Humaine" +msgstr "Resources Humaines" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_workcenter_action @@ -914,13 +834,13 @@ msgstr "UdM" #. module: mrp #: selection:mrp.procurement,procure_method:0 msgid "on order" -msgstr "sur commande" +msgstr "Sur commande" #. module: mrp #: model:ir.actions.wizard,name:mrp.wiz_mrp_proc0 #: model:ir.ui.menu,name:mrp.mrp_Sched_all msgid "Compute All Schedulers" -msgstr "Lancer tous les planificateurs" +msgstr "Lancer tous les Planificateurs" #. module: mrp #: field:mrp.production.workcenter.line,cycle:0 @@ -939,45 +859,25 @@ msgstr "Nbre de cycles" msgid "Name" msgstr "Nom" -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#, python-format -msgid "" -"Cannot delete Production Order(s) which are in %s State!' % s['state']))\n" -" return osv.osv.unlink(self, cr, uid, unlink_ids, context=context)\n" -"\n" -" def copy(self, cr, uid, id, default=None,context=None):\n" -" if not default:\n" -" default = {}\n" -" default.update({\n" -" 'name': self.pool.get('ir.sequence" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Product uom" -msgstr "Unité principale du produit" - #. module: mrp #: field:mrp.routing.workcenter,cycle_nbr:0 msgid "Number of Cycle" -msgstr "Nombre de cycle" +msgstr "Nombre de Cycle" #. module: mrp #: wizard_field:mrp.workcenter.load,init,measure_unit:0 msgid "Amount measuring unit" -msgstr "Montant en unité de mesure" +msgstr "Unité de Mesure du Montant" #. module: mrp #: view:mrp.procurement:0 msgid "Run procurement" -msgstr "Lancer les approvisionnements" +msgstr "Lancer l'Approvisionnement" #. module: mrp #: help:res.company,schedule_range:0 msgid "This is the time frame analysed by the scheduler when computing procurements. All procurement that are not between today and today+range are skipped for futur computation." -msgstr "Ceci est la fenêtre de temps analysée par le planificateur lors du calcul des approvisionnement. Tous les approvisionnements qui ne sont pas entre aujourdhui et aujourdhui+plage seront ignorés des prochains calculs." +msgstr "C'est l'intervalle de temps analysé par le planificateur lorsqu'il calcule les approvisionnements. Tous les approvisionnements qui ne sont pas entre aujourd'hui et aujourd'hui+intervalle sont laissés de côté dans les calculs futurs." #. module: mrp #: field:mrp.workcenter,time_efficiency:0 @@ -987,23 +887,17 @@ msgstr "Éfficacité dans le temps" #. module: mrp #: help:res.company,manufacturing_lead:0 msgid "Security days for each manufacturing operation." -msgstr "Jours de sécurité pour chaque opération d'assemblage." +msgstr "Jours de sécurité pour chaque opération de production." #. module: mrp #: wizard_view:mrp.procurement.compute.all,init:0 msgid "Scheduler Parameters" msgstr "Paramètres de la plannification" -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Cycles Cost" -msgstr "" - #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 msgid "A cycle is defined in the workcenter definition." -msgstr "Un cycle est définit pour la définition d'un centre de travail." +msgstr "Un cycle est défini dans la définition du Centre de Travail." #. module: mrp #: selection:mrp.workcenter.load,init,measure_unit:0 @@ -1013,12 +907,12 @@ msgstr "Montant en cycles" #. module: mrp #: field:mrp.production,location_dest_id:0 msgid "Finished Products Location" -msgstr "Emplacements des produits finis" +msgstr "Emplacement des Produits Finis" #. module: mrp #: wizard_field:product.product.procurement,init,uom_id:0 msgid "Unit of Measure" -msgstr "Unité de mesure" +msgstr "Unité de Mesure" #. module: mrp #: field:mrp.procurement,procure_method:0 @@ -1045,7 +939,7 @@ msgstr "Calculer les Approvisionnements" #. module: mrp #: model:process.node,note:mrp.process_node_stock0 msgid "Wait for available products for reservation" -msgstr "Attente de la disponibilité produit pour réservation" +msgstr "Attendre les produits disponibles pour réservation." #. module: mrp #: wizard_button:change_production_qty,confirm,validate:0 @@ -1055,7 +949,7 @@ msgstr "Valider" #. module: mrp #: model:process.transition,name:mrp.process_transition_purchaseprocure0 msgid "Procurement Purchase" -msgstr "Approvionnement d'achat" +msgstr "Achat pour approvisionnement" #. module: mrp #: field:mrp.production.workcenter.line,hour:0 @@ -1102,7 +996,7 @@ msgstr "Jour par jour" #. module: mrp #: model:process.node,name:mrp.process_node_productminimumstockrule0 msgid "Minimum stock rule" -msgstr "Règle de stock minimum" +msgstr "Règle de Stock Minimum" #. module: mrp #: view:mrp.bom:0 @@ -1127,7 +1021,7 @@ msgstr "Service sur stock" #. module: mrp #: field:mrp.production,sale_ref:0 msgid "Sale Ref" -msgstr "Réf de commande" +msgstr "Réf. Vente" #. module: mrp #: field:mrp.procurement,priority:0 @@ -1151,7 +1045,7 @@ msgstr "Nouvel Approvisionnement" #. module: mrp #: rml:mrp.production.order:0 msgid "Production Order N° :" -msgstr "Ordre de production N°" +msgstr "Ordre de Production N° :" #. module: mrp #: selection:mrp.workcenter,type:0 @@ -1177,7 +1071,7 @@ msgstr "Ordres d'Approvisionnement" #. module: mrp #: model:process.node,name:mrp.process_node_mts0 msgid "Make to Stock" -msgstr "Sur stock" +msgstr "Production sur Stock" #. module: mrp #: model:process.transition,note:mrp.process_transition_servicemto0 @@ -1203,12 +1097,10 @@ msgstr "Approvisionnement" #. module: mrp #: model:ir.actions.wizard,name:mrp.product_procurement_wizard msgid "Procurement Request" -msgstr "Demande d'approvisionnement" +msgstr "" #. module: mrp -#: code:addons/mrp/report/price.py:0 #: model:ir.actions.wizard,name:mrp.wizard_price -#, python-format msgid "Product Cost Structure" msgstr "Structure de Coût du Produit" @@ -1220,12 +1112,12 @@ msgstr "Approvisionnement de stock minimum" #. module: mrp #: help:res.company,po_lead:0 msgid "This is the leads/security time for each purchase order." -msgstr "Ceci est le temps de sécurité pour chaque commande d'achat." +msgstr "C'est le délai / temps de sécurité pour chaque commande d'achat." #. module: mrp #: view:mrp.bom:0 msgid "BoM Structure" -msgstr "Structure de la nomemclature" +msgstr "Structure de la Nomenclature" #. module: mrp #: field:mrp.production,date_start:0 @@ -1240,12 +1132,12 @@ msgstr "Compte Horaire" #. module: mrp #: selection:mrp.bom,revision_type:0 msgid "alphabetical indices" -msgstr "Indices alphabétiques" +msgstr "Indices Alphabétiques" #. module: mrp #: model:process.node,note:mrp.process_node_productionorder0 msgid "Procurement for raw materials." -msgstr "Approvisionnement de matière première" +msgstr "Approvisionnement pour les matériaux bruts." #. module: mrp #: view:mrp.procurement:0 @@ -1314,7 +1206,7 @@ msgstr "Information supplémentaire" #. module: mrp #: model:process.node,note:mrp.process_node_billofmaterial0 msgid "Define the product structure, with sub-products and/or components." -msgstr "Définit la structure du produit, avec sous-produits et/ou composants." +msgstr "Défini la structure du produit, avec sous-produits et/ou composants." #. module: mrp #: model:process.node,note:mrp.process_node_minimumstockrule0 @@ -1345,12 +1237,12 @@ msgstr "Ordres de Production en attente de Produits" #. module: mrp #: rml:mrp.production.order:0 msgid "SO Number" -msgstr "Numéro de Cde." +msgstr "Numéro de la Commande Client" #. module: mrp #: model:ir.actions.wizard,name:mrp.wizard_change_production_qty msgid "Change Product Qty." -msgstr "Changer la Qté." +msgstr "Changer la Qté de Produit" #. module: mrp #: selection:mrp.procurement,state:0 @@ -1361,7 +1253,7 @@ msgstr "Terminé" #. module: mrp #: help:stock.warehouse.orderpoint,qty_multiple:0 msgid "The procurement quantity will by rounded up to this multiple." -msgstr "La quantité de l'approvisionnement sera arrondie vers le haut jusqu'à ce multiple." +msgstr "La quantité de l'Approvisionnement sera arrondie vers le haut jusqu'à ce multiple." #. module: mrp #: field:stock.warehouse.orderpoint,logic:0 @@ -1412,17 +1304,17 @@ msgstr "Produit" #: view:mrp.production:0 #: field:mrp.production,hour_total:0 msgid "Total Hours" -msgstr "Total des heures" +msgstr "Heures Totales" #. module: mrp #: field:mrp.production,location_src_id:0 msgid "Raw Materials Location" -msgstr "Emplacement de matière première" +msgstr "Emplacement des Matériaux Bruts" #. module: mrp #: model:ir.actions.act_window,name:mrp.action_product_bom_structure msgid "Product BoM Structure" -msgstr "Structure de la nomemclature produit" +msgstr "Structure de la Nomenclature des Produits" #. module: mrp #: field:mrp.bom,product_uom:0 @@ -1430,7 +1322,7 @@ msgstr "Structure de la nomemclature produit" #: field:mrp.production.product.line,product_uom:0 #: field:stock.warehouse.orderpoint,product_uom:0 msgid "Product UOM" -msgstr "UdM du produit" +msgstr "UdM produit" #. module: mrp #: help:mrp.procurement,origin:0 @@ -1459,12 +1351,12 @@ msgstr "Validité de cette nomenclature ou composant. Laissez vide si toujours v #: field:mrp.procurement,product_uos:0 #: field:mrp.production,product_uos:0 msgid "Product UoS" -msgstr "UdV du produit" +msgstr "US produit" #. module: mrp #: field:mrp.procurement,product_uom:0 msgid "Product UoM" -msgstr "UdM du produit" +msgstr "UdM produit" #. module: mrp #: model:ir.model,name:mrp.model_mrp_workcenter @@ -1478,7 +1370,7 @@ msgstr "Centre de Travail" #: selection:mrp.procurement,priority:0 #: selection:mrp.production,priority:0 msgid "Very Urgent" -msgstr "Très urgent" +msgstr "très Urgent" #. module: mrp #: field:mrp.procurement,purchase_id:0 @@ -1489,12 +1381,12 @@ msgstr "Commande d'achat" #. module: mrp #: view:mrp.production:0 msgid "Production Workcenters" -msgstr "Centre de travail" +msgstr "Centres de Travail de Production" #. module: mrp #: view:mrp.property.group:0 msgid "Properties categories" -msgstr "Catégories de propriété" +msgstr "Catégories des Propriétés" #. module: mrp #: help:mrp.procurement,procure_method:0 @@ -1504,12 +1396,12 @@ msgstr "Si vous encodez manuellement un approvisionnement, vous voulez probablem #. module: mrp #: rml:mrp.production.order:0 msgid "Source Location" -msgstr "Emplacement source" +msgstr "Emplacement Source" #. module: mrp #: model:process.transition,name:mrp.process_transition_servicerfq0 msgid "Stockable Order Request" -msgstr "Demande de commande de stockable" +msgstr "Demande de Commande Stockable" #. module: mrp #: view:mrp.production:0 @@ -1520,12 +1412,12 @@ msgstr "Produits Plannifiés" #. module: mrp #: view:mrp.production.lot.line:0 msgid "Production Products Consommation" -msgstr "Consommation en fabrication de produit" +msgstr "Consommation en production de produit" #. module: mrp #: selection:mrp.bom,revision_type:0 msgid "numeric indices" -msgstr "Indices numériques" +msgstr "Indices Numériques" #. module: mrp #: model:process.transition,note:mrp.process_transition_servicerfq0 @@ -1578,7 +1470,7 @@ msgstr "Temps d'1 cycle (heures)" #. module: mrp #: wizard_view:product.product.procurement,done:0 msgid "Your procurement request has been sent !" -msgstr "Votre demande d'approvisionnement a été envoyé !" +msgstr "Votre demande d'approvisionnement a été envoyée !" #. module: mrp #: wizard_view:product.product.procurement,init:0 @@ -1641,13 +1533,13 @@ msgstr "Valide depuis" #. module: mrp #: selection:mrp.bom,type:0 msgid "Normal BoM" -msgstr "Nomemclature normale" +msgstr "UdM Standard" #. module: mrp #: field:mrp.bom,product_uos_qty:0 #: field:mrp.production.product.line,product_uos_qty:0 msgid "Product UOS Qty" -msgstr "Qté produit en US" +msgstr "Qté US produit" #. module: mrp #: selection:mrp.procurement,state:0 @@ -1688,12 +1580,12 @@ msgstr "" #. module: mrp #: view:mrp.production:0 msgid "Recreate Picking" -msgstr "Recrée le colisage" +msgstr "Recréer le coli" #. module: mrp #: model:process.node,note:mrp.process_node_serviceonorder0 msgid "If procurement is make to order" -msgstr "Si l'approvisionnement est sur fabrication à la commande" +msgstr "Si l'Approvisionnement est de type \"Production à la demande\"" #. module: mrp #: selection:mrp.bom,method:0 @@ -1703,7 +1595,7 @@ msgstr "Sur Commande" #. module: mrp #: model:process.node,name:mrp.process_node_minimumstockrule0 msgid "Minimum Stock Rule" -msgstr "Règle de stock minimum" +msgstr "Règle de Stock Minimum" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_bom_form_action_new @@ -1714,7 +1606,7 @@ msgstr "Nouvelle Nomenclature" #. module: mrp #: field:mrp.workcenter,time_stop:0 msgid "Time after prod." -msgstr "Temps après la production." +msgstr "Temps après prod." #. module: mrp #: wizard_field:mrp.workcenter.load,init,time_unit:0 @@ -1729,13 +1621,7 @@ msgstr "Qté Totale" #. module: mrp #: field:mrp.routing.workcenter,hour_nbr:0 msgid "Number of Hours" -msgstr "Nombre d'heure" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Product quantity" -msgstr "Quantité produit" +msgstr "Nombre d'Heures" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_procurement_action @@ -1751,17 +1637,17 @@ msgstr "Propriété" #. module: mrp #: field:mrp.routing.workcenter,routing_id:0 msgid "Parent Routing" -msgstr "Gamme parente" +msgstr "Acheminement Parent" #. module: mrp #: help:mrp.workcenter,time_start:0 msgid "Time in hours for the setup." -msgstr "Temps en heures poru la configuration." +msgstr "Temps en Heures pour la mise en place" #. module: mrp #: selection:mrp.production,state:0 msgid "Canceled" -msgstr "Annulée" +msgstr "Annulé" #. module: mrp #: selection:mrp.property,composition:0 @@ -1787,7 +1673,7 @@ msgstr "en attende de Marchandises" #. module: mrp #: model:process.process,name:mrp.process_process_stockableproductprocess0 msgid "Stockable Product Process" -msgstr "Processus des produits stockables" +msgstr "Processus des Produits Stockables" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_production_new @@ -1798,7 +1684,7 @@ msgstr "Nouvel Ordre de Production" #. module: mrp #: model:process.node,note:mrp.process_node_rfq0 msgid "A Request for Quotation is created and sent to the supplier." -msgstr "Une Demande de devis est créée et envoyée au fournisseur." +msgstr "Une Demande de Devis est créée et envoyée au fournisseur." #. module: mrp #: field:mrp.bom.revision,last_indice:0 @@ -1831,7 +1717,7 @@ msgstr "Normal" #. module: mrp #: model:process.transition,note:mrp.process_transition_productionprocureproducts0 msgid "When any procuere products, it comes into the prpcurement orders" -msgstr "Lorsqu'il y'a plusieurs produit à fabriquer, cela devient des commandes d'appros" +msgstr "" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_production_action2 @@ -1842,29 +1728,22 @@ msgstr "Ordres de Production à Commencer" #. module: mrp #: view:mrp.procurement:0 msgid "Procurement Reason" -msgstr "Raison d'approvisionnement" +msgstr "Motif d'approvisionnement" #. module: mrp #: model:process.transition,note:mrp.process_transition_billofmaterialrouting0 msgid "An entry is being made from billing material to routing." -msgstr "Une entrée sera faite depuis la liste du matériel a assemblé." +msgstr "" #. module: mrp #: help:mrp.workcenter,timesheet_id:0 msgid "The normal working time of the workcenter." -msgstr "Le temps de travail normal pour le centre de travail" +msgstr "Le temps normal de travail du Centre de Production" #. module: mrp #: selection:stock.warehouse.orderpoint,logic:0 msgid "Order to Max" -msgstr "Maximum a commandé" - -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#: code:addons/mrp/wizard/wizard_change_production_qty.py:0 -#, python-format -msgid "Error" -msgstr "Erreur" +msgstr "" #. module: mrp #: model:ir.actions.act_window,name:mrp.act_product_product_2_mrp_bom @@ -1891,7 +1770,7 @@ msgstr "du stock" #: view:mrp.routing:0 #: view:mrp.routing.workcenter:0 msgid "General Information" -msgstr "Information générale" +msgstr "Infos générales" #. module: mrp #: view:mrp.production:0 @@ -1903,27 +1782,15 @@ msgstr "Productions" msgid "Close" msgstr "Fermer" -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "TOTAL" -msgstr "TOTAL" - #. module: mrp #: field:mrp.production,sale_name:0 msgid "Sale Name" -msgstr "Nom de la commande" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Product supplier" -msgstr "Fournisseur produit" +msgstr "Nom de la Vente" #. module: mrp #: model:process.node,note:mrp.process_node_productminimumstockrule0 msgid "Create minimum stock rules" -msgstr "Créer les règles de stocks minimum" +msgstr "Créer les règles de Stock Minimum" #. module: mrp #: wizard_field:product.product.procurement,init,warehouse_id:0 @@ -1941,7 +1808,7 @@ msgstr "Production" #: model:process.node,name:mrp.process_node_serviceproduct0 #: model:process.node,name:mrp.process_node_serviceproduct1 msgid "Service Product" -msgstr "Produit de type service" +msgstr "Produit de type Service" #. module: mrp #: field:mrp.procurement,close_move:0 @@ -1996,17 +1863,17 @@ msgstr "Charge du Centre de Travail" #. module: mrp #: help:mrp.workcenter,time_stop:0 msgid "Time in hours for the cleaning." -msgstr "Temps en heures pour le nettoyage" +msgstr "" #. module: mrp #: view:mrp.procurement:0 msgid "Procurement Details" -msgstr "Détails d'approvisionnement" +msgstr "Détail de l'Approvisionnement" #. module: mrp #: model:process.transition,note:mrp.process_transition_bom0 msgid "You can see its bill of material which are used to make product" -msgstr "Vous pouvez voir la nomenclature qui est utilisée pour fabriquer le produit" +msgstr "Vous pouvez voir sa nomenclature des matériaux qui est utilisée pour fabriquer le produit" #. module: mrp #: field:mrp.production,date_planned_end:0 @@ -2016,7 +1883,7 @@ msgstr "" #. module: mrp #: selection:mrp.bom,method:0 msgid "On Stock" -msgstr "Sur stock" +msgstr "Sur Stock" #. module: mrp #: field:mrp.bom,sequence:0 diff --git a/addons/mrp/i18n/hr_HR.po b/addons/mrp/i18n/hr_HR.po index a5cda94b4fd..a5fb8110d2f 100644 --- a/addons/mrp/i18n/hr_HR.po +++ b/addons/mrp/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/hu_HU.po b/addons/mrp/i18n/hu_HU.po index 8d9e7f71a74..b6d5cfb2441 100644 --- a/addons/mrp/i18n/hu_HU.po +++ b/addons/mrp/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/id_ID.po b/addons/mrp/i18n/id_ID.po index 56b97ac25d9..5352b5900cd 100644 --- a/addons/mrp/i18n/id_ID.po +++ b/addons/mrp/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/it_IT.po b/addons/mrp/i18n/it_IT.po index 9e1c6b17d10..c718436c36f 100644 --- a/addons/mrp/i18n/it_IT.po +++ b/addons/mrp/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/lt_LT.po b/addons/mrp/i18n/lt_LT.po index f09f2be0e59..fc2b5336530 100644 --- a/addons/mrp/i18n/lt_LT.po +++ b/addons/mrp/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:28+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:28+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 d438f224779..755dd3792a2 100644 --- a/addons/mrp/i18n/mrp.pot +++ b/addons/mrp/i18n/mrp.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/nl_BE.po b/addons/mrp/i18n/nl_BE.po index 92635667d55..dd507084c0b 100644 --- a/addons/mrp/i18n/nl_BE.po +++ b/addons/mrp/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/nl_NL.po b/addons/mrp/i18n/nl_NL.po index 925244c1b88..f527938b1c6 100644 --- a/addons/mrp/i18n/nl_NL.po +++ b/addons/mrp/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/pl_PL.po b/addons/mrp/i18n/pl_PL.po index 5cc71119aa5..a499e8976ef 100644 --- a/addons/mrp/i18n/pl_PL.po +++ b/addons/mrp/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/pt_BR.po b/addons/mrp/i18n/pt_BR.po index 1b0ecc874d7..1d6d0c249ab 100644 --- a/addons/mrp/i18n/pt_BR.po +++ b/addons/mrp/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/pt_PT.po b/addons/mrp/i18n/pt_PT.po index 56f43bafd58..763f1e671e5 100644 --- a/addons/mrp/i18n/pt_PT.po +++ b/addons/mrp/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/ro_RO.po b/addons/mrp/i18n/ro_RO.po index 8dbdd814124..c1ab6541d93 100644 --- a/addons/mrp/i18n/ro_RO.po +++ b/addons/mrp/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/ru_RU.po b/addons/mrp/i18n/ru_RU.po index ee14c22bcc7..eccd58d2cfc 100644 --- a/addons/mrp/i18n/ru_RU.po +++ b/addons/mrp/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/sl_SL.po b/addons/mrp/i18n/sl_SL.po index 6ecdb3223b7..78fef6e6c51 100644 --- a/addons/mrp/i18n/sl_SL.po +++ b/addons/mrp/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/cs_CS.po b/addons/mrp/i18n/sq_AL.po similarity index 98% rename from addons/mrp/i18n/cs_CS.po rename to addons/mrp/i18n/sq_AL.po index a06efdf1ca5..c362e75fa32 100644 --- a/addons/mrp/i18n/cs_CS.po +++ b/addons/mrp/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,7 +93,7 @@ msgstr "" #: model:ir.ui.menu,name:mrp.menu_mrp_configuration #: view:res.company:0 msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: mrp #: field:mrp.production,name:0 @@ -398,7 +398,7 @@ msgstr "" #. module: mrp #: wizard_button:product_price,init,price:0 msgid "Print product price" -msgstr "Vytisknout cenu výrobku(Print product price)" +msgstr "" #. module: mrp #: wizard_view:product.product.procurement,done:0 @@ -582,7 +582,7 @@ msgstr "" #. module: mrp #: wizard_button:mrp.workcenter.load,init,report:0 msgid "Print" -msgstr "Tisk" +msgstr "" #. module: mrp #: field:mrp.workcenter,type:0 @@ -772,7 +772,7 @@ msgstr "" #: wizard_button:product.product.procurement,init,end:0 #: wizard_button:product_price,init,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: mrp #: field:mrp.production,move_prod_id:0 @@ -934,7 +934,7 @@ msgstr "" #: wizard_button:mrp.procurement.compute.all,init,compute:0 #: wizard_button:mrp.procurement.orderpoint.compute,init,compute:0 msgid "Compute Procurements" -msgstr "Spočítat dodávky(Compute Procurements)" +msgstr "" #. module: mrp #: model:process.node,note:mrp.process_node_stock0 @@ -971,12 +971,12 @@ msgstr "" #. module: mrp #: wizard_view:mrp.workcenter.load,init:0 msgid "Select time unit" -msgstr "Vybrat jednotku času" +msgstr "" #. module: mrp #: wizard_field:product_price,init,number:0 msgid "Number of products to produce" -msgstr "Počet výrobků k produkování(Number of products to produce)" +msgstr "" #. module: mrp #: help:mrp.production,location_dest_id:0 @@ -1159,7 +1159,7 @@ msgstr "" #. module: mrp #: wizard_view:product_price,init:0 msgid "Paid ?" -msgstr "Zaplaceno?(Paid ?)" +msgstr "" #. module: mrp #: model:process.node,note:mrp.process_node_routing0 @@ -1189,7 +1189,7 @@ msgstr "" #: field:mrp.procurement,property_ids:0 #: view:mrp.property:0 msgid "Properties" -msgstr "Vlastnosti" +msgstr "" #. module: mrp #: field:mrp.procurement,date_planned:0 @@ -1549,7 +1549,7 @@ msgstr "" #: wizard_view:mrp.procurement.compute,init:0 #: wizard_view:mrp.procurement.orderpoint.compute,init:0 msgid "Parameters" -msgstr "Parametry(Parameters)" +msgstr "" #. module: mrp #: view:mrp.procurement:0 diff --git a/addons/mrp/i18n/sv_SE.po b/addons/mrp/i18n/sv_SE.po index 970b39143d5..70995220d0e 100644 --- a/addons/mrp/i18n/sv_SE.po +++ b/addons/mrp/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/tr_TR.po b/addons/mrp/i18n/tr_TR.po index b87b1b7c248..07943efa2eb 100644 --- a/addons/mrp/i18n/tr_TR.po +++ b/addons/mrp/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/uk_UK.po b/addons/mrp/i18n/uk_UA.po similarity index 99% rename from addons/mrp/i18n/uk_UK.po rename to addons/mrp/i18n/uk_UA.po index 908b4d19376..edcff532709 100644 --- a/addons/mrp/i18n/uk_UK.po +++ b/addons/mrp/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/sv_SV.po b/addons/mrp/i18n/vi_VN.po similarity index 97% rename from addons/mrp/i18n/sv_SV.po rename to addons/mrp/i18n/vi_VN.po index 5a5619b4320..038faabb8c8 100644 --- a/addons/mrp/i18n/sv_SV.po +++ b/addons/mrp/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -87,13 +87,13 @@ msgstr "" #: field:mrp.procurement,origin:0 #: field:mrp.production,origin:0 msgid "Origin" -msgstr "Ursprung" +msgstr "" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_mrp_configuration #: view:res.company:0 msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: mrp #: field:mrp.production,name:0 @@ -167,7 +167,7 @@ msgstr "" #: field:mrp.production,product_qty:0 #: field:mrp.production.product.line,product_qty:0 msgid "Product Qty" -msgstr "Produktkvantitet" +msgstr "" #. module: mrp #: field:mrp.production,move_lines:0 @@ -306,7 +306,7 @@ msgstr "" #: selection:mrp.procurement,priority:0 #: selection:mrp.production,priority:0 msgid "Not urgent" -msgstr "Inte bråttom" +msgstr "" #. module: mrp #: model:process.transition,name:mrp.process_transition_procureserviceproduct0 @@ -353,7 +353,7 @@ msgstr "" #: selection:mrp.procurement,priority:0 #: selection:mrp.production,priority:0 msgid "Urgent" -msgstr "Bråttom" +msgstr "" #. module: mrp #: help:mrp.bom,product_rounding:0 @@ -373,7 +373,7 @@ msgstr "" #. module: mrp #: field:mrp.procurement,move_id:0 msgid "Reservation" -msgstr "Reservation" +msgstr "" #. module: mrp #: model:ir.actions.act_window,name:mrp.action2 @@ -444,7 +444,7 @@ msgstr "" #. module: mrp #: field:mrp.bom.revision,author_id:0 msgid "Author" -msgstr "Upphovsman" +msgstr "" #. module: mrp #: model:process.transition,name:mrp.process_transition_stockproduct0 @@ -558,7 +558,7 @@ msgstr "" #. module: mrp #: selection:mrp.production,state:0 msgid "In Production" -msgstr "I produktion" +msgstr "" #. module: mrp #: field:stock.warehouse.orderpoint,qty_multiple:0 @@ -587,7 +587,7 @@ msgstr "" #. module: mrp #: field:mrp.workcenter,type:0 msgid "Type" -msgstr "Typ" +msgstr "" #. module: mrp #: model:process.node,note:mrp.process_node_stockproduct0 @@ -682,12 +682,12 @@ msgstr "" #. module: mrp #: selection:mrp.production,state:0 msgid "Ready to Produce" -msgstr "Klar att producera" +msgstr "" #. module: mrp #: field:mrp.bom.revision,name:0 msgid "Modification name" -msgstr "Ändring" +msgstr "" #. module: mrp #: field:mrp.bom,type:0 @@ -697,7 +697,7 @@ msgstr "" #. module: mrp #: selection:mrp.procurement,state:0 msgid "Exception" -msgstr "Undantag" +msgstr "" #. module: mrp #: wizard_view:product.product.procurement,init:0 @@ -782,7 +782,7 @@ msgstr "" #. module: mrp #: selection:mrp.workcenter,type:0 msgid "Machine" -msgstr "Maskin" +msgstr "" #. module: mrp #: model:process.node,name:mrp.process_node_servicemts0 @@ -857,7 +857,7 @@ msgstr "" #: field:mrp.routing.workcenter,name:0 #: field:stock.warehouse.orderpoint,name:0 msgid "Name" -msgstr "Namn" +msgstr "" #. module: mrp #: field:mrp.routing.workcenter,cycle_nbr:0 @@ -954,7 +954,7 @@ msgstr "" #. module: mrp #: field:mrp.production.workcenter.line,hour:0 msgid "Nbr of hour" -msgstr "Antal timmar" +msgstr "" #. module: mrp #: view:mrp.procurement:0 @@ -1001,7 +1001,7 @@ msgstr "" #. module: mrp #: view:mrp.bom:0 msgid "Revisions" -msgstr "Revisioner" +msgstr "" #. module: mrp #: field:mrp.bom,product_efficiency:0 @@ -1028,13 +1028,13 @@ msgstr "" #: field:mrp.production,priority:0 #: rml:mrp.production.order:0 msgid "Priority" -msgstr "Prioritet" +msgstr "" #. module: mrp #: field:mrp.procurement,location_id:0 #: field:stock.warehouse.orderpoint,location_id:0 msgid "Location" -msgstr "Plats" +msgstr "" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_procurement_new @@ -1050,7 +1050,7 @@ msgstr "" #. module: mrp #: selection:mrp.workcenter,type:0 msgid "Tool" -msgstr "Verktyg" +msgstr "" #. module: mrp #: help:mrp.production,location_src_id:0 @@ -1092,7 +1092,7 @@ msgstr "" #: model:ir.model,name:mrp.model_mrp_procurement #: view:mrp.procurement:0 msgid "Procurement" -msgstr "Inköp" +msgstr "" #. module: mrp #: model:ir.actions.wizard,name:mrp.product_procurement_wizard @@ -1172,7 +1172,7 @@ msgstr "" #: field:mrp.workcenter,active:0 #: field:stock.warehouse.orderpoint,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: mrp #: model:process.node,name:mrp.process_node_procureproducts0 @@ -1189,7 +1189,7 @@ msgstr "" #: field:mrp.procurement,property_ids:0 #: view:mrp.property:0 msgid "Properties" -msgstr "Egenskaper" +msgstr "" #. module: mrp #: field:mrp.procurement,date_planned:0 @@ -1248,7 +1248,7 @@ msgstr "" #: selection:mrp.procurement,state:0 #: selection:mrp.production,state:0 msgid "Done" -msgstr "Klar" +msgstr "" #. module: mrp #: help:stock.warehouse.orderpoint,qty_multiple:0 @@ -1263,7 +1263,7 @@ msgstr "" #. module: mrp #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: mrp #: model:process.node,note:mrp.process_node_procureproducts0 @@ -1298,7 +1298,7 @@ msgstr "" #: field:mrp.production.product.line,product_id:0 #: field:stock.warehouse.orderpoint,product_id:0 msgid "Product" -msgstr "Produkt" +msgstr "" #. module: mrp #: view:mrp.production:0 @@ -1369,7 +1369,7 @@ msgstr "" #: selection:mrp.procurement,priority:0 #: selection:mrp.production,priority:0 msgid "Very Urgent" -msgstr "Mycket bråttom" +msgstr "" #. module: mrp #: field:mrp.procurement,purchase_id:0 @@ -1543,7 +1543,7 @@ msgstr "" #. module: mrp #: selection:mrp.procurement,state:0 msgid "Confirmed" -msgstr "Bekräftad" +msgstr "" #. module: mrp #: wizard_view:mrp.procurement.compute,init:0 @@ -1554,7 +1554,7 @@ msgstr "" #. module: mrp #: view:mrp.procurement:0 msgid "Confirm" -msgstr "Bekräfta" +msgstr "" #. module: mrp #: field:mrp.production,workcenter_lines:0 @@ -1646,7 +1646,7 @@ msgstr "" #. module: mrp #: selection:mrp.production,state:0 msgid "Canceled" -msgstr "Avbruten" +msgstr "" #. module: mrp #: selection:mrp.property,composition:0 @@ -1699,19 +1699,19 @@ msgstr "" #. module: mrp #: view:mrp.procurement:0 msgid "Retry" -msgstr "Försök igen" +msgstr "" #. module: mrp #: selection:mrp.procurement,state:0 #: selection:mrp.production,state:0 msgid "Draft" -msgstr "Utdrag" +msgstr "" #. module: mrp #: selection:mrp.procurement,priority:0 #: selection:mrp.production,priority:0 msgid "Normal" -msgstr "Normal" +msgstr "" #. module: mrp #: model:process.transition,note:mrp.process_transition_productionprocureproducts0 @@ -1769,7 +1769,7 @@ msgstr "" #: view:mrp.routing:0 #: view:mrp.routing.workcenter:0 msgid "General Information" -msgstr "Allmän information" +msgstr "" #. module: mrp #: view:mrp.production:0 @@ -1801,7 +1801,7 @@ msgstr "" #: model:ir.model,name:mrp.model_mrp_production #: field:stock.move,production_id:0 msgid "Production" -msgstr "Produktion" +msgstr "" #. module: mrp #: model:process.node,name:mrp.process_node_serviceproduct0 @@ -1835,7 +1835,7 @@ msgstr "" #. module: mrp #: selection:mrp.procurement,state:0 msgid "Running" -msgstr "Körande" +msgstr "" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_mrp_root @@ -1890,7 +1890,7 @@ msgstr "" #: field:mrp.production.workcenter.line,sequence:0 #: field:mrp.routing.workcenter,sequence:0 msgid "Sequence" -msgstr "Sekvens" +msgstr "" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_bom_form_action2 diff --git a/addons/mrp/i18n/zh_CN.po b/addons/mrp/i18n/zh_CN.po index f07d50b08f3..cc5908ba12f 100644 --- a/addons/mrp/i18n/zh_CN.po +++ b/addons/mrp/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index cd0993359cb..6dbfc244da7 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/ar_AR.po b/addons/mrp_jit/i18n/ar_AR.po index a28b59bbc6b..44234ed679e 100644 --- a/addons/mrp_jit/i18n/ar_AR.po +++ b/addons/mrp_jit/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/bg_BG.po b/addons/mrp_jit/i18n/bg_BG.po index f14a4c966a8..8664abb6d36 100644 --- a/addons/mrp_jit/i18n/bg_BG.po +++ b/addons/mrp_jit/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/bs_BS.po b/addons/mrp_jit/i18n/bs_BS.po index d357c4af5d7..6085eca76fc 100644 --- a/addons/mrp_jit/i18n/bs_BS.po +++ b/addons/mrp_jit/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/ca_ES.po b/addons/mrp_jit/i18n/ca_ES.po index b2bcee80ec5..7d5e44f138c 100644 --- a/addons/mrp_jit/i18n/ca_ES.po +++ b/addons/mrp_jit/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/cs_CZ.po b/addons/mrp_jit/i18n/cs_CZ.po index 48cef59fb20..a21baf39e97 100644 --- a/addons/mrp_jit/i18n/cs_CZ.po +++ b/addons/mrp_jit/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/de_DE.po b/addons/mrp_jit/i18n/de_DE.po index 5e9e48abfda..a804a6189ae 100644 --- a/addons/mrp_jit/i18n/de_DE.po +++ b/addons/mrp_jit/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/es_AR.po b/addons/mrp_jit/i18n/es_AR.po index 202759d6dfa..03e10d5bc9d 100644 --- a/addons/mrp_jit/i18n/es_AR.po +++ b/addons/mrp_jit/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/es_ES.po b/addons/mrp_jit/i18n/es_ES.po index 955573fe1e2..8bb3f03a08c 100644 --- a/addons/mrp_jit/i18n/es_ES.po +++ b/addons/mrp_jit/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/et_EE.po b/addons/mrp_jit/i18n/et_EE.po index e9cb1a7e988..dd1d4318b85 100644 --- a/addons/mrp_jit/i18n/et_EE.po +++ b/addons/mrp_jit/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/fi_FI.po b/addons/mrp_jit/i18n/fi_FI.po index afd26a7f010..28097aea7e1 100644 --- a/addons/mrp_jit/i18n/fi_FI.po +++ b/addons/mrp_jit/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/fr_FR.po b/addons/mrp_jit/i18n/fr_FR.po index c94a279a165..ba66070a127 100644 --- a/addons/mrp_jit/i18n/fr_FR.po +++ b/addons/mrp_jit/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/hr_HR.po b/addons/mrp_jit/i18n/hr_HR.po index a3ab1c12a8d..3037f7e498d 100644 --- a/addons/mrp_jit/i18n/hr_HR.po +++ b/addons/mrp_jit/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/hu_HU.po b/addons/mrp_jit/i18n/hu_HU.po index 17f6885ec49..538fce894a0 100644 --- a/addons/mrp_jit/i18n/hu_HU.po +++ b/addons/mrp_jit/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/id_ID.po b/addons/mrp_jit/i18n/id_ID.po index feb0b8743df..29b430efabd 100644 --- a/addons/mrp_jit/i18n/id_ID.po +++ b/addons/mrp_jit/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/it_IT.po b/addons/mrp_jit/i18n/it_IT.po index f516558d04c..820290c3f58 100644 --- a/addons/mrp_jit/i18n/it_IT.po +++ b/addons/mrp_jit/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/ko_KO.po b/addons/mrp_jit/i18n/ko_KO.po index 0b28ed02249..d2598f35e2f 100644 --- a/addons/mrp_jit/i18n/ko_KO.po +++ b/addons/mrp_jit/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:06+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/lt_LT.po b/addons/mrp_jit/i18n/lt_LT.po index 7721c7ae7b1..a10bc0a6488 100644 --- a/addons/mrp_jit/i18n/lt_LT.po +++ b/addons/mrp_jit/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/mrp_jit.pot b/addons/mrp_jit/i18n/mrp_jit.pot index 4064872ff12..cd3599bbd63 100644 --- a/addons/mrp_jit/i18n/mrp_jit.pot +++ b/addons/mrp_jit/i18n/mrp_jit.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/nl_BE.po b/addons/mrp_jit/i18n/nl_BE.po index 2512f124523..2c74259ac25 100644 --- a/addons/mrp_jit/i18n/nl_BE.po +++ b/addons/mrp_jit/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/nl_NL.po b/addons/mrp_jit/i18n/nl_NL.po index bc7c9125d5c..e08af44bd17 100644 --- a/addons/mrp_jit/i18n/nl_NL.po +++ b/addons/mrp_jit/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/pl_PL.po b/addons/mrp_jit/i18n/pl_PL.po index 0f42d521860..d03356d040f 100644 --- a/addons/mrp_jit/i18n/pl_PL.po +++ b/addons/mrp_jit/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:03+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:03+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/pt_BR.po b/addons/mrp_jit/i18n/pt_BR.po index 2b901f17eae..42ccd74682e 100644 --- a/addons/mrp_jit/i18n/pt_BR.po +++ b/addons/mrp_jit/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/pt_PT.po b/addons/mrp_jit/i18n/pt_PT.po index 7ab96c9b191..d94b2ce1f1c 100644 --- a/addons/mrp_jit/i18n/pt_PT.po +++ b/addons/mrp_jit/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/ro_RO.po b/addons/mrp_jit/i18n/ro_RO.po index 87a3626970a..c973faed974 100644 --- a/addons/mrp_jit/i18n/ro_RO.po +++ b/addons/mrp_jit/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/ru_RU.po b/addons/mrp_jit/i18n/ru_RU.po index afbd7d554f2..fd7297b0b47 100644 --- a/addons/mrp_jit/i18n/ru_RU.po +++ b/addons/mrp_jit/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/sl_SL.po b/addons/mrp_jit/i18n/sl_SL.po index 3dd03ddf5dc..6f27ac7e7ca 100644 --- a/addons/mrp_jit/i18n/sl_SL.po +++ b/addons/mrp_jit/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/sv_SV.po b/addons/mrp_jit/i18n/sq_AL.po similarity index 76% rename from addons/mrp_jit/i18n/sv_SV.po rename to addons/mrp_jit/i18n/sq_AL.po index b52bf07ce0c..ac2cb2b32c0 100644 --- a/addons/mrp_jit/i18n/sv_SV.po +++ b/addons/mrp_jit/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/sv_SE.po b/addons/mrp_jit/i18n/sv_SE.po index 11082b69a1d..49e44edd4ca 100644 --- a/addons/mrp_jit/i18n/sv_SE.po +++ b/addons/mrp_jit/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/tr_TR.po b/addons/mrp_jit/i18n/tr_TR.po index c8f553371a7..f8cd1269931 100644 --- a/addons/mrp_jit/i18n/tr_TR.po +++ b/addons/mrp_jit/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/uk_UK.po b/addons/mrp_jit/i18n/uk_UA.po similarity index 76% rename from addons/mrp_jit/i18n/uk_UK.po rename to addons/mrp_jit/i18n/uk_UA.po index 7388c575be0..0d36b1d05fd 100644 --- a/addons/mrp_jit/i18n/uk_UK.po +++ b/addons/mrp_jit/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/cs_CS.po b/addons/mrp_jit/i18n/vi_VN.po similarity index 76% rename from addons/mrp_jit/i18n/cs_CS.po rename to addons/mrp_jit/i18n/vi_VN.po index 844b1a979ff..da43f3bdb3f 100644 --- a/addons/mrp_jit/i18n/cs_CS.po +++ b/addons/mrp_jit/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/zh_CN.po b/addons/mrp_jit/i18n/zh_CN.po index bdb8cf164f8..c1416781893 100644 --- a/addons/mrp_jit/i18n/zh_CN.po +++ b/addons/mrp_jit/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_jit/i18n/zh_TW.po b/addons/mrp_jit/i18n/zh_TW.po index 9285cb56fc1..2169ba2bc18 100644 --- a/addons/mrp_jit/i18n/zh_TW.po +++ b/addons/mrp_jit/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/ar_AR.po b/addons/mrp_operations/i18n/ar_AR.po index 51b3d6b792a..159e09266d0 100644 --- a/addons/mrp_operations/i18n/ar_AR.po +++ b/addons/mrp_operations/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/bg_BG.po b/addons/mrp_operations/i18n/bg_BG.po index 0aa303fd335..b402de01c67 100644 --- a/addons/mrp_operations/i18n/bg_BG.po +++ b/addons/mrp_operations/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/bs_BS.po b/addons/mrp_operations/i18n/bs_BS.po index aa2564a6a5a..b66acb02b16 100644 --- a/addons/mrp_operations/i18n/bs_BS.po +++ b/addons/mrp_operations/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/ca_ES.po b/addons/mrp_operations/i18n/ca_ES.po index 86500c6c0c5..fefaa8823a1 100644 --- a/addons/mrp_operations/i18n/ca_ES.po +++ b/addons/mrp_operations/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/cs_CZ.po b/addons/mrp_operations/i18n/cs_CZ.po index d333d188e67..753be9776fb 100644 --- a/addons/mrp_operations/i18n/cs_CZ.po +++ b/addons/mrp_operations/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/de_DE.po b/addons/mrp_operations/i18n/de_DE.po index 1b9a5737f03..9d11fcf459f 100644 --- a/addons/mrp_operations/i18n/de_DE.po +++ b/addons/mrp_operations/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/es_AR.po b/addons/mrp_operations/i18n/es_AR.po index 0b297f82374..91756de8454 100644 --- a/addons/mrp_operations/i18n/es_AR.po +++ b/addons/mrp_operations/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/es_ES.po b/addons/mrp_operations/i18n/es_ES.po index 68a033b656c..9ad3dc8bffd 100644 --- a/addons/mrp_operations/i18n/es_ES.po +++ b/addons/mrp_operations/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/et_EE.po b/addons/mrp_operations/i18n/et_EE.po index b4e33ef4399..6ea0189c443 100644 --- a/addons/mrp_operations/i18n/et_EE.po +++ b/addons/mrp_operations/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/fi_FI.po b/addons/mrp_operations/i18n/fi_FI.po index 38df12d5b05..6515bd03289 100644 --- a/addons/mrp_operations/i18n/fi_FI.po +++ b/addons/mrp_operations/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/fr_FR.po b/addons/mrp_operations/i18n/fr_FR.po index 42e756b9f63..d69722da585 100644 --- a/addons/mrp_operations/i18n/fr_FR.po +++ b/addons/mrp_operations/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -103,7 +103,7 @@ msgstr "Centre de Travail" #. module: mrp_operations #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_operation_action diff --git a/addons/mrp_operations/i18n/hr_HR.po b/addons/mrp_operations/i18n/hr_HR.po index 1c50da49f3a..fe28456d0f1 100644 --- a/addons/mrp_operations/i18n/hr_HR.po +++ b/addons/mrp_operations/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/hu_HU.po b/addons/mrp_operations/i18n/hu_HU.po index 2fe0efe11c4..213c83ce0f2 100644 --- a/addons/mrp_operations/i18n/hu_HU.po +++ b/addons/mrp_operations/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/id_ID.po b/addons/mrp_operations/i18n/id_ID.po index 5530d4d2c79..c2f2b7b920b 100644 --- a/addons/mrp_operations/i18n/id_ID.po +++ b/addons/mrp_operations/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/it_IT.po b/addons/mrp_operations/i18n/it_IT.po index d7cfaa1353e..d1124587733 100644 --- a/addons/mrp_operations/i18n/it_IT.po +++ b/addons/mrp_operations/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/lt_LT.po b/addons/mrp_operations/i18n/lt_LT.po index 2244a6555b4..dff5fb1f8c2 100644 --- a/addons/mrp_operations/i18n/lt_LT.po +++ b/addons/mrp_operations/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/mrp_operations.pot b/addons/mrp_operations/i18n/mrp_operations.pot index 5d5f4d3ef0e..b8996355e14 100644 --- a/addons/mrp_operations/i18n/mrp_operations.pot +++ b/addons/mrp_operations/i18n/mrp_operations.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/nl_BE.po b/addons/mrp_operations/i18n/nl_BE.po index c57e47bce0d..b4f7896b159 100644 --- a/addons/mrp_operations/i18n/nl_BE.po +++ b/addons/mrp_operations/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/nl_NL.po b/addons/mrp_operations/i18n/nl_NL.po index 9f43642ca43..0175cd8d1d1 100644 --- a/addons/mrp_operations/i18n/nl_NL.po +++ b/addons/mrp_operations/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/pl_PL.po b/addons/mrp_operations/i18n/pl_PL.po index ca6ca15dd19..681afca7dad 100644 --- a/addons/mrp_operations/i18n/pl_PL.po +++ b/addons/mrp_operations/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/pt_BR.po b/addons/mrp_operations/i18n/pt_BR.po index 1a3f112ed3b..b94c073ab15 100644 --- a/addons/mrp_operations/i18n/pt_BR.po +++ b/addons/mrp_operations/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/pt_PT.po b/addons/mrp_operations/i18n/pt_PT.po index e9e5f5d7090..78cff135603 100644 --- a/addons/mrp_operations/i18n/pt_PT.po +++ b/addons/mrp_operations/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/ro_RO.po b/addons/mrp_operations/i18n/ro_RO.po index c5c0e43031d..2fe68462503 100644 --- a/addons/mrp_operations/i18n/ro_RO.po +++ b/addons/mrp_operations/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/ru_RU.po b/addons/mrp_operations/i18n/ru_RU.po index 31a6f016a9a..8045a344755 100644 --- a/addons/mrp_operations/i18n/ru_RU.po +++ b/addons/mrp_operations/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/sl_SL.po b/addons/mrp_operations/i18n/sl_SL.po index 43d7384d374..7b7f9dc3e5f 100644 --- a/addons/mrp_operations/i18n/sl_SL.po +++ b/addons/mrp_operations/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/cs_CS.po b/addons/mrp_operations/i18n/sq_AL.po similarity index 98% rename from addons/mrp_operations/i18n/cs_CS.po rename to addons/mrp_operations/i18n/sq_AL.po index 23af8473fff..d6f6388622e 100644 --- a/addons/mrp_operations/i18n/cs_CS.po +++ b/addons/mrp_operations/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/sv_SE.po b/addons/mrp_operations/i18n/sv_SE.po index 5f769263d47..0b89201acfc 100644 --- a/addons/mrp_operations/i18n/sv_SE.po +++ b/addons/mrp_operations/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/tr_TR.po b/addons/mrp_operations/i18n/tr_TR.po index 3998353a8b4..dd2dc9e058c 100644 --- a/addons/mrp_operations/i18n/tr_TR.po +++ b/addons/mrp_operations/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/uk_UK.po b/addons/mrp_operations/i18n/uk_UA.po similarity index 98% rename from addons/mrp_operations/i18n/uk_UK.po rename to addons/mrp_operations/i18n/uk_UA.po index ad6ab9e8eaa..96db0a97f2a 100644 --- a/addons/mrp_operations/i18n/uk_UK.po +++ b/addons/mrp_operations/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/sv_SV.po b/addons/mrp_operations/i18n/vi_VN.po similarity index 98% rename from addons/mrp_operations/i18n/sv_SV.po rename to addons/mrp_operations/i18n/vi_VN.po index 68d08820193..cd4a0ea6e55 100644 --- a/addons/mrp_operations/i18n/sv_SV.po +++ b/addons/mrp_operations/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "" #. module: mrp_operations #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_startoperation0 diff --git a/addons/mrp_operations/i18n/zh_CN.po b/addons/mrp_operations/i18n/zh_CN.po index c07433bf29b..03da7d7ebe7 100644 --- a/addons/mrp_operations/i18n/zh_CN.po +++ b/addons/mrp_operations/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_operations/i18n/zh_TW.po b/addons/mrp_operations/i18n/zh_TW.po index 88bc7dd7afe..27448428a0d 100644 --- a/addons/mrp_operations/i18n/zh_TW.po +++ b/addons/mrp_operations/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/ar_AR.po b/addons/mrp_repair/i18n/ar_AR.po index f05787963af..6920d03b5fe 100644 --- a/addons/mrp_repair/i18n/ar_AR.po +++ b/addons/mrp_repair/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/bg_BG.po b/addons/mrp_repair/i18n/bg_BG.po index a48f613570b..c30cdc00e19 100644 --- a/addons/mrp_repair/i18n/bg_BG.po +++ b/addons/mrp_repair/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/bs_BS.po b/addons/mrp_repair/i18n/bs_BS.po index a7274c77401..fab2e3faeff 100644 --- a/addons/mrp_repair/i18n/bs_BS.po +++ b/addons/mrp_repair/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/ca_ES.po b/addons/mrp_repair/i18n/ca_ES.po index 9765d966251..7baf322bfb4 100644 --- a/addons/mrp_repair/i18n/ca_ES.po +++ b/addons/mrp_repair/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/cs_CZ.po b/addons/mrp_repair/i18n/cs_CZ.po index ffce36c26c1..ed8a51ee93d 100644 --- a/addons/mrp_repair/i18n/cs_CZ.po +++ b/addons/mrp_repair/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/de_DE.po b/addons/mrp_repair/i18n/de_DE.po index 069cef69218..521b74bfadf 100644 --- a/addons/mrp_repair/i18n/de_DE.po +++ b/addons/mrp_repair/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/es_AR.po b/addons/mrp_repair/i18n/es_AR.po index 2f4a8ac0236..b3dc5aacde9 100644 --- a/addons/mrp_repair/i18n/es_AR.po +++ b/addons/mrp_repair/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/es_ES.po b/addons/mrp_repair/i18n/es_ES.po index 60a4147f548..65b86b6d62f 100644 --- a/addons/mrp_repair/i18n/es_ES.po +++ b/addons/mrp_repair/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/et_EE.po b/addons/mrp_repair/i18n/et_EE.po index 3c48c011a8d..f1703e64bff 100644 --- a/addons/mrp_repair/i18n/et_EE.po +++ b/addons/mrp_repair/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/fi_FI.po b/addons/mrp_repair/i18n/fi_FI.po index 52af08a64e8..bfdf9b2ae62 100644 --- a/addons/mrp_repair/i18n/fi_FI.po +++ b/addons/mrp_repair/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/fr_FR.po b/addons/mrp_repair/i18n/fr_FR.po index 5bdaf3940ca..089db274e03 100644 --- a/addons/mrp_repair/i18n/fr_FR.po +++ b/addons/mrp_repair/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "Mouvement d'Inventaire" #. module: mrp_repair #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: mrp_repair #: view:mrp.repair:0 diff --git a/addons/mrp_repair/i18n/hr_HR.po b/addons/mrp_repair/i18n/hr_HR.po index b59d986bc97..70327d2524d 100644 --- a/addons/mrp_repair/i18n/hr_HR.po +++ b/addons/mrp_repair/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/hu_HU.po b/addons/mrp_repair/i18n/hu_HU.po index a33488fdd66..da3636ddfbf 100644 --- a/addons/mrp_repair/i18n/hu_HU.po +++ b/addons/mrp_repair/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/id_ID.po b/addons/mrp_repair/i18n/id_ID.po index 8e3fcab0163..2c8ef35e088 100644 --- a/addons/mrp_repair/i18n/id_ID.po +++ b/addons/mrp_repair/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/it_IT.po b/addons/mrp_repair/i18n/it_IT.po index d29823eb973..e650efa4ac0 100644 --- a/addons/mrp_repair/i18n/it_IT.po +++ b/addons/mrp_repair/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/lt_LT.po b/addons/mrp_repair/i18n/lt_LT.po index 8ac60b6ea2c..8336ea10051 100644 --- a/addons/mrp_repair/i18n/lt_LT.po +++ b/addons/mrp_repair/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/mrp_repair.pot b/addons/mrp_repair/i18n/mrp_repair.pot index 212678e047c..009eb9fb9df 100644 --- a/addons/mrp_repair/i18n/mrp_repair.pot +++ b/addons/mrp_repair/i18n/mrp_repair.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/nl_BE.po b/addons/mrp_repair/i18n/nl_BE.po index 3c97ebe04cf..ea6abfa7cca 100644 --- a/addons/mrp_repair/i18n/nl_BE.po +++ b/addons/mrp_repair/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/nl_NL.po b/addons/mrp_repair/i18n/nl_NL.po index a733e9a01b2..cda4e19ab65 100644 --- a/addons/mrp_repair/i18n/nl_NL.po +++ b/addons/mrp_repair/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/pl_PL.po b/addons/mrp_repair/i18n/pl_PL.po index bd15b5b310a..71a9767462c 100644 --- a/addons/mrp_repair/i18n/pl_PL.po +++ b/addons/mrp_repair/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:03+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:03+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/pt_BR.po b/addons/mrp_repair/i18n/pt_BR.po index ce5b72146c3..521ef5433bc 100644 --- a/addons/mrp_repair/i18n/pt_BR.po +++ b/addons/mrp_repair/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/pt_PT.po b/addons/mrp_repair/i18n/pt_PT.po index 22b993734db..f4bec040598 100644 --- a/addons/mrp_repair/i18n/pt_PT.po +++ b/addons/mrp_repair/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/ro_RO.po b/addons/mrp_repair/i18n/ro_RO.po index ba64c9377db..e674f26f347 100644 --- a/addons/mrp_repair/i18n/ro_RO.po +++ b/addons/mrp_repair/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/ru_RU.po b/addons/mrp_repair/i18n/ru_RU.po index 0f6b72de1b8..197de413638 100644 --- a/addons/mrp_repair/i18n/ru_RU.po +++ b/addons/mrp_repair/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/sl_SL.po b/addons/mrp_repair/i18n/sl_SL.po index af55bd2d519..033345638d2 100644 --- a/addons/mrp_repair/i18n/sl_SL.po +++ b/addons/mrp_repair/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/cs_CS.po b/addons/mrp_repair/i18n/sq_AL.po similarity index 98% rename from addons/mrp_repair/i18n/cs_CS.po rename to addons/mrp_repair/i18n/sq_AL.po index 92e7d96c640..8e16b657224 100644 --- a/addons/mrp_repair/i18n/cs_CS.po +++ b/addons/mrp_repair/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/sv_SE.po b/addons/mrp_repair/i18n/sv_SE.po index b168df6c31d..76540f178d1 100644 --- a/addons/mrp_repair/i18n/sv_SE.po +++ b/addons/mrp_repair/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/tr_TR.po b/addons/mrp_repair/i18n/tr_TR.po index f256df74730..ead6f0a32d3 100644 --- a/addons/mrp_repair/i18n/tr_TR.po +++ b/addons/mrp_repair/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/uk_UK.po b/addons/mrp_repair/i18n/uk_UA.po similarity index 98% rename from addons/mrp_repair/i18n/uk_UK.po rename to addons/mrp_repair/i18n/uk_UA.po index af9093dead7..cd8354df3e2 100644 --- a/addons/mrp_repair/i18n/uk_UK.po +++ b/addons/mrp_repair/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/sv_SV.po b/addons/mrp_repair/i18n/vi_VN.po similarity index 98% rename from addons/mrp_repair/i18n/sv_SV.po rename to addons/mrp_repair/i18n/vi_VN.po index 3709e558c17..5cd2d1cd7be 100644 --- a/addons/mrp_repair/i18n/sv_SV.po +++ b/addons/mrp_repair/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -360,7 +360,7 @@ msgstr "" #. module: mrp_repair #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: mrp_repair #: field:mrp.repair,amount_untaxed:0 diff --git a/addons/mrp_repair/i18n/zh_CN.po b/addons/mrp_repair/i18n/zh_CN.po index 48cccb9bd02..4335bb59860 100644 --- a/addons/mrp_repair/i18n/zh_CN.po +++ b/addons/mrp_repair/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_repair/i18n/zh_TW.po b/addons/mrp_repair/i18n/zh_TW.po index b87f3308dc8..3977403580a 100644 --- a/addons/mrp_repair/i18n/zh_TW.po +++ b/addons/mrp_repair/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/ar_AR.po b/addons/mrp_subproduct/i18n/ar_AR.po index e328100db47..2173264e5fa 100644 --- a/addons/mrp_subproduct/i18n/ar_AR.po +++ b/addons/mrp_subproduct/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/bg_BG.po b/addons/mrp_subproduct/i18n/bg_BG.po index f523ffb634e..cad97b827e6 100644 --- a/addons/mrp_subproduct/i18n/bg_BG.po +++ b/addons/mrp_subproduct/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/bs_BS.po b/addons/mrp_subproduct/i18n/bs_BS.po index 375f9659514..c6ef780df9b 100644 --- a/addons/mrp_subproduct/i18n/bs_BS.po +++ b/addons/mrp_subproduct/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/ca_ES.po b/addons/mrp_subproduct/i18n/ca_ES.po index d04f652a95c..88afec560d7 100644 --- a/addons/mrp_subproduct/i18n/ca_ES.po +++ b/addons/mrp_subproduct/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/cs_CZ.po b/addons/mrp_subproduct/i18n/cs_CZ.po index 0896416ecc4..425c5d94c3b 100644 --- a/addons/mrp_subproduct/i18n/cs_CZ.po +++ b/addons/mrp_subproduct/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/de_DE.po b/addons/mrp_subproduct/i18n/de_DE.po index af5dca28415..782543a8ca6 100644 --- a/addons/mrp_subproduct/i18n/de_DE.po +++ b/addons/mrp_subproduct/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/es_AR.po b/addons/mrp_subproduct/i18n/es_AR.po index 7317a1864cb..259f2368fe3 100644 --- a/addons/mrp_subproduct/i18n/es_AR.po +++ b/addons/mrp_subproduct/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/es_ES.po b/addons/mrp_subproduct/i18n/es_ES.po index f85ab4f47dc..b677e1be0ad 100644 --- a/addons/mrp_subproduct/i18n/es_ES.po +++ b/addons/mrp_subproduct/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/et_EE.po b/addons/mrp_subproduct/i18n/et_EE.po index 0009afd9d61..442d299611a 100644 --- a/addons/mrp_subproduct/i18n/et_EE.po +++ b/addons/mrp_subproduct/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/fi_FI.po b/addons/mrp_subproduct/i18n/fi_FI.po index 65b046e1a5d..c069a9a0e72 100644 --- a/addons/mrp_subproduct/i18n/fi_FI.po +++ b/addons/mrp_subproduct/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/fr_FR.po b/addons/mrp_subproduct/i18n/fr_FR.po index 1921cfb28fd..c3b3cf7cf4a 100644 --- a/addons/mrp_subproduct/i18n/fr_FR.po +++ b/addons/mrp_subproduct/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/hr_HR.po b/addons/mrp_subproduct/i18n/hr_HR.po index 74eee7567af..d037f9b6f41 100644 --- a/addons/mrp_subproduct/i18n/hr_HR.po +++ b/addons/mrp_subproduct/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/hu_HU.po b/addons/mrp_subproduct/i18n/hu_HU.po index 4594ababf11..301c57c30f4 100644 --- a/addons/mrp_subproduct/i18n/hu_HU.po +++ b/addons/mrp_subproduct/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/id_ID.po b/addons/mrp_subproduct/i18n/id_ID.po index d2c296bfffa..512551a8935 100644 --- a/addons/mrp_subproduct/i18n/id_ID.po +++ b/addons/mrp_subproduct/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/it_IT.po b/addons/mrp_subproduct/i18n/it_IT.po index 3ac7fb8efbc..ef4ee7cb05b 100644 --- a/addons/mrp_subproduct/i18n/it_IT.po +++ b/addons/mrp_subproduct/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/lt_LT.po b/addons/mrp_subproduct/i18n/lt_LT.po index 65dbae1d8ec..af8a0c27abd 100644 --- a/addons/mrp_subproduct/i18n/lt_LT.po +++ b/addons/mrp_subproduct/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+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 1b73ac9dc79..8bba2a36df8 100644 --- a/addons/mrp_subproduct/i18n/mrp_subproduct.pot +++ b/addons/mrp_subproduct/i18n/mrp_subproduct.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/nl_BE.po b/addons/mrp_subproduct/i18n/nl_BE.po index 62e3bc85a97..8cb56ed2520 100644 --- a/addons/mrp_subproduct/i18n/nl_BE.po +++ b/addons/mrp_subproduct/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/nl_NL.po b/addons/mrp_subproduct/i18n/nl_NL.po index ced91640f1c..f1e8f3b571c 100644 --- a/addons/mrp_subproduct/i18n/nl_NL.po +++ b/addons/mrp_subproduct/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/pl_PL.po b/addons/mrp_subproduct/i18n/pl_PL.po index cade47a440c..92cae785076 100644 --- a/addons/mrp_subproduct/i18n/pl_PL.po +++ b/addons/mrp_subproduct/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/pt_BR.po b/addons/mrp_subproduct/i18n/pt_BR.po index 0793d684c1f..d5682d7cf19 100644 --- a/addons/mrp_subproduct/i18n/pt_BR.po +++ b/addons/mrp_subproduct/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/pt_PT.po b/addons/mrp_subproduct/i18n/pt_PT.po index 8deb82ba845..7a66149c3a6 100644 --- a/addons/mrp_subproduct/i18n/pt_PT.po +++ b/addons/mrp_subproduct/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/ro_RO.po b/addons/mrp_subproduct/i18n/ro_RO.po index ed48fbe0c61..9ed35ec4188 100644 --- a/addons/mrp_subproduct/i18n/ro_RO.po +++ b/addons/mrp_subproduct/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/ru_RU.po b/addons/mrp_subproduct/i18n/ru_RU.po index b344e23dff0..647a6431938 100644 --- a/addons/mrp_subproduct/i18n/ru_RU.po +++ b/addons/mrp_subproduct/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/sl_SL.po b/addons/mrp_subproduct/i18n/sl_SL.po index b66eaf58d4b..476c51a4e33 100644 --- a/addons/mrp_subproduct/i18n/sl_SL.po +++ b/addons/mrp_subproduct/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/cs_CS.po b/addons/mrp_subproduct/i18n/sq_AL.po similarity index 92% rename from addons/mrp_subproduct/i18n/cs_CS.po rename to addons/mrp_subproduct/i18n/sq_AL.po index 21f4a113769..a47c0280cab 100644 --- a/addons/mrp_subproduct/i18n/cs_CS.po +++ b/addons/mrp_subproduct/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/sv_SE.po b/addons/mrp_subproduct/i18n/sv_SE.po index c519a7a6c22..64a93c35ba5 100644 --- a/addons/mrp_subproduct/i18n/sv_SE.po +++ b/addons/mrp_subproduct/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/tr_TR.po b/addons/mrp_subproduct/i18n/tr_TR.po index 122a758ded6..72625b2bbc8 100644 --- a/addons/mrp_subproduct/i18n/tr_TR.po +++ b/addons/mrp_subproduct/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/uk_UK.po b/addons/mrp_subproduct/i18n/uk_UA.po similarity index 93% rename from addons/mrp_subproduct/i18n/uk_UK.po rename to addons/mrp_subproduct/i18n/uk_UA.po index 95638a2a0ef..86d1db47582 100644 --- a/addons/mrp_subproduct/i18n/uk_UK.po +++ b/addons/mrp_subproduct/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/sv_SV.po b/addons/mrp_subproduct/i18n/vi_VN.po similarity index 88% rename from addons/mrp_subproduct/i18n/sv_SV.po rename to addons/mrp_subproduct/i18n/vi_VN.po index 9538dc5ea5d..1af83280a20 100644 --- a/addons/mrp_subproduct/i18n/sv_SV.po +++ b/addons/mrp_subproduct/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: mrp_subproduct #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: mrp_subproduct #: view:mrp.bom:0 diff --git a/addons/mrp_subproduct/i18n/zh_CN.po b/addons/mrp_subproduct/i18n/zh_CN.po index 0461c1329cd..cc5564b5439 100644 --- a/addons/mrp_subproduct/i18n/zh_CN.po +++ b/addons/mrp_subproduct/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/zh_TW.po b/addons/mrp_subproduct/i18n/zh_TW.po index e72c719971c..6550405df97 100644 --- a/addons/mrp_subproduct/i18n/zh_TW.po +++ b/addons/mrp_subproduct/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/ar_AR.po b/addons/point_of_sale/i18n/ar_AR.po index 0cf415cb6be..d4aabea1933 100644 --- a/addons/point_of_sale/i18n/ar_AR.po +++ b/addons/point_of_sale/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/bg_BG.po b/addons/point_of_sale/i18n/bg_BG.po index d4ed15b3575..021e27fce38 100644 --- a/addons/point_of_sale/i18n/bg_BG.po +++ b/addons/point_of_sale/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "Невалиден XML за преглед на архитектурата" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/bs_BS.po b/addons/point_of_sale/i18n/bs_BS.po index 93d77b4b422..3b304237ebd 100644 --- a/addons/point_of_sale/i18n/bs_BS.po +++ b/addons/point_of_sale/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "Neodgovarajući XML za arhitekturu prikaza!" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/ca_ES.po b/addons/point_of_sale/i18n/ca_ES.po index 3d6f8179c4d..3c4574a2cde 100644 --- a/addons/point_of_sale/i18n/ca_ES.po +++ b/addons/point_of_sale/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "Subtotal" msgid "Partner Ref." msgstr "Ref. empresa" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "Línia de venda" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "Codi" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,9 +206,10 @@ msgid "Validity Date" msgstr "Data validació" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" -msgstr "Operació Num. :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" +msgstr "Albarà" #. module: point_of_sale #: rml:pos.details:0 @@ -253,6 +265,7 @@ msgstr "Desc." #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "Fax :" @@ -273,19 +286,14 @@ msgstr "Pagaments de la venda" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" -msgstr "Tel :" +msgid "Date :" +msgstr "Data :" #. module: point_of_sale #: view:pos.order:0 msgid "Ma_ke Payment" msgstr "_Realitza pagament" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "Data de pagament" msgid "Payment name" msgstr "Descripció pagament" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "Preu unitat" msgid "Invalid XML for View Architecture!" msgstr "XML invàlid per a la definició de la vista!" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,9 +602,9 @@ msgid "_Add product" msgstr "_Afegeix producte" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "Aplica descompte" +#: rml:pos.receipt:0 +msgid ":" +msgstr ":" #. module: point_of_sale #: rml:pos.details:0 @@ -630,10 +628,10 @@ msgid "Total:" msgstr "Total:" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" -msgstr "Albarà" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" +msgstr "Resum" #. module: point_of_sale #: view:pos.order:0 @@ -665,10 +663,9 @@ msgid "Ma_ke payment" msgstr "_Realitza pagament" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" -msgstr "Codi" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" +msgstr "Aplica descompte" #. module: point_of_sale #: field:pos.order,pricelist_id:0 @@ -892,12 +889,6 @@ msgstr "Pagaments" msgid "Supplier Refund" msgstr "Factura d'abonament de proveïdor" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "Resum" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "Companyia:" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/cs_CZ.po b/addons/point_of_sale/i18n/cs_CZ.po index ddfa869e150..c6a6ef89ffa 100644 --- a/addons/point_of_sale/i18n/cs_CZ.po +++ b/addons/point_of_sale/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/de_DE.po b/addons/point_of_sale/i18n/de_DE.po index 077a7aa20db..77e5b721824 100644 --- a/addons/point_of_sale/i18n/de_DE.po +++ b/addons/point_of_sale/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "Zwischensumme" msgid "Partner Ref." msgstr "Partner Ref." +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "Verkauf Positionen" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "Kurzbez." + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,9 +206,10 @@ msgid "Validity Date" msgstr "Datum Validierung" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" -msgstr "Vorgangsnummer" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" +msgstr "Warenauswahl" #. module: point_of_sale #: rml:pos.details:0 @@ -253,6 +265,7 @@ msgstr "Rabatt (%)" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "Fax:" @@ -273,19 +286,14 @@ msgstr "Zahlungsauftrag" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" -msgstr "Tel.:" +msgid "Date :" +msgstr "Datum:" #. module: point_of_sale #: view:pos.order:0 msgid "Ma_ke Payment" msgstr "Erzeuge Zahlung" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "Zahlungsdatum" msgid "Payment name" msgstr "Zahlungsbezeichnung" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "Preis pro Einheit" msgid "Invalid XML for View Architecture!" msgstr "Fehlerhafter xml Code für diese Ansicht!" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,9 +602,9 @@ msgid "_Add product" msgstr "Hinzuf. Produkt" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "Erzeuge Rabatt" +#: rml:pos.receipt:0 +msgid ":" +msgstr ":" #. module: point_of_sale #: rml:pos.details:0 @@ -630,10 +628,10 @@ msgid "Total:" msgstr "Summe:" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" -msgstr "Warenauswahl" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" +msgstr "Zusammenfassung" #. module: point_of_sale #: view:pos.order:0 @@ -665,10 +663,9 @@ msgid "Ma_ke payment" msgstr "Erfasse Zahlung" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" -msgstr "Kurzbez." +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" +msgstr "Erzeuge Rabatt" #. module: point_of_sale #: field:pos.order,pricelist_id:0 @@ -892,12 +889,6 @@ msgstr "Anzeige Zahlungen" msgid "Supplier Refund" msgstr "Lieferanten Gutschrift" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "Zusammenfassung" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "Firma:" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/es_AR.po b/addons/point_of_sale/i18n/es_AR.po index 69994f41d24..b20b9c70624 100644 --- a/addons/point_of_sale/i18n/es_AR.po +++ b/addons/point_of_sale/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/es_ES.po b/addons/point_of_sale/i18n/es_ES.po index 0a17f000b03..1d440a94df7 100644 --- a/addons/point_of_sale/i18n/es_ES.po +++ b/addons/point_of_sale/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "Subtotal" msgid "Partner Ref." msgstr "Ref. empresa" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "Línea de venta" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "Código" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,9 +206,10 @@ msgid "Validity Date" msgstr "Fecha validación" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" -msgstr "Operación Num. :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" +msgstr "Albarán" #. module: point_of_sale #: rml:pos.details:0 @@ -253,6 +265,7 @@ msgstr "Desc." #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "Fax :" @@ -273,19 +286,14 @@ msgstr "Pagos de la venta" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" -msgstr "Tel :" +msgid "Date :" +msgstr "Fecha :" #. module: point_of_sale #: view:pos.order:0 msgid "Ma_ke Payment" msgstr "_Realizar pago" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "Fecha de pago" msgid "Payment name" msgstr "Descripción pago" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "Precio unidad" msgid "Invalid XML for View Architecture!" msgstr "¡XML inválido para la definición de la vista!" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,9 +602,9 @@ msgid "_Add product" msgstr "_Añadir producto" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "Aplicar descuento" +#: rml:pos.receipt:0 +msgid ":" +msgstr ":" #. module: point_of_sale #: rml:pos.details:0 @@ -630,10 +628,10 @@ msgid "Total:" msgstr "Total:" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" -msgstr "Albarán" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" +msgstr "Resumen" #. module: point_of_sale #: view:pos.order:0 @@ -665,10 +663,9 @@ msgid "Ma_ke payment" msgstr "_Realizar pago" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" -msgstr "Código" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" +msgstr "Aplicar descuento" #. module: point_of_sale #: field:pos.order,pricelist_id:0 @@ -892,12 +889,6 @@ msgstr "Pagos" msgid "Supplier Refund" msgstr "Devolución proveedor" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "Resumen" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "Compañía:" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/et_EE.po b/addons/point_of_sale/i18n/et_EE.po index 09cec664e04..7218fdf7c37 100644 --- a/addons/point_of_sale/i18n/et_EE.po +++ b/addons/point_of_sale/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "Vahesumma" msgid "Partner Ref." msgstr "Partneri viide." +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "Müügi rida" msgid "No. Of Articles" msgstr "Artiklite arv" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "Tootekood" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,9 +206,10 @@ msgid "Validity Date" msgstr "Kehtivuse kuupäev" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" -msgstr "Toimingu N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" +msgstr "Noppimine" #. module: point_of_sale #: rml:pos.details:0 @@ -253,6 +265,7 @@ msgstr "Disk" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "Faks :" @@ -273,19 +286,14 @@ msgstr "Korralduse maksed" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" -msgstr "Tel :" +msgid "Date :" +msgstr "Kuupäev :" #. module: point_of_sale #: view:pos.order:0 msgid "Ma_ke Payment" msgstr "_Loo makse" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "Makse kuupäev" msgid "Payment name" msgstr "Makse nimetus" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "Ühiku hind" msgid "Invalid XML for View Architecture!" msgstr "Vigane XML vaate arhitektuurile!" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,9 +602,9 @@ msgid "_Add product" msgstr "_Lisa toode" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "Rakenda allahindlus" +#: rml:pos.receipt:0 +msgid ":" +msgstr ":" #. module: point_of_sale #: rml:pos.details:0 @@ -630,10 +628,10 @@ msgid "Total:" msgstr "Kokku:" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" -msgstr "Noppimine" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" +msgstr "Üldistus" #. module: point_of_sale #: view:pos.order:0 @@ -665,10 +663,9 @@ msgid "Ma_ke payment" msgstr "_Loo makse" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" -msgstr "Tootekood" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" +msgstr "Rakenda allahindlus" #. module: point_of_sale #: field:pos.order,pricelist_id:0 @@ -892,12 +889,6 @@ msgstr "Maksed" msgid "Supplier Refund" msgstr "Tarnija tagasimakse" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "Üldistus" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "Firma:" msgid "Print Date" msgstr "Trükkimise kuupäev" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/fi_FI.po b/addons/point_of_sale/i18n/fi_FI.po index bf8281fc12f..840842e2db4 100644 --- a/addons/point_of_sale/i18n/fi_FI.po +++ b/addons/point_of_sale/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/fr_FR.po b/addons/point_of_sale/i18n/fr_FR.po index 0c217ab9149..19ba59e12c7 100644 --- a/addons/point_of_sale/i18n/fr_FR.po +++ b/addons/point_of_sale/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "Total Payé" #: rml:pos.details:0 #: rml:pos.details_summary:0 msgid "Qty of product" -msgstr "Qté de produit" +msgstr "Qté de Produits" #. module: point_of_sale #: view:pos.order:0 @@ -51,7 +51,7 @@ msgstr "Numéro de pièce" #. module: point_of_sale #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: point_of_sale #: field:pos.order,name:0 @@ -91,7 +91,7 @@ msgstr "Ventes (résumé)" #. module: point_of_sale #: help:pos.order,user_id:0 msgid "This is the logged in user (not necessarily the salesman)." -msgstr "Ceci est l'utilisateur connecté (pas nécessairement le vendeur)." +msgstr "" #. module: point_of_sale #: wizard_view:pos.sale.get,init:0 @@ -106,7 +106,7 @@ msgstr "Société" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Invoice Date" -msgstr "Date de facturation" +msgstr "Date de Facture" #. module: point_of_sale #: rml:pos.receipt:0 @@ -138,6 +138,11 @@ msgstr "Sous-total" msgid "Partner Ref." msgstr "Réf. Partenaire" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -168,7 +173,7 @@ msgstr "Commande Point de Vente" #: rml:pos.details:0 #: rml:pos.details_summary:0 msgid "Detail of Sales" -msgstr "Détail des ventes" +msgstr "Détail des Ventes" #. module: point_of_sale #: rml:pos.invoice:0 @@ -186,7 +191,13 @@ msgstr "Ligne de Vente" #. module: point_of_sale #: rml:pos.lines:0 msgid "No. Of Articles" -msgstr "Nombre d'articles" +msgstr "Nombre d'Articles" + +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "Code" #. module: point_of_sale #: field:pos.order,date_validity:0 @@ -195,9 +206,10 @@ msgid "Validity Date" msgstr "Date de validité" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" -msgstr "Opération N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" +msgstr "Colisage" #. module: point_of_sale #: rml:pos.details:0 @@ -213,7 +225,7 @@ msgstr "Remboursement" #. module: point_of_sale #: field:pos.order,last_out_picking:0 msgid "Last Output Picking" -msgstr "Dernière sortie de stock" +msgstr "Dernier Colisage Sortant" #. module: point_of_sale #: wizard_view:pos.config.journal,init:0 @@ -229,12 +241,12 @@ msgstr "Qté" #. module: point_of_sale #: field:pos.order,user_id:0 msgid "Logged in User" -msgstr "Connecté en Utilisateur" +msgstr "" #. module: point_of_sale #: rml:pos.details:0 msgid "VAT(%)" -msgstr "TVA (%)" +msgstr "TVA(%)" #. module: point_of_sale #: rml:pos.invoice:0 @@ -253,13 +265,14 @@ msgstr "Rem." #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "Fax :" #. module: point_of_sale #: wizard_view:pos.scan_product,init:0 msgid "Scan Barcode" -msgstr "Scanner un code barre" +msgstr "Scanner le code barre" #. module: point_of_sale #: field:pos.order,partner_id:0 @@ -273,19 +286,14 @@ msgstr "Paiements des commandes" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" -msgstr "Tél :" +msgid "Date :" +msgstr "Date :" #. module: point_of_sale #: view:pos.order:0 msgid "Ma_ke Payment" msgstr "Effectuer le paiement" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "Date de vente :" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -321,7 +329,7 @@ msgstr "État" #. module: point_of_sale #: view:pos.order.line:0 msgid "Sum of subtotals" -msgstr "Somme des sous totaux" +msgstr "Somme des sous-totaux" #. module: point_of_sale #: wizard_field:pos.payment,ask_pay,payment_date:0 @@ -333,11 +341,6 @@ msgstr "Date du paiement" msgid "Payment name" msgstr "Nom sur le paiement" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "Vendeur :" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -346,7 +349,7 @@ msgstr "Lignes de la commande" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Disc.(%)" -msgstr "Rem.(%)" +msgstr "" #. module: point_of_sale #: model:ir.module.module,shortdesc:point_of_sale.module_meta_information @@ -356,12 +359,12 @@ msgstr "Point de Vente" #. module: point_of_sale #: field:pos.order.line,create_date:0 msgid "Creation Date" -msgstr "Date de création" +msgstr "Date de Création" #. module: point_of_sale #: rml:pos.invoice:0 msgid "PRO-FORMA" -msgstr "PROFORMA" +msgstr "PRO-FORMA" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_point_rep @@ -371,7 +374,7 @@ msgstr "Reporting" #. module: point_of_sale #: view:report.transaction.pos:0 msgid "POS " -msgstr "PDV" +msgstr "Point de Vente " #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_config_journal @@ -381,7 +384,7 @@ msgstr "Configuration des Journaux utilisés par les Points de Vente." #. module: point_of_sale #: rml:pos.receipt:0 msgid "Total :" -msgstr "Total :" +msgstr "" #. module: point_of_sale #: wizard_field:pos.config.journal,init,default_journal:0 @@ -391,7 +394,7 @@ msgstr "Journal par défault" #. module: point_of_sale #: field:pos.order,account_receivable:0 msgid "Default Receivable" -msgstr "Compte de revenus par défaut" +msgstr "Recevable par défaut" #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_sale_get @@ -415,11 +418,6 @@ msgstr "Prix unitaire" msgid "Invalid XML for View Architecture!" msgstr "XML non valide pour l'architecture de la vue" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "Date d'impression du reçu" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -428,7 +426,7 @@ msgstr "Lignes du Point de Vente du Jour" #. module: point_of_sale #: field:pos.order,nb_print:0 msgid "Number of Print" -msgstr "Nombre d'impression" +msgstr "Nombre d'Impression" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_wizard_default_journal @@ -438,7 +436,7 @@ msgstr "Journaux par défaut" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Draft Invoice" -msgstr "Facture brouillon" +msgstr "Facture Brouillon" #. module: point_of_sale #: field:pos.order.line,discount:0 @@ -448,7 +446,7 @@ msgstr "Ristourne (%)" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Fiscal Position Remark :" -msgstr "Indiquer la position fiscale :" +msgstr "" #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_add_product @@ -458,17 +456,17 @@ msgstr "Ajouter des Produits" #. module: point_of_sale #: view:pos.order.line:0 msgid "Total qty" -msgstr "Qté totale" +msgstr "Qté Totale" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line msgid "POS Lines" -msgstr "Proforma" +msgstr "Lignes de ticket" #. module: point_of_sale #: view:pos.order:0 msgid "Sales Order POS" -msgstr "Ticket de ventes" +msgstr "Commandes de Vente Point de Vente" #. module: point_of_sale #: wizard_button:pos.config.journal,init,set_default_journal:0 @@ -488,13 +486,13 @@ msgstr "Point de Vente" #. module: point_of_sale #: field:pos.order,salesman_id:0 msgid "Salesman" -msgstr "Vendeur" +msgstr "" #. module: point_of_sale #: rml:pos.details:0 #: selection:pos.order,state:0 msgid "Invoiced" -msgstr "Facturé" +msgstr "Facturée" #. module: point_of_sale #: wizard_field:pos.config.journal,init,default_journal_rebate:0 @@ -510,7 +508,7 @@ msgstr "Assistant des journaux par défaut" #: rml:pos.details:0 #: rml:pos.details_summary:0 msgid "Total of the day" -msgstr "Total du jour" +msgstr "Total du Jour" #. module: point_of_sale #: wizard_button:pos.scan_product,init,add:0 @@ -530,7 +528,7 @@ msgstr "Payé" #. module: point_of_sale #: rml:pos.invoice:0 msgid "VAT :" -msgstr "TVA :" +msgstr "TVA" #. module: point_of_sale #: view:pos.order.line:0 @@ -546,7 +544,7 @@ msgstr "E-mail :" #: rml:pos.details:0 #: rml:pos.details_summary:0 msgid "Total invoiced" -msgstr "Total facturé" +msgstr "Total Facturé" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_trans_pos_tree_today @@ -577,12 +575,12 @@ msgstr "Utilisateur" #. module: point_of_sale #: field:pos.payment,payment_date:0 msgid "Payment Date" -msgstr "Date de paiement" +msgstr "Date de Paiement" #. module: point_of_sale #: field:pos.payment,payment_name:0 msgid "Payment Name" -msgstr "Nom sur paiement" +msgstr "Nom du Paiement" #. module: point_of_sale #: rml:pos.details:0 @@ -604,9 +602,9 @@ msgid "_Add product" msgstr "_Ajouter Produit" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "Appliquer la Remise" +#: rml:pos.receipt:0 +msgid ":" +msgstr ":" #. module: point_of_sale #: rml:pos.details:0 @@ -630,10 +628,10 @@ msgid "Total:" msgstr "Total:" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" -msgstr "Colisage" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" +msgstr "Résumé" #. module: point_of_sale #: view:pos.order:0 @@ -665,10 +663,9 @@ msgid "Ma_ke payment" msgstr "Effectuer le paiement" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" -msgstr "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" +msgstr "Appliquer la Remise" #. module: point_of_sale #: field:pos.order,pricelist_id:0 @@ -772,7 +769,7 @@ msgstr "Remise totale" #. module: point_of_sale #: field:pos.order,invoice_wanted:0 msgid "Create Invoice" -msgstr "Créer une facture" +msgstr "Créer une Facture" #. module: point_of_sale #: wizard_view:pos.refund_order,init:0 @@ -819,7 +816,7 @@ msgstr "Journal" #. module: point_of_sale #: wizard_field:pos.scan_product,init,gencod:0 msgid "Barcode" -msgstr "Code barre" +msgstr "Code Barre" #. module: point_of_sale #: rml:pos.invoice:0 @@ -829,12 +826,12 @@ msgstr "Facture annulée" #. module: point_of_sale #: view:report.transaction.pos:0 msgid "POS" -msgstr "PDV" +msgstr "Point de vente" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_lines_report msgid "Pos Lines" -msgstr "Proforma" +msgstr "Lignes de ticket" #. module: point_of_sale #: rml:pos.invoice:0 @@ -844,7 +841,7 @@ msgstr "Tél. :" #. module: point_of_sale #: field:pos.payment,payment_nb:0 msgid "Piece Number" -msgstr "Numéro de pièce" +msgstr "Numéro de Pièce" #. module: point_of_sale #: wizard_field:pos.config.journal,init,default_journal_gift:0 @@ -875,7 +872,7 @@ msgstr "Ventes du Mois" #. module: point_of_sale #: view:pos.order:0 msgid "D_iscount" -msgstr "Rem_ise pied" +msgstr "Remise" #. module: point_of_sale #: field:pos.order,date_order:0 @@ -890,13 +887,7 @@ msgstr "Paiements" #. module: point_of_sale #: rml:pos.invoice:0 msgid "Supplier Refund" -msgstr "Retour fournisseur" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "Résumé" +msgstr "Note de Crédit Fournisseur" #. module: point_of_sale #: field:pos.config.journal,name:0 @@ -934,13 +925,13 @@ msgstr "Actions" #. module: point_of_sale #: help:pos.order,salesman_id:0 msgid "This is the salesman actually making the order." -msgstr "Indiquer le vendeur de cette vente" +msgstr "" #. module: point_of_sale #: rml:pos.details:0 #: rml:pos.details_summary:0 msgid "Mode of Taxes" -msgstr "Mode de taxes" +msgstr "Mode des Taxes" #. module: point_of_sale #: rml:pos.details:0 @@ -957,7 +948,12 @@ msgstr "Société :" #. module: point_of_sale #: rml:pos.lines:0 msgid "Print Date" -msgstr "Date d'impression" +msgstr "Date d'Impression" + +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" #. module: point_of_sale #: rml:pos.lines:0 diff --git a/addons/point_of_sale/i18n/hr_HR.po b/addons/point_of_sale/i18n/hr_HR.po index 3b2fe2209dd..b41ad69899d 100644 --- a/addons/point_of_sale/i18n/hr_HR.po +++ b/addons/point_of_sale/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/hu_HU.po b/addons/point_of_sale/i18n/hu_HU.po index f34886ec5da..ba904ddc5f6 100644 --- a/addons/point_of_sale/i18n/hu_HU.po +++ b/addons/point_of_sale/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/id_ID.po b/addons/point_of_sale/i18n/id_ID.po index 7d96fcb869a..44e011caeda 100644 --- a/addons/point_of_sale/i18n/id_ID.po +++ b/addons/point_of_sale/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/it_IT.po b/addons/point_of_sale/i18n/it_IT.po index 8ab85098757..2f939669bc0 100644 --- a/addons/point_of_sale/i18n/it_IT.po +++ b/addons/point_of_sale/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "Subtotale" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "Riga Vendita" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "Codice" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,9 +206,10 @@ msgid "Validity Date" msgstr "Data Validità" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" -msgstr "Operazione N°:" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" +msgstr "Presa" #. module: point_of_sale #: rml:pos.details:0 @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "Fax :" @@ -273,19 +286,14 @@ msgstr "Pagamenti Ordine" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" -msgstr "Tel :" +msgid "Date :" +msgstr "Data:" #. module: point_of_sale #: view:pos.order:0 msgid "Ma_ke Payment" msgstr "Produci Pagamento" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "Data Pagamento" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "Prezzo unitario" msgid "Invalid XML for View Architecture!" msgstr "XML non valido per Visualizzazione Architettura!" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,9 +602,9 @@ msgid "_Add product" msgstr "Aggiungi Prodotto" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "Applica Sconto" +#: rml:pos.receipt:0 +msgid ":" +msgstr ":" #. module: point_of_sale #: rml:pos.details:0 @@ -630,10 +628,10 @@ msgid "Total:" msgstr "Totale:" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" -msgstr "Presa" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" +msgstr "Riepilogo" #. module: point_of_sale #: view:pos.order:0 @@ -665,10 +663,9 @@ msgid "Ma_ke payment" msgstr "Produci Pagamento" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" -msgstr "Codice" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" +msgstr "Applica Sconto" #. module: point_of_sale #: field:pos.order,pricelist_id:0 @@ -892,12 +889,6 @@ msgstr "Pagamenti" msgid "Supplier Refund" msgstr "Rimborso Fornitore" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "Riepilogo" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "Azienda:" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/lt_LT.po b/addons/point_of_sale/i18n/lt_LT.po index 6123092e166..40da4a0db4e 100644 --- a/addons/point_of_sale/i18n/lt_LT.po +++ b/addons/point_of_sale/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/nl_BE.po b/addons/point_of_sale/i18n/nl_BE.po index 100becd478a..74aab5605cb 100644 --- a/addons/point_of_sale/i18n/nl_BE.po +++ b/addons/point_of_sale/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/nl_NL.po b/addons/point_of_sale/i18n/nl_NL.po index b78f46f1260..7d7f406efba 100644 --- a/addons/point_of_sale/i18n/nl_NL.po +++ b/addons/point_of_sale/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "Ongeldige XML voor overzicht" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/pl_PL.po b/addons/point_of_sale/i18n/pl_PL.po index 69decac95b1..92f1c018364 100644 --- a/addons/point_of_sale/i18n/pl_PL.po +++ b/addons/point_of_sale/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "XML niewłaściwy dla tej architektury wyświetlania!" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/point_of_sale.pot b/addons/point_of_sale/i18n/point_of_sale.pot index 7f385ca23e9..36fc6d1f6ce 100644 --- a/addons/point_of_sale/i18n/point_of_sale.pot +++ b/addons/point_of_sale/i18n/point_of_sale.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/pt_BR.po b/addons/point_of_sale/i18n/pt_BR.po index b79c166cf97..67056cdc629 100644 --- a/addons/point_of_sale/i18n/pt_BR.po +++ b/addons/point_of_sale/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "Subtotal" msgid "Partner Ref." msgstr "Código parceiro" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "Linha de Venda" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "Código" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,9 +206,10 @@ msgid "Validity Date" msgstr "Data de Validade" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" -msgstr "Operação N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" +msgstr "" #. module: point_of_sale #: rml:pos.details:0 @@ -253,6 +265,7 @@ msgstr "Disco" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "Fax :" @@ -273,19 +286,14 @@ msgstr "Ordens de Pagamentos" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" -msgstr "Tel :" +msgid "Date :" +msgstr "Data :" #. module: point_of_sale #: view:pos.order:0 msgid "Ma_ke Payment" msgstr "Efetuar Pagamento" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "Data de Pagamento" msgid "Payment name" msgstr "Nome da Forma de Pagamento" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "Preço unitário" msgid "Invalid XML for View Architecture!" msgstr "Invalido XML para Arquitetura da View" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,9 +602,9 @@ msgid "_Add product" msgstr "_Incluir produto" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "Aplicar Desconto" +#: rml:pos.receipt:0 +msgid ":" +msgstr ":" #. module: point_of_sale #: rml:pos.details:0 @@ -630,10 +628,10 @@ msgid "Total:" msgstr "Total:" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" -msgstr "" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" +msgstr "Resumo" #. module: point_of_sale #: view:pos.order:0 @@ -665,10 +663,9 @@ msgid "Ma_ke payment" msgstr "Criar Forma de Pagamento" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" -msgstr "Código" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" +msgstr "Aplicar Desconto" #. module: point_of_sale #: field:pos.order,pricelist_id:0 @@ -892,12 +889,6 @@ msgstr "Pagamentos" msgid "Supplier Refund" msgstr "Reembolso a fornecedor" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "Resumo" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "Empresa:" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/pt_PT.po b/addons/point_of_sale/i18n/pt_PT.po index 13f0deee2f9..0eb9392fa44 100644 --- a/addons/point_of_sale/i18n/pt_PT.po +++ b/addons/point_of_sale/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "Sub-total" msgid "Partner Ref." msgstr "Ref. do Parceiro" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "Linha de venda" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "Código" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,9 +206,10 @@ msgid "Validity Date" msgstr "Data de validade" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" -msgstr "Operação Nº:" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" +msgstr "" #. module: point_of_sale #: rml:pos.details:0 @@ -253,6 +265,7 @@ msgstr "Disco" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "Fax :" @@ -273,19 +286,14 @@ msgstr "Pagamentos de venda" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" -msgstr "Tel:" +msgid "Date :" +msgstr "Data:" #. module: point_of_sale #: view:pos.order:0 msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "Data de pagamento" msgid "Payment name" msgstr "Designação do pagamento" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "Preço Unitário" msgid "Invalid XML for View Architecture!" msgstr "XML inválido para a arquitectura de vista" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,9 +602,9 @@ msgid "_Add product" msgstr "_Adicionar produto" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "Aplicar desconto" +#: rml:pos.receipt:0 +msgid ":" +msgstr "" #. module: point_of_sale #: rml:pos.details:0 @@ -630,10 +628,10 @@ msgid "Total:" msgstr "Total:" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" -msgstr "" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" +msgstr "Sumário" #. module: point_of_sale #: view:pos.order:0 @@ -665,10 +663,9 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" -msgstr "Código" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" +msgstr "Aplicar desconto" #. module: point_of_sale #: field:pos.order,pricelist_id:0 @@ -892,12 +889,6 @@ msgstr "Pagamentos" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "Sumário" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "Empresa:" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/ro_RO.po b/addons/point_of_sale/i18n/ro_RO.po index 841713e186c..4baea1c603f 100644 --- a/addons/point_of_sale/i18n/ro_RO.po +++ b/addons/point_of_sale/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/ru_RU.po b/addons/point_of_sale/i18n/ru_RU.po index 577497162bf..aba2fe83477 100644 --- a/addons/point_of_sale/i18n/ru_RU.po +++ b/addons/point_of_sale/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "Подитог" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "Код" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,9 +206,10 @@ msgid "Validity Date" msgstr "Действителен до" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" -msgstr "Операция №:" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" +msgstr "" #. module: point_of_sale #: rml:pos.details:0 @@ -253,6 +265,7 @@ msgstr "Скидка" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,19 +286,14 @@ msgstr "Платежи по заказу" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" -msgstr "Тел.:" +msgid "Date :" +msgstr "Дата :" #. module: point_of_sale #: view:pos.order:0 msgid "Ma_ke Payment" msgstr "Провести платеж" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "Цена за ед." msgid "Invalid XML for View Architecture!" msgstr "Неправильный XML для просмотра архитектуры!" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,9 +602,9 @@ msgid "_Add product" msgstr "Добавить продукцию" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "Применить скидку" +#: rml:pos.receipt:0 +msgid ":" +msgstr ":" #. module: point_of_sale #: rml:pos.details:0 @@ -630,10 +628,10 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" -msgstr "" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" +msgstr "Обзор" #. module: point_of_sale #: view:pos.order:0 @@ -665,10 +663,9 @@ msgid "Ma_ke payment" msgstr "Провести платеж" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" -msgstr "Код" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" +msgstr "Применить скидку" #. module: point_of_sale #: field:pos.order,pricelist_id:0 @@ -892,12 +889,6 @@ msgstr "Платежи" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "Обзор" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "Организация:" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/sl_SL.po b/addons/point_of_sale/i18n/sl_SL.po index fc9b7af9614..fdab9ca8c4a 100644 --- a/addons/point_of_sale/i18n/sl_SL.po +++ b/addons/point_of_sale/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "Delna vsota" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "Oznaka" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,9 +206,10 @@ msgid "Validity Date" msgstr "Veljavnost" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" -msgstr "Operacija št. :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" +msgstr "Prevzemi" #. module: point_of_sale #: rml:pos.details:0 @@ -253,6 +265,7 @@ msgstr "Popust" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,19 +286,14 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" -msgstr "Tel.:" +msgid "Date :" +msgstr "Datum:" #. module: point_of_sale #: view:pos.order:0 msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "Cena enote" msgid "Invalid XML for View Architecture!" msgstr "Neveljaven XML za arhitekturo pogleda." -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,9 +602,9 @@ msgid "_Add product" msgstr "_Dodaj proizvod" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "Uveljavi popust" +#: rml:pos.receipt:0 +msgid ":" +msgstr ":" #. module: point_of_sale #: rml:pos.details:0 @@ -630,10 +628,10 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" -msgstr "Prevzemi" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" +msgstr "Povzetek" #. module: point_of_sale #: view:pos.order:0 @@ -665,10 +663,9 @@ msgid "Ma_ke payment" msgstr "Izvedi plačilo" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" -msgstr "Oznaka" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" +msgstr "Uveljavi popust" #. module: point_of_sale #: field:pos.order,pricelist_id:0 @@ -892,12 +889,6 @@ msgstr "Plačila" msgid "Supplier Refund" msgstr "Dobropis dobavitelja" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "Povzetek" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "Družba:" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/cs_CS.po b/addons/point_of_sale/i18n/sq_AL.po similarity index 98% rename from addons/point_of_sale/i18n/cs_CS.po rename to addons/point_of_sale/i18n/sq_AL.po index 0100fd0de17..e20e52b162c 100644 --- a/addons/point_of_sale/i18n/cs_CS.po +++ b/addons/point_of_sale/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -401,7 +404,7 @@ msgstr "" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_point_config msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/sv_SE.po b/addons/point_of_sale/i18n/sv_SE.po index d6132dc51d2..dc9a95215b0 100644 --- a/addons/point_of_sale/i18n/sv_SE.po +++ b/addons/point_of_sale/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/tr_TR.po b/addons/point_of_sale/i18n/tr_TR.po index 95dac4cf04e..dcc67be7072 100644 --- a/addons/point_of_sale/i18n/tr_TR.po +++ b/addons/point_of_sale/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "Görüntüleme mimarisi için Geçersiz XML" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/uk_UK.po b/addons/point_of_sale/i18n/uk_UA.po similarity index 98% rename from addons/point_of_sale/i18n/uk_UK.po rename to addons/point_of_sale/i18n/uk_UA.po index 52d3b853ebf..d26353bf053 100644 --- a/addons/point_of_sale/i18n/uk_UK.po +++ b/addons/point_of_sale/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "Неправильний XML для Архітектури Вигляду!" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/sv_SV.po b/addons/point_of_sale/i18n/vi_VN.po similarity index 98% rename from addons/point_of_sale/i18n/sv_SV.po rename to addons/point_of_sale/i18n/vi_VN.po index 81bdbc68f29..633bccc52cf 100644 --- a/addons/point_of_sale/i18n/sv_SV.po +++ b/addons/point_of_sale/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -401,7 +404,7 @@ msgstr "" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_point_config msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -756,7 +753,7 @@ msgstr "" #. module: point_of_sale #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_payment @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/zh_CN.po b/addons/point_of_sale/i18n/zh_CN.po index 8f76592f2aa..a34ea332aa7 100644 --- a/addons/point_of_sale/i18n/zh_CN.po +++ b/addons/point_of_sale/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/point_of_sale/i18n/zh_TW.po b/addons/point_of_sale/i18n/zh_TW.po index 0203415dea8..02de6f7a851 100644 --- a/addons/point_of_sale/i18n/zh_TW.po +++ b/addons/point_of_sale/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -138,6 +138,11 @@ msgstr "" msgid "Partner Ref." msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "Tel : + 32 (0) 2 231 04 35" +msgstr "" + #. module: point_of_sale #: field:pos.order.line,name:0 msgid "Line Description" @@ -188,6 +193,12 @@ msgstr "" msgid "No. Of Articles" msgstr "" +#. module: point_of_sale +#: field:pos.config.journal,code:0 +#: rml:pos.details:0 +msgid "Code" +msgstr "" + #. module: point_of_sale #: field:pos.order,date_validity:0 #: wizard_field:pos.refund_order,init,date_validity:0 @@ -195,8 +206,9 @@ msgid "Validity Date" msgstr "" #. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" +#: view:pos.order:0 +#: field:pos.order,pickings:0 +msgid "Picking" msgstr "" #. module: point_of_sale @@ -253,6 +265,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.invoice:0 +#: rml:pos.receipt:0 msgid "Fax :" msgstr "" @@ -273,7 +286,7 @@ msgstr "" #. module: point_of_sale #: rml:pos.receipt:0 -msgid "Tel :" +msgid "Date :" msgstr "" #. module: point_of_sale @@ -281,11 +294,6 @@ msgstr "" msgid "Ma_ke Payment" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Sale Date :" -msgstr "" - #. module: point_of_sale #: model:ir.actions.wizard,name:point_of_sale.pos_confirm #: wizard_button:pos.sale.get,init,set:0 @@ -333,11 +341,6 @@ msgstr "" msgid "Payment name" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Salesman :" -msgstr "" - #. module: point_of_sale #: field:pos.order,lines:0 msgid "Order Lines" @@ -415,11 +418,6 @@ msgstr "" msgid "Invalid XML for View Architecture!" msgstr "" -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Receipt Printing Date :" -msgstr "" - #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line_day msgid "POS Lines of the day" @@ -604,8 +602,8 @@ msgid "_Add product" msgstr "" #. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" +#: rml:pos.receipt:0 +msgid ":" msgstr "" #. module: point_of_sale @@ -630,9 +628,9 @@ msgid "Total:" msgstr "" #. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" +#: rml:pos.details:0 +#: rml:pos.details_summary:0 +msgid "Summary" msgstr "" #. module: point_of_sale @@ -665,9 +663,8 @@ msgid "Ma_ke payment" msgstr "" #. module: point_of_sale -#: field:pos.config.journal,code:0 -#: rml:pos.details:0 -msgid "Code" +#: wizard_button:pos.discount,init,apply_discount:0 +msgid "Apply Discount" msgstr "" #. module: point_of_sale @@ -892,12 +889,6 @@ msgstr "" msgid "Supplier Refund" msgstr "" -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Summary" -msgstr "" - #. module: point_of_sale #: field:pos.config.journal,name:0 #: rml:pos.invoice:0 @@ -959,6 +950,11 @@ msgstr "" msgid "Print Date" msgstr "" +#. module: point_of_sale +#: rml:pos.receipt:0 +msgid "OPERATION N° :" +msgstr "" + #. module: point_of_sale #: rml:pos.lines:0 #: field:pos.order,amount_total:0 diff --git a/addons/process/i18n/ar_AR.po b/addons/process/i18n/ar_AR.po index b736e188dda..9c301c6498f 100644 --- a/addons/process/i18n/ar_AR.po +++ b/addons/process/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/bg_BG.po b/addons/process/i18n/bg_BG.po index af978ade282..bbc1540f747 100644 --- a/addons/process/i18n/bg_BG.po +++ b/addons/process/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/bs_BS.po b/addons/process/i18n/bs_BS.po index 12319603f8c..b874ccd5fa0 100644 --- a/addons/process/i18n/bs_BS.po +++ b/addons/process/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/ca_ES.po b/addons/process/i18n/ca_ES.po index cf5ed479b0f..5068d628da3 100644 --- a/addons/process/i18n/ca_ES.po +++ b/addons/process/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/cs_CZ.po b/addons/process/i18n/cs_CZ.po index 0dd6de7007f..1c791e9c441 100644 --- a/addons/process/i18n/cs_CZ.po +++ b/addons/process/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/de_DE.po b/addons/process/i18n/de_DE.po index 165943a5d0a..d33f0243577 100644 --- a/addons/process/i18n/de_DE.po +++ b/addons/process/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/es_AR.po b/addons/process/i18n/es_AR.po index f36633b8e0a..45b185fadfa 100644 --- a/addons/process/i18n/es_AR.po +++ b/addons/process/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/es_ES.po b/addons/process/i18n/es_ES.po index 512071eb6ea..b010ee188f7 100644 --- a/addons/process/i18n/es_ES.po +++ b/addons/process/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/et_EE.po b/addons/process/i18n/et_EE.po index 32c1db103ac..d669c128389 100644 --- a/addons/process/i18n/et_EE.po +++ b/addons/process/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/fi_FI.po b/addons/process/i18n/fi_FI.po index 9f347fab8d6..c6188b2e2cd 100644 --- a/addons/process/i18n/fi_FI.po +++ b/addons/process/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/fr_FR.po b/addons/process/i18n/fr_FR.po index f98564cc121..4748dc18cee 100644 --- a/addons/process/i18n/fr_FR.po +++ b/addons/process/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactè #. module: process #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: process #: view:process.node:0 diff --git a/addons/process/i18n/hi_HI.po b/addons/process/i18n/hi_HI.po index 8a03deab182..fdaec205754 100644 --- a/addons/process/i18n/hi_HI.po +++ b/addons/process/i18n/hi_HI.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:10+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: process diff --git a/addons/process/i18n/hr_HR.po b/addons/process/i18n/hr_HR.po index 04442ca3284..cde64410400 100644 --- a/addons/process/i18n/hr_HR.po +++ b/addons/process/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/hu_HU.po b/addons/process/i18n/hu_HU.po index 6cb779041a9..0c946288a0f 100644 --- a/addons/process/i18n/hu_HU.po +++ b/addons/process/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/id_ID.po b/addons/process/i18n/id_ID.po index 498ae8827ee..b1db513759a 100644 --- a/addons/process/i18n/id_ID.po +++ b/addons/process/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/it_IT.po b/addons/process/i18n/it_IT.po index a436e439bb0..ad13610af70 100644 --- a/addons/process/i18n/it_IT.po +++ b/addons/process/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/lt_LT.po b/addons/process/i18n/lt_LT.po index 6765ec2c123..44e73144704 100644 --- a/addons/process/i18n/lt_LT.po +++ b/addons/process/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/nl_BE.po b/addons/process/i18n/nl_BE.po index 595507180c8..f599e650026 100644 --- a/addons/process/i18n/nl_BE.po +++ b/addons/process/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/nl_NL.po b/addons/process/i18n/nl_NL.po index c5c4a83f9fa..7c4771b1b56 100644 --- a/addons/process/i18n/nl_NL.po +++ b/addons/process/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/pl_PL.po b/addons/process/i18n/pl_PL.po index 16c922c8c60..845b7631abc 100644 --- a/addons/process/i18n/pl_PL.po +++ b/addons/process/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+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 fe46ea51be6..42f1c32447d 100644 --- a/addons/process/i18n/process.pot +++ b/addons/process/i18n/process.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/pt_BR.po b/addons/process/i18n/pt_BR.po index eace162508b..84f776a47d4 100644 --- a/addons/process/i18n/pt_BR.po +++ b/addons/process/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/pt_PT.po b/addons/process/i18n/pt_PT.po index eaff2b62eea..e687787fa4f 100644 --- a/addons/process/i18n/pt_PT.po +++ b/addons/process/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/ro_RO.po b/addons/process/i18n/ro_RO.po index f5efd069291..9ea8a08fbaf 100644 --- a/addons/process/i18n/ro_RO.po +++ b/addons/process/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/ru_RU.po b/addons/process/i18n/ru_RU.po index 7905749b2ce..b63b1bd1cf9 100644 --- a/addons/process/i18n/ru_RU.po +++ b/addons/process/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/sl_SL.po b/addons/process/i18n/sl_SL.po index 2584311169d..e9cafd2105b 100644 --- a/addons/process/i18n/sl_SL.po +++ b/addons/process/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/cs_CS.po b/addons/process/i18n/sq_AL.po similarity index 97% rename from addons/process/i18n/cs_CS.po rename to addons/process/i18n/sq_AL.po index 8e914c86562..4cbd8c16e0c 100644 --- a/addons/process/i18n/cs_CS.po +++ b/addons/process/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/sv_SE.po b/addons/process/i18n/sv_SE.po index ac643b9bbf9..39de6579a0e 100644 --- a/addons/process/i18n/sv_SE.po +++ b/addons/process/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/tr_TR.po b/addons/process/i18n/tr_TR.po index c48515504b1..53f08a03eae 100644 --- a/addons/process/i18n/tr_TR.po +++ b/addons/process/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/uk_UK.po b/addons/process/i18n/uk_UA.po similarity index 97% rename from addons/process/i18n/uk_UK.po rename to addons/process/i18n/uk_UA.po index 1818be3991f..44eed449c2a 100644 --- a/addons/process/i18n/uk_UK.po +++ b/addons/process/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/sv_SV.po b/addons/process/i18n/vi_VN.po similarity index 96% rename from addons/process/i18n/sv_SV.po rename to addons/process/i18n/vi_VN.po index 538625d0f8f..19b60f35584 100644 --- a/addons/process/i18n/sv_SV.po +++ b/addons/process/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgstr "" #. module: process #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: process #: constraint:ir.actions.act_window:0 diff --git a/addons/process/i18n/zh_CN.po b/addons/process/i18n/zh_CN.po index 7301b6deff8..a034e28693f 100644 --- a/addons/process/i18n/zh_CN.po +++ b/addons/process/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/zh_TW.po b/addons/process/i18n/zh_TW.po index d0839739a99..b8a0c7f44f0 100644 --- a/addons/process/i18n/zh_TW.po +++ b/addons/process/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/ar_AR.po b/addons/product/i18n/ar_AR.po index 20effaf3442..a70084842c4 100644 --- a/addons/product/i18n/ar_AR.po +++ b/addons/product/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/bg_BG.po b/addons/product/i18n/bg_BG.po index f5f8ac511f2..b6551131e09 100644 --- a/addons/product/i18n/bg_BG.po +++ b/addons/product/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/bs_BS.po b/addons/product/i18n/bs_BS.po index 0a28c3a1661..e3759d23965 100644 --- a/addons/product/i18n/bs_BS.po +++ b/addons/product/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/ca_ES.po b/addons/product/i18n/ca_ES.po index a8546468b5b..dbe7fed9747 100644 --- a/addons/product/i18n/ca_ES.po +++ b/addons/product/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/cs_CZ.po b/addons/product/i18n/cs_CZ.po index be8bb9e8f70..10abb8e022c 100644 --- a/addons/product/i18n/cs_CZ.po +++ b/addons/product/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/de_DE.po b/addons/product/i18n/de_DE.po index fdf8caef809..bc711508dfc 100644 --- a/addons/product/i18n/de_DE.po +++ b/addons/product/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/es_AR.po b/addons/product/i18n/es_AR.po index a338264cf1f..0176e419cbc 100644 --- a/addons/product/i18n/es_AR.po +++ b/addons/product/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/es_ES.po b/addons/product/i18n/es_ES.po index ff58901d290..7d1df2c40fa 100644 --- a/addons/product/i18n/es_ES.po +++ b/addons/product/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/et_EE.po b/addons/product/i18n/et_EE.po index 61f14b0c6a0..e4e9ff864cf 100644 --- a/addons/product/i18n/et_EE.po +++ b/addons/product/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -568,7 +568,7 @@ msgstr "Hinnakiri" #. module: product #: selection:product.template,type:0 msgid "Consumable" -msgstr "Tarbekaup" +msgstr "Tarvikud" #. module: product #: help:product.price.type,currency_id:0 diff --git a/addons/product/i18n/fi_FI.po b/addons/product/i18n/fi_FI.po index 7ab7e6e0dc8..b6277e11da4 100644 --- a/addons/product/i18n/fi_FI.po +++ b/addons/product/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/fr_FR.po b/addons/product/i18n/fr_FR.po index 5a6b7e13b49..73dc57ee504 100644 --- a/addons/product/i18n/fr_FR.po +++ b/addons/product/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: product #: view:product.pricelist.item:0 msgid "Max. Margin" -msgstr "Marge maximale" +msgstr "Marge maximum" #. module: product #: view:product.pricelist.item:0 @@ -53,7 +53,7 @@ msgstr "DDR 512MB PC400" #. module: product #: model:product.template,name:product.product_product_0_product_template msgid "Onsite Senior Intervention" -msgstr "Intervention sénior sur site" +msgstr "Intervention senior sur site" #. module: product #: help:product.supplierinfo,qty:0 @@ -63,7 +63,7 @@ msgstr "La quantité minimum d'achat pour ce fournisseur, exprimée dans l'unit #. module: product #: field:product.template,weight_net:0 msgid "Net weight" -msgstr "Poid net" +msgstr "Poids net" #. module: product #: help:product.product,incoming_qty:0 @@ -93,12 +93,12 @@ msgstr "Méthode d'approvisionnement" #. module: product #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: product #: model:process.process,name:product.process_process_productprocess0 msgid "Product Process" -msgstr "Processus des produits" +msgstr "Processus des Produit" #. module: product #: help:product.price.type,field:0 @@ -123,7 +123,7 @@ msgstr "Listes de prix" #. module: product #: model:product.category,name:product.cat1 msgid "Sellable" -msgstr "Vendable" +msgstr "En vente" #. module: product #: model:product.template,name:product.product_product_26_product_template @@ -148,7 +148,7 @@ msgstr "Société" #. module: product #: field:product.template,rental:0 msgid "Rentable Product" -msgstr "Produit louable" +msgstr "Produit Rentable" #. module: product #: field:product.product,lst_price:0 @@ -169,7 +169,7 @@ msgstr "Produit stockable" #. module: product #: model:product.category,name:product.product_category_services msgid "Services" -msgstr "Services" +msgstr "Aire de repos" #. module: product #: help:product.template,list_price:0 @@ -204,7 +204,7 @@ msgstr "Entrant" #. module: product #: selection:product.template,procure_method:0 msgid "Make to Stock" -msgstr "Sur Stock" +msgstr "Livraison sur stock" #. module: product #: view:product.product:0 @@ -344,7 +344,7 @@ msgstr "Liste de prix du fournisseur" #: view:product.packaging:0 #: view:product.product:0 msgid "Pallet Dimension" -msgstr "Dimension d'une palette" +msgstr "Dimension d'une Palette" #. module: product #: field:product.pricelist.item,base:0 @@ -424,7 +424,7 @@ msgstr "En production" #. module: product #: field:product.category,child_id:0 msgid "Child Categories" -msgstr "Catégories Filles" +msgstr "Catégories FillesCommandes de Travail" #. module: product #: model:product.category,name:product.product_category_accessories @@ -439,7 +439,7 @@ msgstr "Priorité" #. module: product #: model:product.template,name:product.product_product_20_product_template msgid "HDD on demand" -msgstr "Disque Dur sur demande" +msgstr "DD sur demande" #. module: product #: field:product.uom,factor_inv:0 @@ -499,7 +499,7 @@ msgstr "Divers" #. module: product #: help:product.pricelist.item,base:0 msgid "The mode for computing the price for this rule." -msgstr "Le mode de calcul de le prix pour cette règle." +msgstr "Le mode pour calculer le prix pour cette règle." #. module: product #: model:ir.actions.act_window,name:product.product_uom_form_action @@ -537,7 +537,7 @@ msgstr "Délai d'exécution du fournisseur" #. module: product #: model:product.pricelist.version,name:product.ver0 msgid "Default Public Pricelist Version" -msgstr "Version de la Liste de prix publique par défaut" +msgstr "Version de la Liste de Prix Publique par Défaut" #. module: product #: field:product.pricelist.type,key:0 @@ -552,7 +552,7 @@ msgstr "Version de liste de prix" #. module: product #: view:product.pricelist.item:0 msgid "Rules Test Match" -msgstr "Règle de test de correspondance" +msgstr "Test d’application de la règle" #. module: product #: help:res.partner,property_product_pricelist:0 @@ -578,12 +578,12 @@ msgstr "La devise est exprimée en." #. module: product #: help:product.template,weight:0 msgid "The gross weight in Kg." -msgstr "La Masse brute en Kg." +msgstr "Le poids brut en Kg." #. module: product #: selection:product.ul,type:0 msgid "Box" -msgstr "Boite" +msgstr "Box" #. module: product #: constraint:ir.ui.view:0 @@ -598,7 +598,7 @@ msgstr "Détermine si le produit peut être visible dans la liste des produits #. module: product #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "Erreur: l'unité de vente doit appartenir à une catégorie différente que l'unité de mesure" +msgstr "Erreur : l'Unité Secondaire doit appartenir à une autre catégorie que l'Unité de Mesure." #. module: product #: field:product.category,parent_id:0 @@ -646,17 +646,17 @@ msgstr "Produits par catégorie" #. module: product #: model:product.template,name:product.product_product_hdd1_product_template msgid "HDD Seagate 7200.8 80GB" -msgstr "Disque Dur Seagate 7200.8 80GB" +msgstr "HDD Seagate 7200.8 80GB" #. module: product #: help:product.pricelist.version,active:0 msgid "When a version is duplicated it is set to non active, so that the dates do not overlaps with original version. You should change the dates and reactivate the pricelist" -msgstr "Quand une version est dupliquée, elle est mise comme non active, mais les dates ne doivent pas se chevaucher avec la version original. Vous devez changer les date et réactivée le tarif" +msgstr "Lorsqu'une version est dupliquée, il est mis à 'inactif', ainsi, les dates ne se chevauchent pas avec la version originale. Vous devez changer les dates et réactiver la liste de prix." #. module: product #: model:product.template,name:product.product_product_hdd3_product_template msgid "HDD Seagate 7200.8 160GB" -msgstr "Disque Dur Seagate 7200.8 160GB" +msgstr "HDD Seagate 7200.8 160GB" #. module: product #: view:product.product:0 @@ -676,12 +676,12 @@ msgstr "Rayon" #. module: product #: field:product.uom,category_id:0 msgid "UoM Category" -msgstr "Catégorie d'unité de mesure (UdM)" +msgstr "Catégorie UdM" #. module: product #: selection:product.ul,type:0 msgid "Pack" -msgstr "Paquet" +msgstr "Colis" #. module: product #: field:product.product,ean13:0 @@ -777,7 +777,7 @@ msgstr "Descriptions" #. module: product #: model:process.transition,name:product.process_transition_supplierofproduct0 msgid "Suppliers of Product" -msgstr "Fournisseur du produit" +msgstr "Fournisseur du Produit" #. module: product #: field:product.pricelist.version,date_start:0 @@ -797,7 +797,7 @@ msgstr "Quantités actuelles de produit dans les emplacements sélectionnés ou #. module: product #: model:product.template,name:product.product_product_pc1_product_template msgid "Basic PC" -msgstr "PC Basique" +msgstr "PC Basic" #. module: product #: field:product.template,loc_row:0 @@ -832,7 +832,7 @@ msgstr "Catégories de produits" #. module: product #: help:product.uom,category_id:0 msgid "Unit of Measure of a category can be converted between each others in the same category." -msgstr "Les unités de mesure d'une catégorie peuvent être converties entre elles dans la même catégorie." +msgstr "Les Unités de mesure d'une catégorie peuvent être convertie entre elles dans la même catégorie." #. module: product #: model:ir.model,name:product.model_product_uom @@ -852,12 +852,12 @@ msgstr "PC complet avec périphériques" #. module: product #: constraint:product.template:0 msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "Erreur: l'unité de mesure par défaut et l'unité de mesure d'achat doivent faire partie de la même catégorie" +msgstr "Erreur: l'UdM par défaut et l'UdM d'achat doivent appartenir à la même catégorie." #. module: product #: model:product.template,name:product.product_product_mb2_product_template msgid "Mainboard ASUStek A7V8X-X" -msgstr "Carte mère ASUStek A7V8X-X" +msgstr "carte mère ASUStek A7V8X-X" #. module: product #: field:product.uom,factor:0 @@ -867,7 +867,7 @@ msgstr "Rapport" #. module: product #: view:product.pricelist.item:0 msgid "Products Listprices Items" -msgstr "Éléments de la liste de prix" +msgstr "Lignes de liste de prix" #. module: product #: field:product.uom,rounding:0 @@ -932,7 +932,7 @@ msgstr "Prix public" #. module: product #: field:product.pricelist.item,price_max_margin:0 msgid "Max. Price Margin" -msgstr "Marge de prix Maximale" +msgstr "Marge de Prix Max." #. module: product #: view:res.partner:0 @@ -947,7 +947,7 @@ msgstr "Composants IT" #. module: product #: help:product.packaging,weight_ul:0 msgid "The weight of the empty UL" -msgstr "Le poid de l'UL vide" +msgstr "Le poids de l'UL vide" #. module: product #: help:product.packaging,code:0 @@ -996,7 +996,7 @@ msgstr "Actif" #. module: product #: field:product.product,price_margin:0 msgid "Variant Price Margin" -msgstr "Marge de prix de la variante" +msgstr "Marge de la variante" #. module: product #: wizard_view:product.price_list,init:0 @@ -1030,7 +1030,7 @@ msgstr "Description achat" #: view:product.product:0 #: view:product.template:0 msgid "Second UoM" -msgstr "Unité secondaire" +msgstr "Unité Secondaire" #. module: product #: model:product.category,name:product.product_category_4 @@ -1041,7 +1041,7 @@ msgstr "Ordinateur Dello" #: view:product.product:0 #: view:product.template:0 msgid "Storage Localisation" -msgstr "Emplacement de stockage" +msgstr "Localisation du stock" #. module: product #: help:product.packaging,length:0 @@ -1051,7 +1051,7 @@ msgstr "La longueur du colis" #. module: product #: field:product.pricelist.item,price_min_margin:0 msgid "Min. Price Margin" -msgstr "Marge de prix Minimale" +msgstr "Marge de Prix Min." #. module: product #: help:product.packaging,ean:0 @@ -1061,7 +1061,7 @@ msgstr "Le code EAN de l'unité du colis" #. module: product #: field:product.template,weight:0 msgid "Gross weight" -msgstr "Poids Brut" +msgstr "Poids brut" #. module: product #: help:product.product,packaging:0 @@ -1117,12 +1117,12 @@ msgstr "Le coefficient pour la formule:\n" #. module: product #: view:product.supplierinfo:0 msgid "Seq" -msgstr "Séq" +msgstr "Seq" #. module: product #: model:product.category,name:product.product_category_8 msgid "Phone Help" -msgstr "Aide téléphonique" +msgstr "Aide par téléphone" #. module: product #: selection:product.template,mes_type:0 @@ -1150,7 +1150,7 @@ msgstr "Unité de livraison" #. module: product #: help:product.uom,rounding:0 msgid "The computed quantity will be a multiple of this value. Use 1.0 for products that can not be split." -msgstr "La quantité calculée devra être un multiple de cette valeur. Utilisez 1.0 pour les produits qui ne pourront être diviser." +msgstr "La quantité calculée sera un multiple de cette valeur. Utilisez 1.0 pour les produits qui ne peuvent pas être séparés." #. module: product #: field:product.packaging,height:0 @@ -1160,12 +1160,12 @@ msgstr "Hauteur" #. module: product #: model:product.template,name:product.product_product_pc4_product_template msgid "Customizable PC" -msgstr "PC personnalisable" +msgstr "PC personnalisble" #. module: product #: help:product.pricelist.version,date_end:0 msgid "Ending date for this pricelist version to be valid." -msgstr "Date de fin pour la validité de cette liste de prix." +msgstr "Date de Fin pour la validité de cette liste de prix." #. module: product #: field:pricelist.partnerinfo,suppinfo_id:0 @@ -1230,7 +1230,7 @@ msgstr "Unité" #. module: product #: model:product.template,name:product.product_product_hdd2_product_template msgid "HDD Seagate 7200.8 120GB" -msgstr "Disque Dur Seagate 7200.8 120Go" +msgstr "DD Seagate 7200.8 120GB" #. module: product #: wizard_field:product.price_list,init,qty2:0 @@ -1278,7 +1278,7 @@ msgstr "Délais" #. module: product #: field:product.pricelist.version,items_id:0 msgid "Price List Items" -msgstr "Elément de liste de prix" +msgstr "Lignes de liste de prix" #. module: product #: help:product.supplierinfo,product_code:0 @@ -1313,7 +1313,7 @@ msgstr "Colis par couche" #. module: product #: help:product.template,type:0 msgid "Will change the way procurements are processed. Consumables are stockable products with infinite stock, or for use when you have no stock management in the system." -msgstr "Changera la façon de traiter les réapprovisionnements. Les consommables sont des produits stockables avec stock infini, ou utiliser lorsque vous ne souhaiter pas gérer les stock dans le système." +msgstr "Changera la façon de traiter les approvisionnements. Les consommables sont des produits stockables avec stock infini, ou à utiliser lorsque vous ne souhaiter pas gérer les stock dans le système." #. module: product #: model:process.node,note:product.process_node_supplier0 @@ -1463,8 +1463,8 @@ msgstr "Nom" #: help:product.template,uos_coeff:0 msgid "Coefficient to convert UOM to UOS\n" " uom = uos * coeff" -msgstr "Coefficient de conversion de l'UdM vers l'UdV\n" -" UdM = UdV * coeff" +msgstr "Coefficient de conversion de l'UdM vers l'US\n" +" UdM = US * coeff" #. module: product #: field:product.template,purchase_ok:0 @@ -1474,7 +1474,7 @@ msgstr "Peut être acheté" #. module: product #: field:product.template,uos_coeff:0 msgid "UOM -> UOS Coeff" -msgstr "Coeff UdM -> UdV" +msgstr "Coeff UdM -> US" #. module: product #: model:product.template,name:product.product_product_cpu2_product_template @@ -1575,7 +1575,7 @@ msgstr "Longueur" #. module: product #: model:product.category,name:product.cat2 msgid "Private" -msgstr "Privée" +msgstr "Privé" #. module: product #: help:product.supplierinfo,delay:0 @@ -1615,7 +1615,7 @@ msgstr "Le volume en m³" #. module: product #: model:product.ul,name:product.product_ul_big_box msgid "Box 30x40x60" -msgstr "Boite 30x40x60" +msgstr "Caisse 30x40x60" #. module: product #: model:product.uom,name:product.product_uom_kgm diff --git a/addons/product/i18n/hr_HR.po b/addons/product/i18n/hr_HR.po index 2352d0f6af7..ca6bdec3514 100644 --- a/addons/product/i18n/hr_HR.po +++ b/addons/product/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/hu_HU.po b/addons/product/i18n/hu_HU.po index b8622e10019..188fcc2b3a6 100644 --- a/addons/product/i18n/hu_HU.po +++ b/addons/product/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/id_ID.po b/addons/product/i18n/id_ID.po index 80fe9590479..fbb959ac4e6 100644 --- a/addons/product/i18n/id_ID.po +++ b/addons/product/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/it_IT.po b/addons/product/i18n/it_IT.po index ce7dda241f2..485fa485eb7 100644 --- a/addons/product/i18n/it_IT.po +++ b/addons/product/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/lt_LT.po b/addons/product/i18n/lt_LT.po index ed76413e9d5..ee771e9f1d5 100644 --- a/addons/product/i18n/lt_LT.po +++ b/addons/product/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/nb_NB.po b/addons/product/i18n/nb_NB.po index da6be04ddf7..2238c671d82 100644 --- a/addons/product/i18n/nb_NB.po +++ b/addons/product/i18n/nb_NB.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:08+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:59+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product diff --git a/addons/product/i18n/nl_BE.po b/addons/product/i18n/nl_BE.po index 8679fe04b67..c34ee1bb8a0 100644 --- a/addons/product/i18n/nl_BE.po +++ b/addons/product/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/nl_NL.po b/addons/product/i18n/nl_NL.po index 9da4719ea0d..f139f59767c 100644 --- a/addons/product/i18n/nl_NL.po +++ b/addons/product/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/pl_PL.po b/addons/product/i18n/pl_PL.po index 14e335ae2c6..cd095e22efa 100644 --- a/addons/product/i18n/pl_PL.po +++ b/addons/product/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/product.pot b/addons/product/i18n/product.pot index 43d485c9680..8ed1c204645 100644 --- a/addons/product/i18n/product.pot +++ b/addons/product/i18n/product.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/pt_BR.po b/addons/product/i18n/pt_BR.po index e1ffaa16244..0443cb8d3f9 100644 --- a/addons/product/i18n/pt_BR.po +++ b/addons/product/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/pt_PT.po b/addons/product/i18n/pt_PT.po index 76cfa1c9070..30834135558 100644 --- a/addons/product/i18n/pt_PT.po +++ b/addons/product/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/ro_RO.po b/addons/product/i18n/ro_RO.po index 0f02da44fe2..0471df6e8c5 100644 --- a/addons/product/i18n/ro_RO.po +++ b/addons/product/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/ru_RU.po b/addons/product/i18n/ru_RU.po index 34b00048eaf..1ffb0a07bed 100644 --- a/addons/product/i18n/ru_RU.po +++ b/addons/product/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/sl_SL.po b/addons/product/i18n/sl_SL.po index ed0c74b8ab4..61a2df74622 100644 --- a/addons/product/i18n/sl_SL.po +++ b/addons/product/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/sv_SV.po b/addons/product/i18n/sq_AL.po similarity index 97% rename from addons/product/i18n/sv_SV.po rename to addons/product/i18n/sq_AL.po index 0cc4c43bee3..b322011f0d0 100644 --- a/addons/product/i18n/sv_SV.po +++ b/addons/product/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ msgstr "" #. module: product #: field:product.template,procure_method:0 msgid "Procure Method" -msgstr "Inköpsmetod" +msgstr "" #. module: product #: constraint:ir.actions.act_window:0 @@ -108,7 +108,7 @@ msgstr "" #. module: product #: selection:product.template,cost_method:0 msgid "Standard Price" -msgstr "Standardpris" +msgstr "" #. module: product #: help:product.packaging,height:0 @@ -215,7 +215,7 @@ msgstr "" #. module: product #: model:product.template,name:product.product_product_fan2_product_template msgid "Silent fan" -msgstr "Tyst fläkt" +msgstr "" #. module: product #: help:product.template,supply_method:0 @@ -311,7 +311,7 @@ msgstr "" #. module: product #: model:ir.ui.menu,name:product.menu_config_product msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: product #: field:product.packaging,rows:0 @@ -347,12 +347,12 @@ msgstr "" #. module: product #: field:product.pricelist.item,base:0 msgid "Based on" -msgstr "Baserad på" +msgstr "" #. module: product #: model:product.template,name:product.product_product_24_product_template msgid "Keyboard" -msgstr "Tangentbord" +msgstr "" #. module: product #: field:product.supplierinfo,name:0 @@ -367,7 +367,7 @@ msgstr "" #. module: product #: model:product.template,name:product.product_product_25_product_template msgid "Mouse" -msgstr "Mus" +msgstr "" #. module: product #: help:product.template,cost_method:0 @@ -382,7 +382,7 @@ msgstr "" #. module: product #: field:product.template,seller_ids:0 msgid "Partners" -msgstr "Alternativa leverantörer" +msgstr "" #. module: product #: selection:product.template,cost_method:0 @@ -437,7 +437,7 @@ msgstr "" #. module: product #: model:product.template,name:product.product_product_20_product_template msgid "HDD on demand" -msgstr "HDD vid behov" +msgstr "" #. module: product #: field:product.uom,factor_inv:0 @@ -458,7 +458,7 @@ msgstr "" #. module: product #: field:product.ul,type:0 msgid "Type" -msgstr "Typ" +msgstr "" #. module: product #: wizard_field:product.price_list,init,price_list:0 @@ -561,7 +561,7 @@ msgstr "" #: model:ir.model,name:product.model_product_pricelist #: view:product.supplierinfo:0 msgid "Pricelist" -msgstr "Prislista" +msgstr "" #. module: product #: selection:product.template,type:0 @@ -581,7 +581,7 @@ msgstr "" #. module: product #: selection:product.ul,type:0 msgid "Box" -msgstr "Låda" +msgstr "" #. module: product #: constraint:ir.ui.view:0 @@ -606,7 +606,7 @@ msgstr "" #. module: product #: selection:product.template,state:0 msgid "In Development" -msgstr "Under utveckling" +msgstr "" #. module: product #: help:product.pricelist.type,key:0 @@ -752,7 +752,7 @@ msgstr "" #: view:product.product:0 #: view:product.ul:0 msgid "Packaging" -msgstr "Paketering" +msgstr "" #. module: product #: field:product.price.type,currency_id:0 @@ -769,7 +769,7 @@ msgstr "" #: view:product.product:0 #: view:product.template:0 msgid "Descriptions" -msgstr "Beskrivningar" +msgstr "" #. module: product #: model:process.transition,name:product.process_transition_supplierofproduct0 @@ -804,7 +804,7 @@ msgstr "" #. module: product #: field:product.template,categ_id:0 msgid "Category" -msgstr "Kategori" +msgstr "" #. module: product #: help:product.pricelist.item,min_quantity:0 @@ -839,7 +839,7 @@ msgstr "" #. module: product #: field:product.template,sale_ok:0 msgid "Can be sold" -msgstr "Kan säljas" +msgstr "" #. module: product #: model:product.template,name:product.product_product_23_product_template @@ -907,7 +907,7 @@ msgstr "" #. module: product #: selection:product.template,supply_method:0 msgid "Buy" -msgstr "Köp" +msgstr "" #. module: product #: model:ir.model,name:product.model_product_pricelist_version @@ -988,7 +988,7 @@ msgstr "" #: field:product.product,active:0 #: field:product.uom,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: product #: field:product.product,price_margin:0 @@ -1058,7 +1058,7 @@ msgstr "" #. module: product #: field:product.template,weight:0 msgid "Gross weight" -msgstr "Vikt" +msgstr "" #. module: product #: help:product.product,packaging:0 @@ -1069,7 +1069,7 @@ msgstr "" #: model:ir.model,name:product.model_product_category #: field:product.pricelist.item,categ_id:0 msgid "Product Category" -msgstr "Produktkategori" +msgstr "" #. module: product #: field:product.price.type,field:0 @@ -1136,7 +1136,7 @@ msgstr "" #: field:product.product,product_tmpl_id:0 #: view:product.template:0 msgid "Product Template" -msgstr "Produktmall" +msgstr "" #. module: product #: model:ir.model,name:product.model_product_ul @@ -1173,7 +1173,7 @@ msgstr "" #: view:product.template:0 #: field:product.template,type:0 msgid "Product Type" -msgstr "Produkttyp" +msgstr "" #. module: product #: model:product.category,name:product.product_category_7 @@ -1215,7 +1215,7 @@ msgstr "" #. module: product #: model:product.template,name:product.product_product_21_product_template msgid "RAM on demand" -msgstr "RAM vid behov" +msgstr "" #. module: product #: selection:product.ul,type:0 @@ -1247,7 +1247,7 @@ msgstr "" #. module: product #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: product #: wizard_field:product.price_list,init,qty4:0 @@ -1284,7 +1284,7 @@ msgstr "" #. module: product #: selection:product.template,state:0 msgid "Obsolete" -msgstr "Föråldrad" +msgstr "" #. module: product #: selection:product.ul,type:0 @@ -1330,12 +1330,12 @@ msgstr "" #: field:product.supplierinfo,product_id:0 #: model:res.request.link,name:product.req_link_product msgid "Product" -msgstr "Produkt" +msgstr "" #. module: product #: field:product.template,volume:0 msgid "Volume" -msgstr "Volym" +msgstr "" #. module: product #: field:pricelist.partnerinfo,name:0 @@ -1405,12 +1405,12 @@ msgstr "" #. module: product #: view:product.pricelist.item:0 msgid "Rounding Method" -msgstr "Avrundningsmetod" +msgstr "" #. module: product #: field:product.product,variants:0 msgid "Variants" -msgstr "Varianter" +msgstr "" #. module: product #: view:product.pricelist.item:0 @@ -1464,7 +1464,7 @@ msgstr "" #. module: product #: field:product.template,purchase_ok:0 msgid "Can be Purchased" -msgstr "Kan köpas" +msgstr "" #. module: product #: field:product.template,uos_coeff:0 diff --git a/addons/product/i18n/sv_SE.po b/addons/product/i18n/sv_SE.po index 29f025c84d9..3260aeff341 100644 --- a/addons/product/i18n/sv_SE.po +++ b/addons/product/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/tr_TR.po b/addons/product/i18n/tr_TR.po index 78bfa96faed..baaa40cd462 100644 --- a/addons/product/i18n/tr_TR.po +++ b/addons/product/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/uk_UK.po b/addons/product/i18n/uk_UA.po similarity index 99% rename from addons/product/i18n/uk_UK.po rename to addons/product/i18n/uk_UA.po index 007a4b6528f..0f2635de2c3 100644 --- a/addons/product/i18n/uk_UK.po +++ b/addons/product/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/cs_CS.po b/addons/product/i18n/vi_VN.po similarity index 95% rename from addons/product/i18n/cs_CS.po rename to addons/product/i18n/vi_VN.po index 05bb3c7eb93..340b8f86f1d 100644 --- a/addons/product/i18n/cs_CS.po +++ b/addons/product/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: product #: view:product.pricelist.item:0 msgid "Max. Margin" -msgstr "Max. marže" +msgstr "" #. module: product #: view:product.pricelist.item:0 @@ -33,7 +33,7 @@ msgstr "" #. module: product #: selection:product.template,type:0 msgid "Service" -msgstr "Služba" +msgstr "" #. module: product #: help:product.template,purchase_ok:0 @@ -78,7 +78,7 @@ msgstr "" #. module: product #: field:product.packaging,width:0 msgid "Width" -msgstr "Šířka" +msgstr "" #. module: product #: help:product.pricelist.item,product_tmpl_id:0 @@ -118,7 +118,7 @@ msgstr "" #. module: product #: view:product.pricelist:0 msgid "Products Price List" -msgstr "Ceník produktů" +msgstr "" #. module: product #: model:product.category,name:product.cat1 @@ -133,12 +133,12 @@ msgstr "" #. module: product #: field:product.price.type,name:0 msgid "Price Name" -msgstr "Název ceny" +msgstr "" #. module: product #: field:product.product,price:0 msgid "Customer Price" -msgstr "Zákazníkova cena" +msgstr "" #. module: product #: field:product.template,company_id:0 @@ -164,7 +164,7 @@ msgstr "" #. module: product #: selection:product.template,type:0 msgid "Stockable Product" -msgstr "Skladovatelný produkt" +msgstr "" #. module: product #: model:product.category,name:product.product_category_services @@ -199,7 +199,7 @@ msgstr "" #. module: product #: field:product.product,incoming_qty:0 msgid "Incoming" -msgstr "Příchozí" +msgstr "" #. module: product #: selection:product.template,procure_method:0 @@ -267,12 +267,12 @@ msgstr "" #. module: product #: field:product.product,virtual_available:0 msgid "Virtual Stock" -msgstr "Virtuální sklad" +msgstr "" #. module: product #: selection:product.template,mes_type:0 msgid "Fixed" -msgstr "Fixní" +msgstr "" #. module: product #: model:ir.actions.act_window,name:product.product_uom_categ_form_action @@ -290,7 +290,7 @@ msgstr "" #: field:product.pricelist,type:0 #: view:product.pricelist.type:0 msgid "Pricelist Type" -msgstr "Typ ceníku" +msgstr "" #. module: product #: view:product.product:0 @@ -311,7 +311,7 @@ msgstr "" #. module: product #: model:ir.ui.menu,name:product.menu_config_product msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: product #: field:product.packaging,rows:0 @@ -347,7 +347,7 @@ msgstr "" #. module: product #: field:product.pricelist.item,base:0 msgid "Based on" -msgstr "Založeno na" +msgstr "" #. module: product #: model:product.template,name:product.product_product_24_product_template @@ -382,7 +382,7 @@ msgstr "" #. module: product #: field:product.template,seller_ids:0 msgid "Partners" -msgstr "Partneři" +msgstr "" #. module: product #: selection:product.template,cost_method:0 @@ -402,7 +402,7 @@ msgstr "" #. module: product #: view:product.pricelist.item:0 msgid "Min. Margin" -msgstr "Min. marže" +msgstr "" #. module: product #: view:product.pricelist.item:0 @@ -417,7 +417,7 @@ msgstr "" #. module: product #: selection:product.template,state:0 msgid "In Production" -msgstr "V produkci" +msgstr "" #. module: product #: field:product.category,child_id:0 @@ -458,7 +458,7 @@ msgstr "" #. module: product #: field:product.ul,type:0 msgid "Type" -msgstr "Typ" +msgstr "" #. module: product #: wizard_field:product.price_list,init,price_list:0 @@ -510,7 +510,7 @@ msgstr "" #. module: product #: field:product.product,partner_ref:0 msgid "Customer ref" -msgstr "Zákazník" +msgstr "" #. module: product #: field:product.supplierinfo,qty:0 @@ -540,12 +540,12 @@ msgstr "" #. module: product #: field:product.pricelist.type,key:0 msgid "Key" -msgstr "Klíč" +msgstr "" #. module: product #: field:product.pricelist.item,price_version_id:0 msgid "Price List Version" -msgstr "Verze ceníku" +msgstr "" #. module: product #: view:product.pricelist.item:0 @@ -561,12 +561,12 @@ msgstr "" #: model:ir.model,name:product.model_product_pricelist #: view:product.supplierinfo:0 msgid "Pricelist" -msgstr "Ceník" +msgstr "" #. module: product #: selection:product.template,type:0 msgid "Consumable" -msgstr "Spotřební zboží" +msgstr "" #. module: product #: help:product.price.type,currency_id:0 @@ -581,7 +581,7 @@ msgstr "" #. module: product #: selection:product.ul,type:0 msgid "Box" -msgstr "Krabice" +msgstr "" #. module: product #: constraint:ir.ui.view:0 @@ -601,12 +601,12 @@ msgstr "" #. module: product #: field:product.category,parent_id:0 msgid "Parent Category" -msgstr "Nadřazená kategorie" +msgstr "" #. module: product #: selection:product.template,state:0 msgid "In Development" -msgstr "Ve vývoji" +msgstr "" #. module: product #: help:product.pricelist.type,key:0 @@ -632,13 +632,13 @@ msgstr "" #: view:product.product:0 #: view:product.template:0 msgid "Procurement" -msgstr "Dodání" +msgstr "" #. module: product #: model:ir.actions.act_window,name:product.product_category_action #: model:ir.ui.menu,name:product.menu_product_category_action msgid "Products by Category" -msgstr "Produkty podle kategorie" +msgstr "" #. module: product #: model:product.template,name:product.product_product_hdd1_product_template @@ -658,7 +658,7 @@ msgstr "" #. module: product #: view:product.product:0 msgid "Product Variant" -msgstr "Varianta produktu" +msgstr "" #. module: product #: field:product.packaging,ul:0 @@ -737,7 +737,7 @@ msgstr "" #: field:product.packaging,sequence:0 #: field:product.pricelist.item,sequence:0 msgid "Sequence" -msgstr "Sekvence" +msgstr "" #. module: product #: view:product.supplierinfo:0 @@ -752,13 +752,13 @@ msgstr "" #: view:product.product:0 #: view:product.ul:0 msgid "Packaging" -msgstr "Balení" +msgstr "" #. module: product #: field:product.price.type,currency_id:0 #: field:product.pricelist,currency_id:0 msgid "Currency" -msgstr "Měna" +msgstr "" #. module: product #: model:product.template,name:product.product_product_cpu_gen_product_template @@ -769,7 +769,7 @@ msgstr "" #: view:product.product:0 #: view:product.template:0 msgid "Descriptions" -msgstr "Popisy" +msgstr "" #. module: product #: model:process.transition,name:product.process_transition_supplierofproduct0 @@ -779,7 +779,7 @@ msgstr "" #. module: product #: field:product.pricelist.version,date_start:0 msgid "Start Date" -msgstr "Počáteční datum" +msgstr "" #. module: product #: view:res.partner:0 @@ -824,7 +824,7 @@ msgstr "" #. module: product #: view:product.category:0 msgid "Product Categories" -msgstr "Kategorie produktu" +msgstr "" #. module: product #: help:product.uom,category_id:0 @@ -869,7 +869,7 @@ msgstr "" #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" -msgstr "Přesnost zaokrouhlení" +msgstr "" #. module: product #: help:product.packaging,width:0 @@ -902,24 +902,24 @@ msgstr "" #. module: product #: field:product.product,outgoing_qty:0 msgid "Outgoing" -msgstr "Odchozí" +msgstr "" #. module: product #: selection:product.template,supply_method:0 msgid "Buy" -msgstr "Nákup" +msgstr "" #. module: product #: model:ir.model,name:product.model_product_pricelist_version #: view:product.pricelist:0 #: view:product.pricelist.version:0 msgid "Pricelist Version" -msgstr "Verze ceníku" +msgstr "" #. module: product #: field:product.pricelist.item,price_round:0 msgid "Price Rounding" -msgstr "Zaoukrouhlení ceny" +msgstr "" #. module: product #: model:product.price.type,name:product.list_price @@ -959,7 +959,7 @@ msgstr "" #. module: product #: view:product.price.type:0 msgid "Products Price Type" -msgstr "Typ ceny produktu" +msgstr "" #. module: product #: field:product.template,product_manager:0 @@ -988,7 +988,7 @@ msgstr "" #: field:product.product,active:0 #: field:product.uom,active:0 msgid "Active" -msgstr "Aktivní" +msgstr "" #. module: product #: field:product.product,price_margin:0 @@ -1069,7 +1069,7 @@ msgstr "" #: model:ir.model,name:product.model_product_category #: field:product.pricelist.item,categ_id:0 msgid "Product Category" -msgstr "Kategorie produktu" +msgstr "" #. module: product #: field:product.price.type,field:0 @@ -1102,7 +1102,7 @@ msgstr "" #: field:product.product,code:0 #: field:product.product,default_code:0 msgid "Code" -msgstr "Kód" +msgstr "" #. module: product #: help:product.uom,factor_inv:0 @@ -1123,7 +1123,7 @@ msgstr "" #. module: product #: selection:product.template,mes_type:0 msgid "Variable" -msgstr "Variabilní" +msgstr "" #. module: product #: help:product.template,uom_id:0 @@ -1136,7 +1136,7 @@ msgstr "" #: field:product.product,product_tmpl_id:0 #: view:product.template:0 msgid "Product Template" -msgstr "Šablona produktu" +msgstr "" #. module: product #: model:ir.model,name:product.model_product_ul @@ -1151,7 +1151,7 @@ msgstr "" #. module: product #: field:product.packaging,height:0 msgid "Height" -msgstr "Výška" +msgstr "" #. module: product #: model:product.template,name:product.product_product_pc4_product_template @@ -1166,14 +1166,14 @@ msgstr "" #. module: product #: field:pricelist.partnerinfo,suppinfo_id:0 msgid "Partner Information" -msgstr "Informace partnera(Partner Information)" +msgstr "" #. module: product #: view:product.product:0 #: view:product.template:0 #: field:product.template,type:0 msgid "Product Type" -msgstr "Typ produktu" +msgstr "" #. module: product #: model:product.category,name:product.product_category_7 @@ -1199,13 +1199,13 @@ msgstr "" #. module: product #: model:ir.model,name:product.model_product_pricelist_item msgid "Pricelist item" -msgstr "Položka ceníku" +msgstr "" #. module: product #: model:ir.actions.wizard,name:product.report_wizard_price #: field:product.pricelist.version,pricelist_id:0 msgid "Price List" -msgstr "Ceník" +msgstr "" #. module: product #: model:product.pricelist,name:product.list0 @@ -1221,7 +1221,7 @@ msgstr "" #: selection:product.ul,type:0 #: model:product.uom.categ,name:product.product_uom_categ_unit msgid "Unit" -msgstr "Jednotka" +msgstr "" #. module: product #: model:product.template,name:product.product_product_hdd2_product_template @@ -1237,7 +1237,7 @@ msgstr "" #: view:product.product:0 #: view:product.template:0 msgid "Information" -msgstr "Informace" +msgstr "" #. module: product #: view:product.product:0 @@ -1274,7 +1274,7 @@ msgstr "" #. module: product #: field:product.pricelist.version,items_id:0 msgid "Price List Items" -msgstr "Položky ceníku" +msgstr "" #. module: product #: help:product.supplierinfo,product_code:0 @@ -1284,7 +1284,7 @@ msgstr "" #. module: product #: selection:product.template,state:0 msgid "Obsolete" -msgstr "Zastaralý" +msgstr "" #. module: product #: selection:product.ul,type:0 @@ -1299,7 +1299,7 @@ msgstr "" #. module: product #: field:product.template,warranty:0 msgid "Warranty (months)" -msgstr "Záruka (měsíce)" +msgstr "" #. module: product #: field:product.packaging,ul_qty:0 @@ -1319,7 +1319,7 @@ msgstr "" #. module: product #: model:ir.model,name:product.model_product_price_type msgid "Price type" -msgstr "Typ ceny" +msgstr "" #. module: product #: model:ir.model,name:product.model_product_product @@ -1330,7 +1330,7 @@ msgstr "Typ ceny" #: field:product.supplierinfo,product_id:0 #: model:res.request.link,name:product.req_link_product msgid "Product" -msgstr "Produkt" +msgstr "" #. module: product #: field:product.template,volume:0 @@ -1344,7 +1344,7 @@ msgstr "" #: view:product.template:0 #: field:product.template,description:0 msgid "Description" -msgstr "Popis" +msgstr "" #. module: product #: field:product.packaging,ean:0 @@ -1385,7 +1385,7 @@ msgstr "" #. module: product #: selection:product.template,supply_method:0 msgid "Produce" -msgstr "Produkce" +msgstr "" #. module: product #: selection:product.template,procure_method:0 @@ -1410,7 +1410,7 @@ msgstr "" #. module: product #: field:product.product,variants:0 msgid "Variants" -msgstr "Varianty" +msgstr "" #. module: product #: view:product.pricelist.item:0 @@ -1430,7 +1430,7 @@ msgstr "" #. module: product #: field:product.pricelist.version,date_end:0 msgid "End Date" -msgstr "Koncové datum" +msgstr "" #. module: product #: model:ir.actions.act_window,name:product.product_category_action_form @@ -1453,7 +1453,7 @@ msgstr "" #: field:product.uom,name:0 #: field:product.uom.categ,name:0 msgid "Name" -msgstr "Název" +msgstr "" #. module: product #: help:product.template,uos_coeff:0 @@ -1464,7 +1464,7 @@ msgstr "" #. module: product #: field:product.template,purchase_ok:0 msgid "Can be Purchased" -msgstr "Lze koupit" +msgstr "" #. module: product #: field:product.template,uos_coeff:0 @@ -1506,7 +1506,7 @@ msgstr "" #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" -msgstr "Konec životního cyklu" +msgstr "" #. module: product #: model:ir.module.module,shortdesc:product.module_meta_information @@ -1564,7 +1564,7 @@ msgstr "" #. module: product #: field:product.packaging,length:0 msgid "Length" -msgstr "Délka" +msgstr "" #. module: product #: model:product.category,name:product.cat2 @@ -1589,7 +1589,7 @@ msgstr "" #. module: product #: field:product.pricelist.item,min_quantity:0 msgid "Min. Quantity" -msgstr "Min. množství" +msgstr "" #. module: product #: help:product.pricelist.item,categ_id:0 @@ -1619,5 +1619,5 @@ msgstr "" #. module: product #: field:product.pricelist.item,price_discount:0 msgid "Price Discount" -msgstr "Sleva" +msgstr "" diff --git a/addons/product/i18n/zh_CN.po b/addons/product/i18n/zh_CN.po index ca1af6c192d..a529180fb8f 100644 --- a/addons/product/i18n/zh_CN.po +++ b/addons/product/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product/i18n/zh_TW.po b/addons/product/i18n/zh_TW.po index 4eea51c22d3..53d7c992199 100644 --- a/addons/product/i18n/zh_TW.po +++ b/addons/product/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/ar_AR.po b/addons/product_margin/i18n/ar_AR.po index 67539835987..1a9eef72c30 100644 --- a/addons/product_margin/i18n/ar_AR.po +++ b/addons/product_margin/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/bg_BG.po b/addons/product_margin/i18n/bg_BG.po index ebf38f2e47f..08a3c9a5742 100644 --- a/addons/product_margin/i18n/bg_BG.po +++ b/addons/product_margin/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/bs_BS.po b/addons/product_margin/i18n/bs_BS.po index d88dc5aaa78..2499e0f7340 100644 --- a/addons/product_margin/i18n/bs_BS.po +++ b/addons/product_margin/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/ca_ES.po b/addons/product_margin/i18n/ca_ES.po index b0b314afe40..da97b3a6fa6 100644 --- a/addons/product_margin/i18n/ca_ES.po +++ b/addons/product_margin/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/cs_CZ.po b/addons/product_margin/i18n/cs_CZ.po index ee96e834de9..97ae5333722 100644 --- a/addons/product_margin/i18n/cs_CZ.po +++ b/addons/product_margin/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/de_DE.po b/addons/product_margin/i18n/de_DE.po index d872bbd25e7..e82de00c379 100644 --- a/addons/product_margin/i18n/de_DE.po +++ b/addons/product_margin/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/es_AR.po b/addons/product_margin/i18n/es_AR.po index f5b51c46d75..1ef02657f01 100644 --- a/addons/product_margin/i18n/es_AR.po +++ b/addons/product_margin/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/es_ES.po b/addons/product_margin/i18n/es_ES.po index 658f7e3d768..6d870e1775c 100644 --- a/addons/product_margin/i18n/es_ES.po +++ b/addons/product_margin/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/et_EE.po b/addons/product_margin/i18n/et_EE.po index f7c7dfda5ea..f257220dd86 100644 --- a/addons/product_margin/i18n/et_EE.po +++ b/addons/product_margin/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/fi_FI.po b/addons/product_margin/i18n/fi_FI.po index cf9a3787a37..a0cc559575e 100644 --- a/addons/product_margin/i18n/fi_FI.po +++ b/addons/product_margin/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/fr_FR.po b/addons/product_margin/i18n/fr_FR.po index b1b651f0e1d..6cb178141ad 100644 --- a/addons/product_margin/i18n/fr_FR.po +++ b/addons/product_margin/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/hr_HR.po b/addons/product_margin/i18n/hr_HR.po index 96dbe1765cf..2eb88c7b8ac 100644 --- a/addons/product_margin/i18n/hr_HR.po +++ b/addons/product_margin/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/hu_HU.po b/addons/product_margin/i18n/hu_HU.po index 39ca075c182..2d8a219435d 100644 --- a/addons/product_margin/i18n/hu_HU.po +++ b/addons/product_margin/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/id_ID.po b/addons/product_margin/i18n/id_ID.po index 8b2f773503a..6fd711c1a9a 100644 --- a/addons/product_margin/i18n/id_ID.po +++ b/addons/product_margin/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/it_IT.po b/addons/product_margin/i18n/it_IT.po index 4ecd1eafcf8..22c00a5bffc 100644 --- a/addons/product_margin/i18n/it_IT.po +++ b/addons/product_margin/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/lt_LT.po b/addons/product_margin/i18n/lt_LT.po index c7358bab9c2..c52eb85b60d 100644 --- a/addons/product_margin/i18n/lt_LT.po +++ b/addons/product_margin/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/nl_BE.po b/addons/product_margin/i18n/nl_BE.po index 94a757da140..95149269d9e 100644 --- a/addons/product_margin/i18n/nl_BE.po +++ b/addons/product_margin/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/nl_NL.po b/addons/product_margin/i18n/nl_NL.po index 5de037f404b..d5b835e9e32 100644 --- a/addons/product_margin/i18n/nl_NL.po +++ b/addons/product_margin/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/pl_PL.po b/addons/product_margin/i18n/pl_PL.po index 696aec702a4..9bf116b45e1 100644 --- a/addons/product_margin/i18n/pl_PL.po +++ b/addons/product_margin/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/product_margin.pot b/addons/product_margin/i18n/product_margin.pot index cecc811e81f..a1139957b8f 100644 --- a/addons/product_margin/i18n/product_margin.pot +++ b/addons/product_margin/i18n/product_margin.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/pt_BR.po b/addons/product_margin/i18n/pt_BR.po index 004a3bf5c01..19501488420 100644 --- a/addons/product_margin/i18n/pt_BR.po +++ b/addons/product_margin/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/pt_PT.po b/addons/product_margin/i18n/pt_PT.po index 04fb74b2564..b0390b834ef 100644 --- a/addons/product_margin/i18n/pt_PT.po +++ b/addons/product_margin/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/ro_RO.po b/addons/product_margin/i18n/ro_RO.po index fd9ed776e96..b5ab2b501b5 100644 --- a/addons/product_margin/i18n/ro_RO.po +++ b/addons/product_margin/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/ru_RU.po b/addons/product_margin/i18n/ru_RU.po index 6adfbdc9b01..ec432478077 100644 --- a/addons/product_margin/i18n/ru_RU.po +++ b/addons/product_margin/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/sl_SL.po b/addons/product_margin/i18n/sl_SL.po index 8096a755a31..0f0235bf649 100644 --- a/addons/product_margin/i18n/sl_SL.po +++ b/addons/product_margin/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/sv_SV.po b/addons/product_margin/i18n/sq_AL.po similarity index 97% rename from addons/product_margin/i18n/sv_SV.po rename to addons/product_margin/i18n/sq_AL.po index 8840582bc53..036297547aa 100644 --- a/addons/product_margin/i18n/sv_SV.po +++ b/addons/product_margin/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/sv_SE.po b/addons/product_margin/i18n/sv_SE.po index 73fc82dc03f..e0cd81ec9da 100644 --- a/addons/product_margin/i18n/sv_SE.po +++ b/addons/product_margin/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/tr_TR.po b/addons/product_margin/i18n/tr_TR.po index 301a0f26c8e..34a802496b6 100644 --- a/addons/product_margin/i18n/tr_TR.po +++ b/addons/product_margin/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/uk_UK.po b/addons/product_margin/i18n/uk_UA.po similarity index 97% rename from addons/product_margin/i18n/uk_UK.po rename to addons/product_margin/i18n/uk_UA.po index 9068663b3d3..b5cdcc4215e 100644 --- a/addons/product_margin/i18n/uk_UK.po +++ b/addons/product_margin/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/cs_CS.po b/addons/product_margin/i18n/vi_VN.po similarity index 97% rename from addons/product_margin/i18n/cs_CS.po rename to addons/product_margin/i18n/vi_VN.po index cd3bd271180..8ac8f9fcdfb 100644 --- a/addons/product_margin/i18n/cs_CS.po +++ b/addons/product_margin/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/zh_CN.po b/addons/product_margin/i18n/zh_CN.po index c3ab924dda3..d98de525c6b 100644 --- a/addons/product_margin/i18n/zh_CN.po +++ b/addons/product_margin/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/product_margin/i18n/zh_TW.po b/addons/product_margin/i18n/zh_TW.po index 552fefc25cb..ea76cd62d62 100644 --- a/addons/product_margin/i18n/zh_TW.po +++ b/addons/product_margin/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/ar_AR.po b/addons/profile_accounting/i18n/ar_AR.po index d11b52a9133..201b55ee6d1 100644 --- a/addons/profile_accounting/i18n/ar_AR.po +++ b/addons/profile_accounting/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/bg_BG.po b/addons/profile_accounting/i18n/bg_BG.po index 7255b3dc96d..f207d238e33 100644 --- a/addons/profile_accounting/i18n/bg_BG.po +++ b/addons/profile_accounting/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/bs_BS.po b/addons/profile_accounting/i18n/bs_BS.po index 578c871afc7..c64a089cf9e 100644 --- a/addons/profile_accounting/i18n/bs_BS.po +++ b/addons/profile_accounting/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/ca_ES.po b/addons/profile_accounting/i18n/ca_ES.po index 09252fd1c0e..01f54182ee0 100644 --- a/addons/profile_accounting/i18n/ca_ES.po +++ b/addons/profile_accounting/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/cs_CZ.po b/addons/profile_accounting/i18n/cs_CZ.po index d15339b62b8..59a12d54436 100644 --- a/addons/profile_accounting/i18n/cs_CZ.po +++ b/addons/profile_accounting/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/de_DE.po b/addons/profile_accounting/i18n/de_DE.po index 1d3acc9d1ea..71d3385d1c6 100644 --- a/addons/profile_accounting/i18n/de_DE.po +++ b/addons/profile_accounting/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/es_AR.po b/addons/profile_accounting/i18n/es_AR.po index 071fa977e8c..862e3ee4019 100644 --- a/addons/profile_accounting/i18n/es_AR.po +++ b/addons/profile_accounting/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/es_ES.po b/addons/profile_accounting/i18n/es_ES.po index 10e3a545930..6196d090bce 100644 --- a/addons/profile_accounting/i18n/es_ES.po +++ b/addons/profile_accounting/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/et_EE.po b/addons/profile_accounting/i18n/et_EE.po index 51b3a15f479..bc097eb2068 100644 --- a/addons/profile_accounting/i18n/et_EE.po +++ b/addons/profile_accounting/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/fi_FI.po b/addons/profile_accounting/i18n/fi_FI.po index fed64f79c5d..55e6587e976 100644 --- a/addons/profile_accounting/i18n/fi_FI.po +++ b/addons/profile_accounting/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/fr_FR.po b/addons/profile_accounting/i18n/fr_FR.po index 6d121d53feb..932a06002dc 100644 --- a/addons/profile_accounting/i18n/fr_FR.po +++ b/addons/profile_accounting/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "" #. module: profile_accounting #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: profile_accounting #: view:profile.accounting.config.install_modules_wizard:0 diff --git a/addons/profile_accounting/i18n/hr_HR.po b/addons/profile_accounting/i18n/hr_HR.po index 9ae9047e145..03fb945a578 100644 --- a/addons/profile_accounting/i18n/hr_HR.po +++ b/addons/profile_accounting/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/hu_HU.po b/addons/profile_accounting/i18n/hu_HU.po index 9766a62c09b..3723e741a6e 100644 --- a/addons/profile_accounting/i18n/hu_HU.po +++ b/addons/profile_accounting/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/id_ID.po b/addons/profile_accounting/i18n/id_ID.po index e79ff419f77..e95b8acc9df 100644 --- a/addons/profile_accounting/i18n/id_ID.po +++ b/addons/profile_accounting/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/it_IT.po b/addons/profile_accounting/i18n/it_IT.po index 9a4a243b406..748e898e1dc 100644 --- a/addons/profile_accounting/i18n/it_IT.po +++ b/addons/profile_accounting/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/lt_LT.po b/addons/profile_accounting/i18n/lt_LT.po index 29c0fd84af6..c687e024af0 100644 --- a/addons/profile_accounting/i18n/lt_LT.po +++ b/addons/profile_accounting/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/nl_BE.po b/addons/profile_accounting/i18n/nl_BE.po index 5bafb7a5081..5794b60c9ec 100644 --- a/addons/profile_accounting/i18n/nl_BE.po +++ b/addons/profile_accounting/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/nl_NL.po b/addons/profile_accounting/i18n/nl_NL.po index d2713e91221..53ebe1fd46e 100644 --- a/addons/profile_accounting/i18n/nl_NL.po +++ b/addons/profile_accounting/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/pl_PL.po b/addons/profile_accounting/i18n/pl_PL.po index a92e1383f17..9f1fd0d8904 100644 --- a/addons/profile_accounting/i18n/pl_PL.po +++ b/addons/profile_accounting/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+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 b7de06ec7ed..5feb0ded7e6 100644 --- a/addons/profile_accounting/i18n/profile_accounting.pot +++ b/addons/profile_accounting/i18n/profile_accounting.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/pt_BR.po b/addons/profile_accounting/i18n/pt_BR.po index 770ade3f7bf..07795168b50 100644 --- a/addons/profile_accounting/i18n/pt_BR.po +++ b/addons/profile_accounting/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/pt_PT.po b/addons/profile_accounting/i18n/pt_PT.po index 42264541e4c..104378ef5b2 100644 --- a/addons/profile_accounting/i18n/pt_PT.po +++ b/addons/profile_accounting/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/ro_RO.po b/addons/profile_accounting/i18n/ro_RO.po index 3b0905a5822..7710be38d25 100644 --- a/addons/profile_accounting/i18n/ro_RO.po +++ b/addons/profile_accounting/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/ru_RU.po b/addons/profile_accounting/i18n/ru_RU.po index 94f476d4e46..867813f3217 100644 --- a/addons/profile_accounting/i18n/ru_RU.po +++ b/addons/profile_accounting/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/sl_SL.po b/addons/profile_accounting/i18n/sl_SL.po index 9bd0df45107..c9ea72d915f 100644 --- a/addons/profile_accounting/i18n/sl_SL.po +++ b/addons/profile_accounting/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/cs_CS.po b/addons/profile_accounting/i18n/sq_AL.po similarity index 96% rename from addons/profile_accounting/i18n/cs_CS.po rename to addons/profile_accounting/i18n/sq_AL.po index 403ab8e7be6..50c7df8905d 100644 --- a/addons/profile_accounting/i18n/cs_CS.po +++ b/addons/profile_accounting/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/sv_SE.po b/addons/profile_accounting/i18n/sv_SE.po index a4be486c250..96ed692239c 100644 --- a/addons/profile_accounting/i18n/sv_SE.po +++ b/addons/profile_accounting/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/tr_TR.po b/addons/profile_accounting/i18n/tr_TR.po index d69c60c6e8a..2891dcb9a15 100644 --- a/addons/profile_accounting/i18n/tr_TR.po +++ b/addons/profile_accounting/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/uk_UK.po b/addons/profile_accounting/i18n/uk_UA.po similarity index 96% rename from addons/profile_accounting/i18n/uk_UK.po rename to addons/profile_accounting/i18n/uk_UA.po index 0309fa72104..a23b4dc298b 100644 --- a/addons/profile_accounting/i18n/uk_UK.po +++ b/addons/profile_accounting/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/sv_SV.po b/addons/profile_accounting/i18n/vi_VN.po similarity index 94% rename from addons/profile_accounting/i18n/sv_SV.po rename to addons/profile_accounting/i18n/vi_VN.po index 85b1820409f..58d2e01389e 100644 --- a/addons/profile_accounting/i18n/sv_SV.po +++ b/addons/profile_accounting/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: profile_accounting #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: profile_accounting #: view:profile.accounting.config.install_modules_wizard:0 diff --git a/addons/profile_accounting/i18n/zh_CN.po b/addons/profile_accounting/i18n/zh_CN.po index b6540bb5ffa..adfde0c0a69 100644 --- a/addons/profile_accounting/i18n/zh_CN.po +++ b/addons/profile_accounting/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/zh_TW.po b/addons/profile_accounting/i18n/zh_TW.po index 3320635e352..f492289a0de 100644 --- a/addons/profile_accounting/i18n/zh_TW.po +++ b/addons/profile_accounting/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/ar_AR.po b/addons/profile_association/i18n/ar_AR.po index df8dc50d04b..38716e4f316 100644 --- a/addons/profile_association/i18n/ar_AR.po +++ b/addons/profile_association/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/bg_BG.po b/addons/profile_association/i18n/bg_BG.po index 226979c3620..90273b79848 100644 --- a/addons/profile_association/i18n/bg_BG.po +++ b/addons/profile_association/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/bs_BS.po b/addons/profile_association/i18n/bs_BS.po index c2820ac9f5c..8034cb981aa 100644 --- a/addons/profile_association/i18n/bs_BS.po +++ b/addons/profile_association/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/ca_ES.po b/addons/profile_association/i18n/ca_ES.po index cb6c294ee59..2b9c79ee15a 100644 --- a/addons/profile_association/i18n/ca_ES.po +++ b/addons/profile_association/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/cs_CZ.po b/addons/profile_association/i18n/cs_CZ.po index 35313738c36..7da28b4a2f0 100644 --- a/addons/profile_association/i18n/cs_CZ.po +++ b/addons/profile_association/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/de_DE.po b/addons/profile_association/i18n/de_DE.po index 0c79d7a5511..1d3f85795af 100644 --- a/addons/profile_association/i18n/de_DE.po +++ b/addons/profile_association/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/es_AR.po b/addons/profile_association/i18n/es_AR.po index e3a27cd354d..019a290802d 100644 --- a/addons/profile_association/i18n/es_AR.po +++ b/addons/profile_association/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/es_ES.po b/addons/profile_association/i18n/es_ES.po index cdb0b59cdc7..0642f3cdb4b 100644 --- a/addons/profile_association/i18n/es_ES.po +++ b/addons/profile_association/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/et_EE.po b/addons/profile_association/i18n/et_EE.po index 28bbc0f2b8c..0626bde5df9 100644 --- a/addons/profile_association/i18n/et_EE.po +++ b/addons/profile_association/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/fi_FI.po b/addons/profile_association/i18n/fi_FI.po index 59a5565edfd..c37cb04d010 100644 --- a/addons/profile_association/i18n/fi_FI.po +++ b/addons/profile_association/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/fr_FR.po b/addons/profile_association/i18n/fr_FR.po index 186ed5f9eb2..3211c219f35 100644 --- a/addons/profile_association/i18n/fr_FR.po +++ b/addons/profile_association/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "Le système de gestion documentaire d'OpenERP vous permet de stocker, pa #. module: profile_association #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: profile_association #: view:profile.association.config.install_modules_wizard:0 diff --git a/addons/profile_association/i18n/hr_HR.po b/addons/profile_association/i18n/hr_HR.po index 1c9fd1cc9d4..83fb5906dee 100644 --- a/addons/profile_association/i18n/hr_HR.po +++ b/addons/profile_association/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/hu_HU.po b/addons/profile_association/i18n/hu_HU.po index 14aa6b57350..54a41f59dea 100644 --- a/addons/profile_association/i18n/hu_HU.po +++ b/addons/profile_association/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/id_ID.po b/addons/profile_association/i18n/id_ID.po index 92d41d3520b..197b23d0dee 100644 --- a/addons/profile_association/i18n/id_ID.po +++ b/addons/profile_association/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/it_IT.po b/addons/profile_association/i18n/it_IT.po index f2fcee1bf78..25b567c9655 100644 --- a/addons/profile_association/i18n/it_IT.po +++ b/addons/profile_association/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/lt_LT.po b/addons/profile_association/i18n/lt_LT.po index 57db6b39dde..bf7a2e12075 100644 --- a/addons/profile_association/i18n/lt_LT.po +++ b/addons/profile_association/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/nl_BE.po b/addons/profile_association/i18n/nl_BE.po index a90463c0433..01c66c465a6 100644 --- a/addons/profile_association/i18n/nl_BE.po +++ b/addons/profile_association/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/nl_NL.po b/addons/profile_association/i18n/nl_NL.po index ea1cd3769f9..cedddbc89e4 100644 --- a/addons/profile_association/i18n/nl_NL.po +++ b/addons/profile_association/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/pl_PL.po b/addons/profile_association/i18n/pl_PL.po index c2a7682b408..4d1097e415b 100644 --- a/addons/profile_association/i18n/pl_PL.po +++ b/addons/profile_association/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+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 2d168d614b8..c6e74bb720b 100644 --- a/addons/profile_association/i18n/profile_association.pot +++ b/addons/profile_association/i18n/profile_association.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/pt_BR.po b/addons/profile_association/i18n/pt_BR.po index c5de3606c97..fe7ad41f264 100644 --- a/addons/profile_association/i18n/pt_BR.po +++ b/addons/profile_association/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/pt_PT.po b/addons/profile_association/i18n/pt_PT.po index 0ae52156e6b..ede60db5505 100644 --- a/addons/profile_association/i18n/pt_PT.po +++ b/addons/profile_association/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/ro_RO.po b/addons/profile_association/i18n/ro_RO.po index cb8810baa0b..9248bf3006d 100644 --- a/addons/profile_association/i18n/ro_RO.po +++ b/addons/profile_association/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/ru_RU.po b/addons/profile_association/i18n/ru_RU.po index 69eea8a84c4..2559edb7662 100644 --- a/addons/profile_association/i18n/ru_RU.po +++ b/addons/profile_association/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/sl_SL.po b/addons/profile_association/i18n/sl_SL.po index 88c6419df38..546a78f3fa1 100644 --- a/addons/profile_association/i18n/sl_SL.po +++ b/addons/profile_association/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/cs_CS.po b/addons/profile_association/i18n/sq_AL.po similarity index 96% rename from addons/profile_association/i18n/cs_CS.po rename to addons/profile_association/i18n/sq_AL.po index 555a8e91cd5..ca133968705 100644 --- a/addons/profile_association/i18n/cs_CS.po +++ b/addons/profile_association/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/sv_SE.po b/addons/profile_association/i18n/sv_SE.po index 8dd8150790c..d3b0c0d2e02 100644 --- a/addons/profile_association/i18n/sv_SE.po +++ b/addons/profile_association/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/tr_TR.po b/addons/profile_association/i18n/tr_TR.po index 60214d60dc1..24b59f2528e 100644 --- a/addons/profile_association/i18n/tr_TR.po +++ b/addons/profile_association/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/uk_UK.po b/addons/profile_association/i18n/uk_UA.po similarity index 97% rename from addons/profile_association/i18n/uk_UK.po rename to addons/profile_association/i18n/uk_UA.po index abf6e16b70c..089e3e8e1b0 100644 --- a/addons/profile_association/i18n/uk_UK.po +++ b/addons/profile_association/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/sv_SV.po b/addons/profile_association/i18n/vi_VN.po similarity index 94% rename from addons/profile_association/i18n/sv_SV.po rename to addons/profile_association/i18n/vi_VN.po index 6e5ff4c5b2a..5e28fdbc4c6 100644 --- a/addons/profile_association/i18n/sv_SV.po +++ b/addons/profile_association/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: profile_association #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: profile_association #: view:profile.association.config.install_modules_wizard:0 diff --git a/addons/profile_association/i18n/zh_CN.po b/addons/profile_association/i18n/zh_CN.po index 1f1de8668b5..7a99dc0f49d 100644 --- a/addons/profile_association/i18n/zh_CN.po +++ b/addons/profile_association/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/zh_TW.po b/addons/profile_association/i18n/zh_TW.po index 945a38328cd..93da7e31a52 100644 --- a/addons/profile_association/i18n/zh_TW.po +++ b/addons/profile_association/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/ar_AR.po b/addons/profile_auction/i18n/ar_AR.po index da178903773..665c69819d9 100644 --- a/addons/profile_auction/i18n/ar_AR.po +++ b/addons/profile_auction/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/bg_BG.po b/addons/profile_auction/i18n/bg_BG.po index 180e7777664..73dec0285db 100644 --- a/addons/profile_auction/i18n/bg_BG.po +++ b/addons/profile_auction/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/bs_BS.po b/addons/profile_auction/i18n/bs_BS.po index 116c63b8cb8..d636e4b9b20 100644 --- a/addons/profile_auction/i18n/bs_BS.po +++ b/addons/profile_auction/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/ca_ES.po b/addons/profile_auction/i18n/ca_ES.po index 086d76a8b11..33822eeefe5 100644 --- a/addons/profile_auction/i18n/ca_ES.po +++ b/addons/profile_auction/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/cs_CZ.po b/addons/profile_auction/i18n/cs_CZ.po index cbfe92b1352..18b107ec053 100644 --- a/addons/profile_auction/i18n/cs_CZ.po +++ b/addons/profile_auction/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/de_DE.po b/addons/profile_auction/i18n/de_DE.po index fd870d3b609..7883de1c813 100644 --- a/addons/profile_auction/i18n/de_DE.po +++ b/addons/profile_auction/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/es_AR.po b/addons/profile_auction/i18n/es_AR.po index baa091aac7d..c7d605a88e0 100644 --- a/addons/profile_auction/i18n/es_AR.po +++ b/addons/profile_auction/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/es_ES.po b/addons/profile_auction/i18n/es_ES.po index 995e6f97b20..1295c522388 100644 --- a/addons/profile_auction/i18n/es_ES.po +++ b/addons/profile_auction/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/et_EE.po b/addons/profile_auction/i18n/et_EE.po index 67c8dde12b8..6d55a0e42dd 100644 --- a/addons/profile_auction/i18n/et_EE.po +++ b/addons/profile_auction/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/fi_FI.po b/addons/profile_auction/i18n/fi_FI.po index 8cc32a61fba..79eebdaeb39 100644 --- a/addons/profile_auction/i18n/fi_FI.po +++ b/addons/profile_auction/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/fr_FR.po b/addons/profile_auction/i18n/fr_FR.po index 3c61b9852d0..93864a0e971 100644 --- a/addons/profile_auction/i18n/fr_FR.po +++ b/addons/profile_auction/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/hr_HR.po b/addons/profile_auction/i18n/hr_HR.po index 4c9ea43194b..6ec4bc7565a 100644 --- a/addons/profile_auction/i18n/hr_HR.po +++ b/addons/profile_auction/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/hu_HU.po b/addons/profile_auction/i18n/hu_HU.po index 269877cce20..a3b2d4ff18d 100644 --- a/addons/profile_auction/i18n/hu_HU.po +++ b/addons/profile_auction/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/id_ID.po b/addons/profile_auction/i18n/id_ID.po index 7197609f231..e3cf18b85a4 100644 --- a/addons/profile_auction/i18n/id_ID.po +++ b/addons/profile_auction/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/it_IT.po b/addons/profile_auction/i18n/it_IT.po index a847b036409..0e1f4979e8c 100644 --- a/addons/profile_auction/i18n/it_IT.po +++ b/addons/profile_auction/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/lt_LT.po b/addons/profile_auction/i18n/lt_LT.po index 020aee6fe21..413cb00648b 100644 --- a/addons/profile_auction/i18n/lt_LT.po +++ b/addons/profile_auction/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/nl_BE.po b/addons/profile_auction/i18n/nl_BE.po index 8c2f24e7f33..67cd8599568 100644 --- a/addons/profile_auction/i18n/nl_BE.po +++ b/addons/profile_auction/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/nl_NL.po b/addons/profile_auction/i18n/nl_NL.po index 99424717279..2f152299fc5 100644 --- a/addons/profile_auction/i18n/nl_NL.po +++ b/addons/profile_auction/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/pl_PL.po b/addons/profile_auction/i18n/pl_PL.po index a5f5a893e96..74215947c4d 100644 --- a/addons/profile_auction/i18n/pl_PL.po +++ b/addons/profile_auction/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/profile_auction.pot b/addons/profile_auction/i18n/profile_auction.pot index 145cfe3f343..8abbdb393af 100644 --- a/addons/profile_auction/i18n/profile_auction.pot +++ b/addons/profile_auction/i18n/profile_auction.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/pt_BR.po b/addons/profile_auction/i18n/pt_BR.po index cb592f66ed7..d69efb7bde0 100644 --- a/addons/profile_auction/i18n/pt_BR.po +++ b/addons/profile_auction/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/pt_PT.po b/addons/profile_auction/i18n/pt_PT.po index b21d27015af..f3dedac190b 100644 --- a/addons/profile_auction/i18n/pt_PT.po +++ b/addons/profile_auction/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/ro_RO.po b/addons/profile_auction/i18n/ro_RO.po index 39bd0aa0493..f9bd279f519 100644 --- a/addons/profile_auction/i18n/ro_RO.po +++ b/addons/profile_auction/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/ru_RU.po b/addons/profile_auction/i18n/ru_RU.po index 1d907b11c5d..cc19cee0a93 100644 --- a/addons/profile_auction/i18n/ru_RU.po +++ b/addons/profile_auction/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/sl_SL.po b/addons/profile_auction/i18n/sl_SL.po index c59f5705503..942a384c48f 100644 --- a/addons/profile_auction/i18n/sl_SL.po +++ b/addons/profile_auction/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/cs_CS.po b/addons/profile_auction/i18n/sq_AL.po similarity index 77% rename from addons/profile_auction/i18n/cs_CS.po rename to addons/profile_auction/i18n/sq_AL.po index b43c23fd063..4f2468dff1b 100644 --- a/addons/profile_auction/i18n/cs_CS.po +++ b/addons/profile_auction/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/sv_SE.po b/addons/profile_auction/i18n/sv_SE.po index cb7ee6e3455..1b10949a57c 100644 --- a/addons/profile_auction/i18n/sv_SE.po +++ b/addons/profile_auction/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/tr_TR.po b/addons/profile_auction/i18n/tr_TR.po index 988d4a46316..f166af6e86d 100644 --- a/addons/profile_auction/i18n/tr_TR.po +++ b/addons/profile_auction/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/sv_SV.po b/addons/profile_auction/i18n/uk_UA.po similarity index 77% rename from addons/profile_auction/i18n/sv_SV.po rename to addons/profile_auction/i18n/uk_UA.po index bfb888f4f60..a430d82c10d 100644 --- a/addons/profile_auction/i18n/sv_SV.po +++ b/addons/profile_auction/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/uk_UK.po b/addons/profile_auction/i18n/vi_VN.po similarity index 77% rename from addons/profile_auction/i18n/uk_UK.po rename to addons/profile_auction/i18n/vi_VN.po index 4c593de5dc7..86529d0f4f2 100644 --- a/addons/profile_auction/i18n/uk_UK.po +++ b/addons/profile_auction/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/zh_CN.po b/addons/profile_auction/i18n/zh_CN.po index 2f70ee93a59..ac73c94de2b 100644 --- a/addons/profile_auction/i18n/zh_CN.po +++ b/addons/profile_auction/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_auction/i18n/zh_TW.po b/addons/profile_auction/i18n/zh_TW.po index 61e4eb90129..14c3369c0ad 100644 --- a/addons/profile_auction/i18n/zh_TW.po +++ b/addons/profile_auction/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/ar_AR.po b/addons/profile_crm/i18n/ar_AR.po index abb740bcb89..fd4525fb115 100644 --- a/addons/profile_crm/i18n/ar_AR.po +++ b/addons/profile_crm/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/bg_BG.po b/addons/profile_crm/i18n/bg_BG.po index 9d033b6ad47..31f42191a97 100644 --- a/addons/profile_crm/i18n/bg_BG.po +++ b/addons/profile_crm/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/bs_BS.po b/addons/profile_crm/i18n/bs_BS.po index 5c87f10e3b1..c07e4d17c93 100644 --- a/addons/profile_crm/i18n/bs_BS.po +++ b/addons/profile_crm/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/ca_ES.po b/addons/profile_crm/i18n/ca_ES.po index 02be9d9a5f8..7dd7ec359dd 100644 --- a/addons/profile_crm/i18n/ca_ES.po +++ b/addons/profile_crm/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/cs_CZ.po b/addons/profile_crm/i18n/cs_CZ.po index 34278122a96..7638e9b1587 100644 --- a/addons/profile_crm/i18n/cs_CZ.po +++ b/addons/profile_crm/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/de_DE.po b/addons/profile_crm/i18n/de_DE.po index 31529a60e6a..c4f4637299f 100644 --- a/addons/profile_crm/i18n/de_DE.po +++ b/addons/profile_crm/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/es_AR.po b/addons/profile_crm/i18n/es_AR.po index 9f750743cba..28bc39745d1 100644 --- a/addons/profile_crm/i18n/es_AR.po +++ b/addons/profile_crm/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/es_ES.po b/addons/profile_crm/i18n/es_ES.po index cf43fdcbce7..baf67fc5e96 100644 --- a/addons/profile_crm/i18n/es_ES.po +++ b/addons/profile_crm/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/et_EE.po b/addons/profile_crm/i18n/et_EE.po index a7cdff82c2e..3df492456a4 100644 --- a/addons/profile_crm/i18n/et_EE.po +++ b/addons/profile_crm/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/fi_FI.po b/addons/profile_crm/i18n/fi_FI.po index 4ad703c57cb..c4741351063 100644 --- a/addons/profile_crm/i18n/fi_FI.po +++ b/addons/profile_crm/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/fr_FR.po b/addons/profile_crm/i18n/fr_FR.po index 449cbceecce..2c47fd00d3f 100644 --- a/addons/profile_crm/i18n/fr_FR.po +++ b/addons/profile_crm/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/hr_HR.po b/addons/profile_crm/i18n/hr_HR.po index bf00150332a..834fd988a5c 100644 --- a/addons/profile_crm/i18n/hr_HR.po +++ b/addons/profile_crm/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/hu_HU.po b/addons/profile_crm/i18n/hu_HU.po index 15444b88a47..f4b7a6cd1a6 100644 --- a/addons/profile_crm/i18n/hu_HU.po +++ b/addons/profile_crm/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/id_ID.po b/addons/profile_crm/i18n/id_ID.po index 9b9d9eed0ab..4dd7c90132b 100644 --- a/addons/profile_crm/i18n/id_ID.po +++ b/addons/profile_crm/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/it_IT.po b/addons/profile_crm/i18n/it_IT.po index 0304fa08f01..c998f72f37a 100644 --- a/addons/profile_crm/i18n/it_IT.po +++ b/addons/profile_crm/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/lt_LT.po b/addons/profile_crm/i18n/lt_LT.po index 8fbc8b8c82f..a567ed64d0f 100644 --- a/addons/profile_crm/i18n/lt_LT.po +++ b/addons/profile_crm/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/nl_BE.po b/addons/profile_crm/i18n/nl_BE.po index 517a81ca39a..f6bc549528c 100644 --- a/addons/profile_crm/i18n/nl_BE.po +++ b/addons/profile_crm/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/nl_NL.po b/addons/profile_crm/i18n/nl_NL.po index bbd20f5dd9e..5997941dab2 100644 --- a/addons/profile_crm/i18n/nl_NL.po +++ b/addons/profile_crm/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/pl_PL.po b/addons/profile_crm/i18n/pl_PL.po index 61842ccf731..3640ee020f3 100644 --- a/addons/profile_crm/i18n/pl_PL.po +++ b/addons/profile_crm/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/profile_crm.pot b/addons/profile_crm/i18n/profile_crm.pot index e8e8fd9e36d..8338098c510 100644 --- a/addons/profile_crm/i18n/profile_crm.pot +++ b/addons/profile_crm/i18n/profile_crm.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/pt_BR.po b/addons/profile_crm/i18n/pt_BR.po index 32f655e99a2..2977cad1029 100644 --- a/addons/profile_crm/i18n/pt_BR.po +++ b/addons/profile_crm/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/pt_PT.po b/addons/profile_crm/i18n/pt_PT.po index 8b2004dd64d..7b7f443c46e 100644 --- a/addons/profile_crm/i18n/pt_PT.po +++ b/addons/profile_crm/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/ro_RO.po b/addons/profile_crm/i18n/ro_RO.po index f4efce30416..fe163e00685 100644 --- a/addons/profile_crm/i18n/ro_RO.po +++ b/addons/profile_crm/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/ru_RU.po b/addons/profile_crm/i18n/ru_RU.po index 73ccb84fa23..775794a7fa2 100644 --- a/addons/profile_crm/i18n/ru_RU.po +++ b/addons/profile_crm/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/sl_SL.po b/addons/profile_crm/i18n/sl_SL.po index 2179b030467..561bb19aad0 100644 --- a/addons/profile_crm/i18n/sl_SL.po +++ b/addons/profile_crm/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/sv_SV.po b/addons/profile_crm/i18n/sq_AL.po similarity index 77% rename from addons/profile_crm/i18n/sv_SV.po rename to addons/profile_crm/i18n/sq_AL.po index 45ca5383928..8840624c8e5 100644 --- a/addons/profile_crm/i18n/sv_SV.po +++ b/addons/profile_crm/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/sv_SE.po b/addons/profile_crm/i18n/sv_SE.po index e667a7f48ff..130bee106c6 100644 --- a/addons/profile_crm/i18n/sv_SE.po +++ b/addons/profile_crm/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/tr_TR.po b/addons/profile_crm/i18n/tr_TR.po index 01270c57df4..872fc23e3c9 100644 --- a/addons/profile_crm/i18n/tr_TR.po +++ b/addons/profile_crm/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/uk_UK.po b/addons/profile_crm/i18n/uk_UA.po similarity index 77% rename from addons/profile_crm/i18n/uk_UK.po rename to addons/profile_crm/i18n/uk_UA.po index 337d1773b7d..590cffdab30 100644 --- a/addons/profile_crm/i18n/uk_UK.po +++ b/addons/profile_crm/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/cs_CS.po b/addons/profile_crm/i18n/vi_VN.po similarity index 77% rename from addons/profile_crm/i18n/cs_CS.po rename to addons/profile_crm/i18n/vi_VN.po index 66f08f2d919..0c3f3657ae8 100644 --- a/addons/profile_crm/i18n/cs_CS.po +++ b/addons/profile_crm/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/zh_CN.po b/addons/profile_crm/i18n/zh_CN.po index e8c9efb9c21..05ebc7288eb 100644 --- a/addons/profile_crm/i18n/zh_CN.po +++ b/addons/profile_crm/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_crm/i18n/zh_TW.po b/addons/profile_crm/i18n/zh_TW.po index 82b2458ad8c..ee527ce1c4a 100644 --- a/addons/profile_crm/i18n/zh_TW.po +++ b/addons/profile_crm/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/ar_AR.po b/addons/profile_manufacturing/i18n/ar_AR.po index 80f8893ecdd..8bf1e69cb8f 100644 --- a/addons/profile_manufacturing/i18n/ar_AR.po +++ b/addons/profile_manufacturing/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/bg_BG.po b/addons/profile_manufacturing/i18n/bg_BG.po index 2df648216da..e4155eca196 100644 --- a/addons/profile_manufacturing/i18n/bg_BG.po +++ b/addons/profile_manufacturing/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/bs_BS.po b/addons/profile_manufacturing/i18n/bs_BS.po index 79f5b26ac5d..37856547208 100644 --- a/addons/profile_manufacturing/i18n/bs_BS.po +++ b/addons/profile_manufacturing/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/ca_ES.po b/addons/profile_manufacturing/i18n/ca_ES.po index 9c6642d6f15..254cd234b91 100644 --- a/addons/profile_manufacturing/i18n/ca_ES.po +++ b/addons/profile_manufacturing/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/cs_CZ.po b/addons/profile_manufacturing/i18n/cs_CZ.po index b55a7cf547d..faf72979ad7 100644 --- a/addons/profile_manufacturing/i18n/cs_CZ.po +++ b/addons/profile_manufacturing/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/de_DE.po b/addons/profile_manufacturing/i18n/de_DE.po index 68b48ecb018..3c43b44e8b1 100644 --- a/addons/profile_manufacturing/i18n/de_DE.po +++ b/addons/profile_manufacturing/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/es_AR.po b/addons/profile_manufacturing/i18n/es_AR.po index 9fec34bca04..c4ce3ddf1cb 100644 --- a/addons/profile_manufacturing/i18n/es_AR.po +++ b/addons/profile_manufacturing/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/es_ES.po b/addons/profile_manufacturing/i18n/es_ES.po index f9cf753ec5b..1fb3eae8bfc 100644 --- a/addons/profile_manufacturing/i18n/es_ES.po +++ b/addons/profile_manufacturing/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/et_EE.po b/addons/profile_manufacturing/i18n/et_EE.po index eeb7af6a92b..1feba5fb67e 100644 --- a/addons/profile_manufacturing/i18n/et_EE.po +++ b/addons/profile_manufacturing/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/fi_FI.po b/addons/profile_manufacturing/i18n/fi_FI.po index 2953110efcb..e4a7c844042 100644 --- a/addons/profile_manufacturing/i18n/fi_FI.po +++ b/addons/profile_manufacturing/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/fr_FR.po b/addons/profile_manufacturing/i18n/fr_FR.po index 833572af2e4..5b43e99473a 100644 --- a/addons/profile_manufacturing/i18n/fr_FR.po +++ b/addons/profile_manufacturing/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -63,7 +63,7 @@ msgstr "Ce module vous permet de gérer vos ventes, votre facturation et vos col #. module: profile_manufacturing #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: profile_manufacturing #: model:ir.actions.act_window,name:profile_manufacturing.action_config_install_module diff --git a/addons/profile_manufacturing/i18n/hr_HR.po b/addons/profile_manufacturing/i18n/hr_HR.po index 5f300deb170..1596fa13af4 100644 --- a/addons/profile_manufacturing/i18n/hr_HR.po +++ b/addons/profile_manufacturing/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/hu_HU.po b/addons/profile_manufacturing/i18n/hu_HU.po index af6dcefd486..1bd2a060c6b 100644 --- a/addons/profile_manufacturing/i18n/hu_HU.po +++ b/addons/profile_manufacturing/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/id_ID.po b/addons/profile_manufacturing/i18n/id_ID.po index 5f5df19aae6..97e484f0ac4 100644 --- a/addons/profile_manufacturing/i18n/id_ID.po +++ b/addons/profile_manufacturing/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/it_IT.po b/addons/profile_manufacturing/i18n/it_IT.po index db821b7e125..c3c07a22c81 100644 --- a/addons/profile_manufacturing/i18n/it_IT.po +++ b/addons/profile_manufacturing/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/lt_LT.po b/addons/profile_manufacturing/i18n/lt_LT.po index f5d49703700..e46ebe41ad0 100644 --- a/addons/profile_manufacturing/i18n/lt_LT.po +++ b/addons/profile_manufacturing/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/nl_BE.po b/addons/profile_manufacturing/i18n/nl_BE.po index 2ca4364c706..949c8a78939 100644 --- a/addons/profile_manufacturing/i18n/nl_BE.po +++ b/addons/profile_manufacturing/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/nl_NL.po b/addons/profile_manufacturing/i18n/nl_NL.po index 63d54d04616..1672d672f95 100644 --- a/addons/profile_manufacturing/i18n/nl_NL.po +++ b/addons/profile_manufacturing/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/pl_PL.po b/addons/profile_manufacturing/i18n/pl_PL.po index 82b08e35a9b..b8a399de9fc 100644 --- a/addons/profile_manufacturing/i18n/pl_PL.po +++ b/addons/profile_manufacturing/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+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 0916f09576f..e94d39ff4e6 100644 --- a/addons/profile_manufacturing/i18n/profile_manufacturing.pot +++ b/addons/profile_manufacturing/i18n/profile_manufacturing.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/pt_BR.po b/addons/profile_manufacturing/i18n/pt_BR.po index cd6a4950a7b..34bcf8dea5a 100644 --- a/addons/profile_manufacturing/i18n/pt_BR.po +++ b/addons/profile_manufacturing/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/pt_PT.po b/addons/profile_manufacturing/i18n/pt_PT.po index a2973f9d2df..322329d4856 100644 --- a/addons/profile_manufacturing/i18n/pt_PT.po +++ b/addons/profile_manufacturing/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/ro_RO.po b/addons/profile_manufacturing/i18n/ro_RO.po index bb7cc1871a3..86974f3f83f 100644 --- a/addons/profile_manufacturing/i18n/ro_RO.po +++ b/addons/profile_manufacturing/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/ru_RU.po b/addons/profile_manufacturing/i18n/ru_RU.po index a8ff35470d0..31dd85d5043 100644 --- a/addons/profile_manufacturing/i18n/ru_RU.po +++ b/addons/profile_manufacturing/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/sl_SL.po b/addons/profile_manufacturing/i18n/sl_SL.po index ddd3fe1f577..272f11da46f 100644 --- a/addons/profile_manufacturing/i18n/sl_SL.po +++ b/addons/profile_manufacturing/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/cs_CS.po b/addons/profile_manufacturing/i18n/sq_AL.po similarity index 98% rename from addons/profile_manufacturing/i18n/cs_CS.po rename to addons/profile_manufacturing/i18n/sq_AL.po index b01531aa4d6..2e5ed9048be 100644 --- a/addons/profile_manufacturing/i18n/cs_CS.po +++ b/addons/profile_manufacturing/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/sv_SE.po b/addons/profile_manufacturing/i18n/sv_SE.po index a03e01bf6b6..ab22b9197b7 100644 --- a/addons/profile_manufacturing/i18n/sv_SE.po +++ b/addons/profile_manufacturing/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/tr_TR.po b/addons/profile_manufacturing/i18n/tr_TR.po index 8dd47a01608..fe44f9f3008 100644 --- a/addons/profile_manufacturing/i18n/tr_TR.po +++ b/addons/profile_manufacturing/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/uk_UK.po b/addons/profile_manufacturing/i18n/uk_UA.po similarity index 98% rename from addons/profile_manufacturing/i18n/uk_UK.po rename to addons/profile_manufacturing/i18n/uk_UA.po index d9112a9bb31..2bc756f580d 100644 --- a/addons/profile_manufacturing/i18n/uk_UK.po +++ b/addons/profile_manufacturing/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/sv_SV.po b/addons/profile_manufacturing/i18n/vi_VN.po similarity index 96% rename from addons/profile_manufacturing/i18n/sv_SV.po rename to addons/profile_manufacturing/i18n/vi_VN.po index fe39b57456e..cd298ff8aa8 100644 --- a/addons/profile_manufacturing/i18n/sv_SV.po +++ b/addons/profile_manufacturing/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "" #. module: profile_manufacturing #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: profile_manufacturing #: field:profile.manufacturing.config.install_modules_wizard,mrp_jit:0 diff --git a/addons/profile_manufacturing/i18n/zh_CN.po b/addons/profile_manufacturing/i18n/zh_CN.po index f2ff7ca6403..36ce006cf41 100644 --- a/addons/profile_manufacturing/i18n/zh_CN.po +++ b/addons/profile_manufacturing/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/zh_TW.po b/addons/profile_manufacturing/i18n/zh_TW.po index d7fce5faceb..45719a961ac 100644 --- a/addons/profile_manufacturing/i18n/zh_TW.po +++ b/addons/profile_manufacturing/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/ar_AR.po b/addons/profile_service/i18n/ar_AR.po index feb945024cd..3555ed221ae 100644 --- a/addons/profile_service/i18n/ar_AR.po +++ b/addons/profile_service/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/bg_BG.po b/addons/profile_service/i18n/bg_BG.po index 3b15fb36624..90193436ccd 100644 --- a/addons/profile_service/i18n/bg_BG.po +++ b/addons/profile_service/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/bs_BS.po b/addons/profile_service/i18n/bs_BS.po index 9a6c4301b87..5c1a39a0ece 100644 --- a/addons/profile_service/i18n/bs_BS.po +++ b/addons/profile_service/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/ca_ES.po b/addons/profile_service/i18n/ca_ES.po index dcafe15a147..44a564b2b2b 100644 --- a/addons/profile_service/i18n/ca_ES.po +++ b/addons/profile_service/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/cs_CZ.po b/addons/profile_service/i18n/cs_CZ.po index 3b966935ec3..0ca88ca2a61 100644 --- a/addons/profile_service/i18n/cs_CZ.po +++ b/addons/profile_service/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/de_DE.po b/addons/profile_service/i18n/de_DE.po index 7ff47b350b6..a1a9eb21281 100644 --- a/addons/profile_service/i18n/de_DE.po +++ b/addons/profile_service/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/es_AR.po b/addons/profile_service/i18n/es_AR.po index a37a581906c..1704cd9d562 100644 --- a/addons/profile_service/i18n/es_AR.po +++ b/addons/profile_service/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/es_ES.po b/addons/profile_service/i18n/es_ES.po index ac20f16b094..dbc936aa798 100644 --- a/addons/profile_service/i18n/es_ES.po +++ b/addons/profile_service/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/et_EE.po b/addons/profile_service/i18n/et_EE.po index 49897a9ab3c..80d95b44f7c 100644 --- a/addons/profile_service/i18n/et_EE.po +++ b/addons/profile_service/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/fi_FI.po b/addons/profile_service/i18n/fi_FI.po index f3cacc4c6b2..d841d749e8f 100644 --- a/addons/profile_service/i18n/fi_FI.po +++ b/addons/profile_service/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/fr_FR.po b/addons/profile_service/i18n/fr_FR.po index ab119fd9c1e..9f3b4822251 100644 --- a/addons/profile_service/i18n/fr_FR.po +++ b/addons/profile_service/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "Feuilles de présence" #. module: profile_service #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: profile_service #: view:profile.service.config.install_modules_wizard:0 diff --git a/addons/profile_service/i18n/hr_HR.po b/addons/profile_service/i18n/hr_HR.po index 1dba8a7b716..ccfa30fa811 100644 --- a/addons/profile_service/i18n/hr_HR.po +++ b/addons/profile_service/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/hu_HU.po b/addons/profile_service/i18n/hu_HU.po index d85eb9d182d..822ae689e7a 100644 --- a/addons/profile_service/i18n/hu_HU.po +++ b/addons/profile_service/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/id_ID.po b/addons/profile_service/i18n/id_ID.po index c687eee1a62..4f2724ec950 100644 --- a/addons/profile_service/i18n/id_ID.po +++ b/addons/profile_service/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/it_IT.po b/addons/profile_service/i18n/it_IT.po index 74bba388ab0..de2f7d459e3 100644 --- a/addons/profile_service/i18n/it_IT.po +++ b/addons/profile_service/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/lt_LT.po b/addons/profile_service/i18n/lt_LT.po index 00567106e01..36c8c8198a4 100644 --- a/addons/profile_service/i18n/lt_LT.po +++ b/addons/profile_service/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/nl_BE.po b/addons/profile_service/i18n/nl_BE.po index 531931ae5bc..395a3d0d91f 100644 --- a/addons/profile_service/i18n/nl_BE.po +++ b/addons/profile_service/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/nl_NL.po b/addons/profile_service/i18n/nl_NL.po index 2a29256b06f..be48541e1ef 100644 --- a/addons/profile_service/i18n/nl_NL.po +++ b/addons/profile_service/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/pl_PL.po b/addons/profile_service/i18n/pl_PL.po index 0298363f732..9d7340e2c5e 100644 --- a/addons/profile_service/i18n/pl_PL.po +++ b/addons/profile_service/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+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 519bec9638a..8cc4865f802 100644 --- a/addons/profile_service/i18n/profile_service.pot +++ b/addons/profile_service/i18n/profile_service.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/pt_BR.po b/addons/profile_service/i18n/pt_BR.po index f24cf4f9abc..264a34285e2 100644 --- a/addons/profile_service/i18n/pt_BR.po +++ b/addons/profile_service/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/pt_PT.po b/addons/profile_service/i18n/pt_PT.po index 24503234f83..61f20ca24f7 100644 --- a/addons/profile_service/i18n/pt_PT.po +++ b/addons/profile_service/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/ro_RO.po b/addons/profile_service/i18n/ro_RO.po index e7b858c3bf4..00addafcdc0 100644 --- a/addons/profile_service/i18n/ro_RO.po +++ b/addons/profile_service/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/ru_RU.po b/addons/profile_service/i18n/ru_RU.po index 2915ed09683..1f68e708c0b 100644 --- a/addons/profile_service/i18n/ru_RU.po +++ b/addons/profile_service/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/sl_SL.po b/addons/profile_service/i18n/sl_SL.po index 6ee54e7ef02..8338bc790dd 100644 --- a/addons/profile_service/i18n/sl_SL.po +++ b/addons/profile_service/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/cs_CS.po b/addons/profile_service/i18n/sq_AL.po similarity index 98% rename from addons/profile_service/i18n/cs_CS.po rename to addons/profile_service/i18n/sq_AL.po index a9adbacb64a..1f47bbf3eae 100644 --- a/addons/profile_service/i18n/cs_CS.po +++ b/addons/profile_service/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/sv_SE.po b/addons/profile_service/i18n/sv_SE.po index aad10e867bd..d3e460dff69 100644 --- a/addons/profile_service/i18n/sv_SE.po +++ b/addons/profile_service/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/tr_TR.po b/addons/profile_service/i18n/tr_TR.po index b6d27ebce21..d78583557b7 100644 --- a/addons/profile_service/i18n/tr_TR.po +++ b/addons/profile_service/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/uk_UK.po b/addons/profile_service/i18n/uk_UA.po similarity index 98% rename from addons/profile_service/i18n/uk_UK.po rename to addons/profile_service/i18n/uk_UA.po index 54a2fee9aed..39a44083641 100644 --- a/addons/profile_service/i18n/uk_UK.po +++ b/addons/profile_service/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/sv_SV.po b/addons/profile_service/i18n/vi_VN.po similarity index 96% rename from addons/profile_service/i18n/sv_SV.po rename to addons/profile_service/i18n/vi_VN.po index 5160256bfdc..ce0d33b58bf 100644 --- a/addons/profile_service/i18n/sv_SV.po +++ b/addons/profile_service/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: profile_service #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: profile_service #: view:profile.service.config.install_modules_wizard:0 diff --git a/addons/profile_service/i18n/zh_CN.po b/addons/profile_service/i18n/zh_CN.po index 3fe7b0e2d2f..59b727dd43d 100644 --- a/addons/profile_service/i18n/zh_CN.po +++ b/addons/profile_service/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/zh_TW.po b/addons/profile_service/i18n/zh_TW.po index c58d79621fc..a776ceee60a 100644 --- a/addons/profile_service/i18n/zh_TW.po +++ b/addons/profile_service/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/ar_AR.po b/addons/project/i18n/ar_AR.po index 2842ca7b467..cd2ac042cd2 100644 --- a/addons/project/i18n/ar_AR.po +++ b/addons/project/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/bg_BG.po b/addons/project/i18n/bg_BG.po index 2fd8d82db35..ac8fbf56e92 100644 --- a/addons/project/i18n/bg_BG.po +++ b/addons/project/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/bs_BS.po b/addons/project/i18n/bs_BS.po index 2be75b11f26..328fe97279a 100644 --- a/addons/project/i18n/bs_BS.po +++ b/addons/project/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/ca_ES.po b/addons/project/i18n/ca_ES.po index d6fe72b8d64..59b23ec50ac 100644 --- a/addons/project/i18n/ca_ES.po +++ b/addons/project/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/cs_CZ.po b/addons/project/i18n/cs_CZ.po index 737b7179e90..311c11b8f00 100644 --- a/addons/project/i18n/cs_CZ.po +++ b/addons/project/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -364,7 +364,7 @@ msgstr "" #. module: project #: wizard_field:project.task.delegate,init,new_task_description:0 msgid "New Task Description" -msgstr "" +msgstr "Popis nového úkolu" #. module: project #: help:project.project,notes:0 diff --git a/addons/project/i18n/de_DE.po b/addons/project/i18n/de_DE.po index 583502eae65..ace996eee73 100644 --- a/addons/project/i18n/de_DE.po +++ b/addons/project/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/es_AR.po b/addons/project/i18n/es_AR.po index 70c2e377a28..5e88c5fc1b3 100644 --- a/addons/project/i18n/es_AR.po +++ b/addons/project/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/es_ES.po b/addons/project/i18n/es_ES.po index 291cd11f12e..94ea0886397 100644 --- a/addons/project/i18n/es_ES.po +++ b/addons/project/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/et_EE.po b/addons/project/i18n/et_EE.po index f5a87b86cb4..a572f24d57b 100644 --- a/addons/project/i18n/et_EE.po +++ b/addons/project/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/fi_FI.po b/addons/project/i18n/fi_FI.po index 6af56ec749b..2e07e85cb82 100644 --- a/addons/project/i18n/fi_FI.po +++ b/addons/project/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/fr_FR.po b/addons/project/i18n/fr_FR.po index 2644685b986..f3e6cc78073 100644 --- a/addons/project/i18n/fr_FR.po +++ b/addons/project/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "Nouveau titre de la tâche délégué à l'utilisateur." #. module: project #: view:config.compute.remaining:0 msgid "Change Remaining Hours" -msgstr "Changer les heures restantes" +msgstr "Modifier les heures restantes" #. module: project #: model:ir.actions.wizard,name:project.wizard_close_task @@ -43,7 +43,7 @@ msgstr "Fermer la tâche" #. module: project #: view:project.task:0 msgid "Project Tasks" -msgstr "Tâches du projet" +msgstr "Tâche projet" #. module: project #: model:process.transition,name:project.process_transition_opendonetask0 @@ -53,7 +53,7 @@ msgstr "Ouvrir les tâches ouvertes" #. module: project #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: project #: wizard_field:project.task.delegate,init,planned_hours_me:0 @@ -110,7 +110,7 @@ msgstr "Important" #. module: project #: view:config.compute.remaining:0 msgid "Update" -msgstr "Mise à jour" +msgstr "Mis à jour" #. module: project #: help:project.task.delegate,init,user_id:0 @@ -163,9 +163,7 @@ msgstr "Valider" msgid "Project management module that track multi-level projects, tasks,\n" "works done on tasks, eso. It is able to render planning, order tasks, eso.\n" " " -msgstr "Module de gestion de projet avec suivi de projet multi-niveau,\n" -"travail effectué sur les tâches,eso. Il est capable de fournir un planing, eso.\n" -" " +msgstr "" #. module: project #: model:ir.actions.act_window,name:project.action_view_task5_prog_prog @@ -223,7 +221,7 @@ msgstr "Projet" #. module: project #: view:project.task:0 msgid "Start Task" -msgstr "Démarrer la tâche" +msgstr "Tâche démarrée" #. module: project #: model:ir.actions.act_window,name:project.action_view_task5_prog_draft @@ -234,7 +232,7 @@ msgstr "Mes tâches en brouillon" #. module: project #: view:project.project:0 msgid "Automatic variables for headers and footer. Use exactly the same notation." -msgstr "Variables automatiques pour les entêtes et pieds. Utilise exactement la même notation. " +msgstr "Variables automatiques pour les entêtes et pieds. Avec exactement la même notation." #. module: project #: selection:project.project,state:0 @@ -298,7 +296,7 @@ msgstr "Toutes les tâches" #. module: project #: view:project.task:0 msgid "Planning" -msgstr "Agenda" +msgstr "Planning" #. module: project #: view:project.task:0 @@ -356,7 +354,7 @@ msgstr "Depuis l'état brouillon, il deviendra dans l'état ouvert" #. module: project #: wizard_view:project.task.delegate,init:0 msgid "Delegated Task" -msgstr "Tâche déléguée" +msgstr "Tache délégué" #. module: project #: help:project.project,progress_rate:0 @@ -366,7 +364,7 @@ msgstr "Pourcentage des tâches fermés en accord avec le total des tâches à f #. module: project #: wizard_field:project.task.delegate,init,new_task_description:0 msgid "New Task Description" -msgstr "Nouvelle description de tâche" +msgstr "Description de la nouvelle tâche" #. module: project #: help:project.project,notes:0 @@ -690,7 +688,7 @@ msgstr "Unité de temps du projet" #: field:project.project,complete_name:0 #: field:project.project,name:0 msgid "Project Name" -msgstr "Nom du projet" +msgstr "Nom du groupe" #. module: project #: wizard_button:project.task.close,mail_ask,mail_send:0 @@ -720,7 +718,7 @@ msgstr "Proposition" #. module: project #: view:project.task:0 msgid "Task edition" -msgstr "Édition de la tâche" +msgstr "Édition de tâche" #. module: project #: help:project.task,delay_hours:0 @@ -767,7 +765,7 @@ msgstr "Projets de l'utilisateur" #. module: project #: view:project.project:0 msgid "Reactivate Project" -msgstr "Réactivé le projet" +msgstr "Ré-activé le projet" #. module: project #: selection:project.task,priority:0 @@ -782,7 +780,7 @@ msgstr "Délégué cette tâche à un utilisateur" #. module: project #: field:project.task,delegated_user_id:0 msgid "Delegated To" -msgstr "Délégué à" +msgstr "Déléguer à" #. module: project #: field:project.task,date_close:0 @@ -807,7 +805,7 @@ msgstr "Somme des heures passés de toutes les tâches reliés à ce projet" #. module: project #: help:project.task,project_id:0 msgid "If you have [?] in the project name, it means there are no analytic account linked to this project." -msgstr "Si vous avez [?] dans le nom du projet, cela signifie que vous n'avez pas de compte analytique lié à ce projet" +msgstr "Si vous avez [?] dans le nom du projet, cela signifie qu'il n'y a pas de compte analytique lié à ce projet." #. module: project #: help:project.project,planned_hours:0 @@ -848,7 +846,7 @@ msgstr "Date de début: %(date_start)s" #. module: project #: help:project.project,category_id:0 msgid "Link this project to an analytic account if you need financial management on projects. It enables you to connect projects with budgets, planning, cost and revenue analysis, timesheets on projects, etc." -msgstr "Lié ce projet à un compte analytique si vous souhaitez une gestion financière sur les projets. Il vous active la gestion des projets avec les budgets, agenda, coût, analyse de revenu, feuilles de temps sur le projet, etc." +msgstr "" #. module: project #: view:project.project:0 @@ -898,7 +896,7 @@ msgstr "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactè #. module: project #: view:project.task:0 msgid "Reactivate" -msgstr "Réactiver" +msgstr "Ré-activé" #. module: project #: field:project.task,parent_id:0 @@ -966,7 +964,7 @@ msgstr "Structure des projets" #. module: project #: wizard_view:project.task.delegate,init:0 msgid "Validation Task" -msgstr "Tâche de validation" +msgstr "Tâche Validée" #. module: project #: field:project.task,work_ids:0 @@ -981,7 +979,7 @@ msgstr "En cours" #. module: project #: help:project.project,parent_id:0 msgid "If you have [?] in the name, it means there are no analytic account linked to project." -msgstr "Si vous avez [?] dans le nom, celà signifie que vous n'avez pas de compte analytique de lié au projet." +msgstr "Si vous avez [?] dans le nom, cela signifie qu'il n'y a pas de compte analytique lié au projet." #. module: project #: model:ir.actions.wizard,name:project.wizard_delegate_task @@ -1083,7 +1081,7 @@ msgstr "Résumé des tâches" #. module: project #: view:project.project:0 msgid "Date Stop: %(date_stop)s" -msgstr "Date de fin: %(date_stop)s" +msgstr "Date d'arrêt: %(date_stop)s" #. module: project #: field:project.project,date_end:0 diff --git a/addons/project/i18n/hr_HR.po b/addons/project/i18n/hr_HR.po index 5a13c333e9b..ee4dda3f29a 100644 --- a/addons/project/i18n/hr_HR.po +++ b/addons/project/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/hu_HU.po b/addons/project/i18n/hu_HU.po index f3970a26293..7b54cd135f6 100644 --- a/addons/project/i18n/hu_HU.po +++ b/addons/project/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/id_ID.po b/addons/project/i18n/id_ID.po index bbb51e84086..7268bad1cef 100644 --- a/addons/project/i18n/id_ID.po +++ b/addons/project/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/it_IT.po b/addons/project/i18n/it_IT.po index edd57f06f3d..183e2fc343b 100644 --- a/addons/project/i18n/it_IT.po +++ b/addons/project/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/lt_LT.po b/addons/project/i18n/lt_LT.po index de96fa2a057..49bf5b28ecf 100644 --- a/addons/project/i18n/lt_LT.po +++ b/addons/project/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/nl_BE.po b/addons/project/i18n/nl_BE.po index d6730ffb57e..c9c50dd99de 100644 --- a/addons/project/i18n/nl_BE.po +++ b/addons/project/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/nl_NL.po b/addons/project/i18n/nl_NL.po index 89db27745bc..42067968693 100644 --- a/addons/project/i18n/nl_NL.po +++ b/addons/project/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/pl_PL.po b/addons/project/i18n/pl_PL.po index ad25cf57fae..d9842d0ac42 100644 --- a/addons/project/i18n/pl_PL.po +++ b/addons/project/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+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 b28814c6659..f46fd3182d7 100644 --- a/addons/project/i18n/project.pot +++ b/addons/project/i18n/project.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/pt_BR.po b/addons/project/i18n/pt_BR.po index b34daf521e3..3365c3f7a71 100644 --- a/addons/project/i18n/pt_BR.po +++ b/addons/project/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/pt_PT.po b/addons/project/i18n/pt_PT.po index e1a3ae5007b..bbac8792716 100644 --- a/addons/project/i18n/pt_PT.po +++ b/addons/project/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -364,7 +364,7 @@ msgstr "" #. module: project #: wizard_field:project.task.delegate,init,new_task_description:0 msgid "New Task Description" -msgstr "" +msgstr "Descrição da nova tarefa" #. module: project #: help:project.project,notes:0 @@ -779,7 +779,7 @@ msgstr "Delegar esta tarefa a um utilizador" #. module: project #: field:project.task,delegated_user_id:0 msgid "Delegated To" -msgstr "" +msgstr "Delegar a" #. module: project #: field:project.task,date_close:0 diff --git a/addons/project/i18n/ro_RO.po b/addons/project/i18n/ro_RO.po index d36ad9cfd06..fcb69601247 100644 --- a/addons/project/i18n/ro_RO.po +++ b/addons/project/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/ru_RU.po b/addons/project/i18n/ru_RU.po index 39550f42d8c..867e400abfd 100644 --- a/addons/project/i18n/ru_RU.po +++ b/addons/project/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/sl_SL.po b/addons/project/i18n/sl_SL.po index 15ea6ecf434..04004dc823a 100644 --- a/addons/project/i18n/sl_SL.po +++ b/addons/project/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/cs_CS.po b/addons/project/i18n/sq_AL.po similarity index 98% rename from addons/project/i18n/cs_CS.po rename to addons/project/i18n/sq_AL.po index 8d3f51202c0..7c911734c68 100644 --- a/addons/project/i18n/cs_CS.po +++ b/addons/project/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -364,7 +364,7 @@ msgstr "" #. module: project #: wizard_field:project.task.delegate,init,new_task_description:0 msgid "New Task Description" -msgstr "Popis nového úkolu" +msgstr "" #. module: project #: help:project.project,notes:0 @@ -482,7 +482,7 @@ msgstr "" #: model:ir.ui.menu,name:project.menu_definitions #: view:res.company:0 msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: project #: field:project.project,date_start:0 @@ -693,7 +693,7 @@ msgstr "" #. module: project #: wizard_button:project.task.close,mail_ask,mail_send:0 msgid "Send Message" -msgstr "Poslat zprávu" +msgstr "" #. module: project #: field:project.project,total_hours:0 @@ -865,7 +865,7 @@ msgstr "" #: wizard_button:project.task.close,mail_ask,end:0 #: wizard_button:project.task.delegate,init,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: project #: model:ir.actions.act_window,name:project.act_project_project_2_project_task_new @@ -915,7 +915,7 @@ msgstr "" #. module: project #: wizard_view:project.task.close,mail_ask:0 msgid "Send mail to customer" -msgstr "Poslat e-mail zákazníkovi" +msgstr "" #. module: project #: field:project.project,warn_manager:0 diff --git a/addons/project/i18n/sv_SE.po b/addons/project/i18n/sv_SE.po index a460fc7ca5f..7fb77bb2d76 100644 --- a/addons/project/i18n/sv_SE.po +++ b/addons/project/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/tr_TR.po b/addons/project/i18n/tr_TR.po index a722a37f565..a32f50c40ce 100644 --- a/addons/project/i18n/tr_TR.po +++ b/addons/project/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/uk_UK.po b/addons/project/i18n/uk_UA.po similarity index 99% rename from addons/project/i18n/uk_UK.po rename to addons/project/i18n/uk_UA.po index 38e2b7e67e8..be5024593f8 100644 --- a/addons/project/i18n/uk_UK.po +++ b/addons/project/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/sv_SV.po b/addons/project/i18n/vi_VN.po similarity index 97% rename from addons/project/i18n/sv_SV.po rename to addons/project/i18n/vi_VN.po index 21463277853..14461e552ee 100644 --- a/addons/project/i18n/sv_SV.po +++ b/addons/project/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -74,7 +74,7 @@ msgstr "" #. module: project #: field:project.project,child_id:0 msgid "Subproject" -msgstr "Underprojekt" +msgstr "" #. module: project #: field:project.project,members:0 @@ -185,7 +185,7 @@ msgstr "" #: model:ir.model,name:project.model_project_task #: field:project.task.work,task_id:0 msgid "Task" -msgstr "Uppgift" +msgstr "" #. module: project #: help:project.task.delegate,init,planned_hours_me:0 @@ -198,7 +198,7 @@ msgstr "" #: view:project.task:0 #: field:project.task,notes:0 msgid "Notes" -msgstr "Anteckningar" +msgstr "" #. module: project #: selection:res.company,project_time_mode:0 @@ -216,7 +216,7 @@ msgstr "" #: field:project.task,project_id:0 #: model:res.request.link,name:project.req_link_project msgid "Project" -msgstr "Projekt" +msgstr "" #. module: project #: view:project.task:0 @@ -291,7 +291,7 @@ msgstr "" #: model:ir.actions.act_window,name:project.action_view_task #: model:ir.ui.menu,name:project.menu_action_view_task msgid "All Tasks" -msgstr "Alla uppgifter" +msgstr "" #. module: project #: view:project.task:0 @@ -385,7 +385,7 @@ msgstr "" #: field:project.task,type:0 #: field:project.task.type,name:0 msgid "Type" -msgstr "Typ" +msgstr "" #. module: project #: selection:res.company,project_time_mode:0 @@ -482,7 +482,7 @@ msgstr "" #: model:ir.ui.menu,name:project.menu_definitions #: view:res.company:0 msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: project #: field:project.project,date_start:0 @@ -529,7 +529,7 @@ msgstr "" #. module: project #: field:project.project,contact_id:0 msgid "Contact" -msgstr "Kontakt" +msgstr "" #. module: project #: model:process.transition,name:project.process_transition_delegate0 @@ -559,7 +559,7 @@ msgstr "" #: model:ir.ui.menu,name:project.menu_tasks #: view:project.task:0 msgid "Tasks" -msgstr "Uppgifter" +msgstr "" #. module: project #: view:project.task.type:0 @@ -580,7 +580,7 @@ msgstr "" #. module: project #: view:project.project:0 msgid "Project's members" -msgstr "Projektets medlemmar" +msgstr "" #. module: project #: model:process.transition,note:project.process_transition_taskinvoice0 @@ -653,7 +653,7 @@ msgstr "" #. module: project #: selection:project.task,priority:0 msgid "Low" -msgstr "Låg" +msgstr "" #. module: project #: field:project.project,manager:0 @@ -703,7 +703,7 @@ msgstr "" #. module: project #: field:project.task,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: project #: model:project.task.type,name:project.project_tt_bug @@ -784,12 +784,12 @@ msgstr "" #. module: project #: field:project.task,date_close:0 msgid "Date Closed" -msgstr "Datum stängd" +msgstr "" #. module: project #: field:project.task,user_id:0 msgid "Assigned to" -msgstr "Tilldelad till" +msgstr "" #. module: project #: help:project.task,planned_hours:0 @@ -835,7 +835,7 @@ msgstr "" #. module: project #: field:project.task,name:0 msgid "Task summary" -msgstr "Uppgiftssammandrag" +msgstr "" #. module: project #: view:project.project:0 @@ -890,7 +890,7 @@ msgstr "" #. module: project #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: project #: view:project.task:0 @@ -910,7 +910,7 @@ msgstr "" #. module: project #: selection:project.task,priority:0 msgid "Very Low" -msgstr "Mycket låg" +msgstr "" #. module: project #: wizard_view:project.task.close,mail_ask:0 @@ -988,7 +988,7 @@ msgstr "" #. module: project #: field:project.project,tasks:0 msgid "Project tasks" -msgstr "Projektuppgifter" +msgstr "" #. module: project #: help:project.project,warn_manager:0 @@ -1065,7 +1065,7 @@ msgstr "" #. module: project #: field:project.task,date_deadline:0 msgid "Deadline" -msgstr "Slutdatum" +msgstr "" #. module: project #: wizard_field:project.task.delegate,init,user_id:0 diff --git a/addons/project/i18n/zh_CN.po b/addons/project/i18n/zh_CN.po index 692d18ca4a3..a3b72caa102 100644 --- a/addons/project/i18n/zh_CN.po +++ b/addons/project/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/zh_TW.po b/addons/project/i18n/zh_TW.po index 6ba87e0b8eb..67f3c3d7b71 100644 --- a/addons/project/i18n/zh_TW.po +++ b/addons/project/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/ar_AR.po b/addons/project_gtd/i18n/ar_AR.po index 46891ca92e9..695db480ae2 100644 --- a/addons/project_gtd/i18n/ar_AR.po +++ b/addons/project_gtd/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/bg_BG.po b/addons/project_gtd/i18n/bg_BG.po index 05dcc4ca15a..c837a256f69 100644 --- a/addons/project_gtd/i18n/bg_BG.po +++ b/addons/project_gtd/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/bs_BS.po b/addons/project_gtd/i18n/bs_BS.po index aacac6dd97d..9095ea4b22d 100644 --- a/addons/project_gtd/i18n/bs_BS.po +++ b/addons/project_gtd/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/ca_ES.po b/addons/project_gtd/i18n/ca_ES.po index ae5d4367da3..e9e58890c0e 100644 --- a/addons/project_gtd/i18n/ca_ES.po +++ b/addons/project_gtd/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/cs_CZ.po b/addons/project_gtd/i18n/cs_CZ.po index 4d5daa8a9d4..643e06d41ca 100644 --- a/addons/project_gtd/i18n/cs_CZ.po +++ b/addons/project_gtd/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/de_DE.po b/addons/project_gtd/i18n/de_DE.po index 55c49710054..89fdfd78f74 100644 --- a/addons/project_gtd/i18n/de_DE.po +++ b/addons/project_gtd/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/es_AR.po b/addons/project_gtd/i18n/es_AR.po index 8e288650706..703de079033 100644 --- a/addons/project_gtd/i18n/es_AR.po +++ b/addons/project_gtd/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/es_ES.po b/addons/project_gtd/i18n/es_ES.po index 73717aa07e8..f8edcc71afd 100644 --- a/addons/project_gtd/i18n/es_ES.po +++ b/addons/project_gtd/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/et_EE.po b/addons/project_gtd/i18n/et_EE.po index b0c1f2451a7..1b31ac3413a 100644 --- a/addons/project_gtd/i18n/et_EE.po +++ b/addons/project_gtd/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/fi_FI.po b/addons/project_gtd/i18n/fi_FI.po index b89185df133..bfb645bc838 100644 --- a/addons/project_gtd/i18n/fi_FI.po +++ b/addons/project_gtd/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/fr_FR.po b/addons/project_gtd/i18n/fr_FR.po index 9dc1da89c85..2e2dc3eefcb 100644 --- a/addons/project_gtd/i18n/fr_FR.po +++ b/addons/project_gtd/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -74,7 +74,7 @@ msgstr "Projet par défaut" #. module: project_gtd #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: project_gtd #: field:project.gtd.timebox,context4_id:0 diff --git a/addons/project_gtd/i18n/hr_HR.po b/addons/project_gtd/i18n/hr_HR.po index f91e901d22f..4f68f9197f8 100644 --- a/addons/project_gtd/i18n/hr_HR.po +++ b/addons/project_gtd/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/hu_HU.po b/addons/project_gtd/i18n/hu_HU.po index 820ddcaa7a2..bc075a73629 100644 --- a/addons/project_gtd/i18n/hu_HU.po +++ b/addons/project_gtd/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/id_ID.po b/addons/project_gtd/i18n/id_ID.po index a190f11a8a8..9a98062894f 100644 --- a/addons/project_gtd/i18n/id_ID.po +++ b/addons/project_gtd/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/it_IT.po b/addons/project_gtd/i18n/it_IT.po index ae6f6f1431e..812b9113aff 100644 --- a/addons/project_gtd/i18n/it_IT.po +++ b/addons/project_gtd/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/ko_KO.po b/addons/project_gtd/i18n/ko_KO.po index 947e22a6323..9270c6fafda 100644 --- a/addons/project_gtd/i18n/ko_KO.po +++ b/addons/project_gtd/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:09+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/lt_LT.po b/addons/project_gtd/i18n/lt_LT.po index 150ee5a3174..5d0963fc211 100644 --- a/addons/project_gtd/i18n/lt_LT.po +++ b/addons/project_gtd/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/nl_BE.po b/addons/project_gtd/i18n/nl_BE.po index d3f9bc81bd8..a7fc126133f 100644 --- a/addons/project_gtd/i18n/nl_BE.po +++ b/addons/project_gtd/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/nl_NL.po b/addons/project_gtd/i18n/nl_NL.po index f800724f7d1..4e19c352e2d 100644 --- a/addons/project_gtd/i18n/nl_NL.po +++ b/addons/project_gtd/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/pl_PL.po b/addons/project_gtd/i18n/pl_PL.po index 8038c1bc725..3317bd1ec6d 100644 --- a/addons/project_gtd/i18n/pl_PL.po +++ b/addons/project_gtd/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/project_gtd.pot b/addons/project_gtd/i18n/project_gtd.pot index 6935a1a9530..36ebb7e2965 100644 --- a/addons/project_gtd/i18n/project_gtd.pot +++ b/addons/project_gtd/i18n/project_gtd.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/pt_BR.po b/addons/project_gtd/i18n/pt_BR.po index dd658672288..d3778bfe905 100644 --- a/addons/project_gtd/i18n/pt_BR.po +++ b/addons/project_gtd/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/pt_PT.po b/addons/project_gtd/i18n/pt_PT.po index 9620cfd6449..f1f5aa2fe8b 100644 --- a/addons/project_gtd/i18n/pt_PT.po +++ b/addons/project_gtd/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/ro_RO.po b/addons/project_gtd/i18n/ro_RO.po index 34dacd0f4b9..8849a5f9527 100644 --- a/addons/project_gtd/i18n/ro_RO.po +++ b/addons/project_gtd/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/ru_RU.po b/addons/project_gtd/i18n/ru_RU.po index 465f442c003..d06eb650259 100644 --- a/addons/project_gtd/i18n/ru_RU.po +++ b/addons/project_gtd/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/sl_SL.po b/addons/project_gtd/i18n/sl_SL.po index 67ffe7197de..712592fe500 100644 --- a/addons/project_gtd/i18n/sl_SL.po +++ b/addons/project_gtd/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/cs_CS.po b/addons/project_gtd/i18n/sq_AL.po similarity index 98% rename from addons/project_gtd/i18n/cs_CS.po rename to addons/project_gtd/i18n/sq_AL.po index eaae6afcfa2..771902a4b75 100644 --- a/addons/project_gtd/i18n/cs_CS.po +++ b/addons/project_gtd/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/sv_SE.po b/addons/project_gtd/i18n/sv_SE.po index 4f3efc4a1da..bfcb72fb356 100644 --- a/addons/project_gtd/i18n/sv_SE.po +++ b/addons/project_gtd/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/tr_TR.po b/addons/project_gtd/i18n/tr_TR.po index ed8ba2969e8..dfec0b95c69 100644 --- a/addons/project_gtd/i18n/tr_TR.po +++ b/addons/project_gtd/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/uk_UK.po b/addons/project_gtd/i18n/uk_UA.po similarity index 98% rename from addons/project_gtd/i18n/uk_UK.po rename to addons/project_gtd/i18n/uk_UA.po index 7ab2cf685c2..1b6f13714b1 100644 --- a/addons/project_gtd/i18n/uk_UK.po +++ b/addons/project_gtd/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/sv_SV.po b/addons/project_gtd/i18n/vi_VN.po similarity index 96% rename from addons/project_gtd/i18n/sv_SV.po rename to addons/project_gtd/i18n/vi_VN.po index 736065193c0..1ad0975dc6a 100644 --- a/addons/project_gtd/i18n/sv_SV.po +++ b/addons/project_gtd/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: project_gtd #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_gtd_timebox @@ -263,7 +263,7 @@ msgstr "" #: field:project.gtd.timebox,task_ids:0 #: view:project.task:0 msgid "Tasks" -msgstr "Uppgifter" +msgstr "" #. module: project_gtd #: field:project.gtd.context,sequence:0 diff --git a/addons/project_gtd/i18n/zh_CN.po b/addons/project_gtd/i18n/zh_CN.po index e172c137160..9eeac553a2a 100644 --- a/addons/project_gtd/i18n/zh_CN.po +++ b/addons/project_gtd/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_gtd/i18n/zh_TW.po b/addons/project_gtd/i18n/zh_TW.po index f62c1eff1d6..4b127b3ff33 100644 --- a/addons/project_gtd/i18n/zh_TW.po +++ b/addons/project_gtd/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/ar_AR.po b/addons/project_mrp/i18n/ar_AR.po index e38992da043..aa837197c28 100644 --- a/addons/project_mrp/i18n/ar_AR.po +++ b/addons/project_mrp/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/bg_BG.po b/addons/project_mrp/i18n/bg_BG.po index 2511331b67b..42026625a03 100644 --- a/addons/project_mrp/i18n/bg_BG.po +++ b/addons/project_mrp/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/bs_BS.po b/addons/project_mrp/i18n/bs_BS.po index e368a7a25e1..3d1f3fc14f7 100644 --- a/addons/project_mrp/i18n/bs_BS.po +++ b/addons/project_mrp/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/ca_ES.po b/addons/project_mrp/i18n/ca_ES.po index 26cb3d3bb74..f67388abc38 100644 --- a/addons/project_mrp/i18n/ca_ES.po +++ b/addons/project_mrp/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/cs_CZ.po b/addons/project_mrp/i18n/cs_CZ.po index bcd01bac00c..6acbcc02e1f 100644 --- a/addons/project_mrp/i18n/cs_CZ.po +++ b/addons/project_mrp/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/de_DE.po b/addons/project_mrp/i18n/de_DE.po index 7cc5c792540..df8624f8ed5 100644 --- a/addons/project_mrp/i18n/de_DE.po +++ b/addons/project_mrp/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/es_AR.po b/addons/project_mrp/i18n/es_AR.po index d32e948c02b..62747b14d67 100644 --- a/addons/project_mrp/i18n/es_AR.po +++ b/addons/project_mrp/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/es_ES.po b/addons/project_mrp/i18n/es_ES.po index a75ed2ed7af..94e2bed718b 100644 --- a/addons/project_mrp/i18n/es_ES.po +++ b/addons/project_mrp/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/et_EE.po b/addons/project_mrp/i18n/et_EE.po index 745c516f22b..537ca724100 100644 --- a/addons/project_mrp/i18n/et_EE.po +++ b/addons/project_mrp/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/fi_FI.po b/addons/project_mrp/i18n/fi_FI.po index b20419ef608..876298e42c1 100644 --- a/addons/project_mrp/i18n/fi_FI.po +++ b/addons/project_mrp/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/fr_FR.po b/addons/project_mrp/i18n/fr_FR.po index 4e5e1ed1c01..2669e94581f 100644 --- a/addons/project_mrp/i18n/fr_FR.po +++ b/addons/project_mrp/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/hr_HR.po b/addons/project_mrp/i18n/hr_HR.po index 94ccdced77f..2371fc7031c 100644 --- a/addons/project_mrp/i18n/hr_HR.po +++ b/addons/project_mrp/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/hu_HU.po b/addons/project_mrp/i18n/hu_HU.po index f0c9c07cde7..d088838af13 100644 --- a/addons/project_mrp/i18n/hu_HU.po +++ b/addons/project_mrp/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/id_ID.po b/addons/project_mrp/i18n/id_ID.po index eb40c54e942..94fb06285a5 100644 --- a/addons/project_mrp/i18n/id_ID.po +++ b/addons/project_mrp/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/it_IT.po b/addons/project_mrp/i18n/it_IT.po index cda03f6d5b9..5afaa2649b5 100644 --- a/addons/project_mrp/i18n/it_IT.po +++ b/addons/project_mrp/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/lt_LT.po b/addons/project_mrp/i18n/lt_LT.po index b1c19d03ab0..5033000c459 100644 --- a/addons/project_mrp/i18n/lt_LT.po +++ b/addons/project_mrp/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/nl_BE.po b/addons/project_mrp/i18n/nl_BE.po index d37680dcb8b..10a5808345b 100644 --- a/addons/project_mrp/i18n/nl_BE.po +++ b/addons/project_mrp/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/nl_NL.po b/addons/project_mrp/i18n/nl_NL.po index 2822606fde4..ca0de022914 100644 --- a/addons/project_mrp/i18n/nl_NL.po +++ b/addons/project_mrp/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/pl_PL.po b/addons/project_mrp/i18n/pl_PL.po index ce3486331c8..283ec14e402 100644 --- a/addons/project_mrp/i18n/pl_PL.po +++ b/addons/project_mrp/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:03+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:03+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+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 c2b271a9f40..bd2b413045c 100644 --- a/addons/project_mrp/i18n/project_mrp.pot +++ b/addons/project_mrp/i18n/project_mrp.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/pt_BR.po b/addons/project_mrp/i18n/pt_BR.po index 820926fde98..0562df0f229 100644 --- a/addons/project_mrp/i18n/pt_BR.po +++ b/addons/project_mrp/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/pt_PT.po b/addons/project_mrp/i18n/pt_PT.po index e7713ef383c..ce8ca11a56d 100644 --- a/addons/project_mrp/i18n/pt_PT.po +++ b/addons/project_mrp/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/ro_RO.po b/addons/project_mrp/i18n/ro_RO.po index a0311f9e1ea..2d78aa31b7a 100644 --- a/addons/project_mrp/i18n/ro_RO.po +++ b/addons/project_mrp/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/ru_RU.po b/addons/project_mrp/i18n/ru_RU.po index 95890e17f37..15baf7e8434 100644 --- a/addons/project_mrp/i18n/ru_RU.po +++ b/addons/project_mrp/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/sl_SL.po b/addons/project_mrp/i18n/sl_SL.po index 9adc0db2a01..c5d07ab3fa8 100644 --- a/addons/project_mrp/i18n/sl_SL.po +++ b/addons/project_mrp/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/cs_CS.po b/addons/project_mrp/i18n/sq_AL.po similarity index 94% rename from addons/project_mrp/i18n/cs_CS.po rename to addons/project_mrp/i18n/sq_AL.po index 7e24cd3ec9d..568436fcda9 100644 --- a/addons/project_mrp/i18n/cs_CS.po +++ b/addons/project_mrp/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/sv_SE.po b/addons/project_mrp/i18n/sv_SE.po index 26a3863c10c..d36d3adaa43 100644 --- a/addons/project_mrp/i18n/sv_SE.po +++ b/addons/project_mrp/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/tr_TR.po b/addons/project_mrp/i18n/tr_TR.po index a54b6407f24..daa02cb93c8 100644 --- a/addons/project_mrp/i18n/tr_TR.po +++ b/addons/project_mrp/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/sv_SV.po b/addons/project_mrp/i18n/uk_UA.po similarity index 94% rename from addons/project_mrp/i18n/sv_SV.po rename to addons/project_mrp/i18n/uk_UA.po index 8444401ee5b..446b4a76936 100644 --- a/addons/project_mrp/i18n/sv_SV.po +++ b/addons/project_mrp/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/uk_UK.po b/addons/project_mrp/i18n/vi_VN.po similarity index 94% rename from addons/project_mrp/i18n/uk_UK.po rename to addons/project_mrp/i18n/vi_VN.po index e217b77cc73..03c29a6b6bc 100644 --- a/addons/project_mrp/i18n/uk_UK.po +++ b/addons/project_mrp/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/zh_CN.po b/addons/project_mrp/i18n/zh_CN.po index f4014a58977..3935ef3fb51 100644 --- a/addons/project_mrp/i18n/zh_CN.po +++ b/addons/project_mrp/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/zh_TW.po b/addons/project_mrp/i18n/zh_TW.po index 1723baab540..7c347b4a65c 100644 --- a/addons/project_mrp/i18n/zh_TW.po +++ b/addons/project_mrp/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/ar_AR.po b/addons/project_retro_planning/i18n/ar_AR.po index bd21110e0a9..8efff41a8bb 100644 --- a/addons/project_retro_planning/i18n/ar_AR.po +++ b/addons/project_retro_planning/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/bg_BG.po b/addons/project_retro_planning/i18n/bg_BG.po index 0d4c961fe81..8f086047009 100644 --- a/addons/project_retro_planning/i18n/bg_BG.po +++ b/addons/project_retro_planning/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/bs_BS.po b/addons/project_retro_planning/i18n/bs_BS.po index f65e175a810..027780c803f 100644 --- a/addons/project_retro_planning/i18n/bs_BS.po +++ b/addons/project_retro_planning/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/ca_ES.po b/addons/project_retro_planning/i18n/ca_ES.po index cdb2a63f535..f01a4718b04 100644 --- a/addons/project_retro_planning/i18n/ca_ES.po +++ b/addons/project_retro_planning/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/cs_CZ.po b/addons/project_retro_planning/i18n/cs_CZ.po index fd25bc2e262..938c46d75c0 100644 --- a/addons/project_retro_planning/i18n/cs_CZ.po +++ b/addons/project_retro_planning/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/de_DE.po b/addons/project_retro_planning/i18n/de_DE.po index 9727c3ebea6..3f525a91064 100644 --- a/addons/project_retro_planning/i18n/de_DE.po +++ b/addons/project_retro_planning/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/es_AR.po b/addons/project_retro_planning/i18n/es_AR.po index 694580185bd..5704d3d9808 100644 --- a/addons/project_retro_planning/i18n/es_AR.po +++ b/addons/project_retro_planning/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/es_ES.po b/addons/project_retro_planning/i18n/es_ES.po index c8f5dc87659..70f605164a6 100644 --- a/addons/project_retro_planning/i18n/es_ES.po +++ b/addons/project_retro_planning/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/et_EE.po b/addons/project_retro_planning/i18n/et_EE.po index 8f37052ad20..f7103d4a788 100644 --- a/addons/project_retro_planning/i18n/et_EE.po +++ b/addons/project_retro_planning/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/fi_FI.po b/addons/project_retro_planning/i18n/fi_FI.po index 4364ccc6bf4..e36c48d9570 100644 --- a/addons/project_retro_planning/i18n/fi_FI.po +++ b/addons/project_retro_planning/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/fr_FR.po b/addons/project_retro_planning/i18n/fr_FR.po index 8954e9447d3..80e556742a9 100644 --- a/addons/project_retro_planning/i18n/fr_FR.po +++ b/addons/project_retro_planning/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/hr_HR.po b/addons/project_retro_planning/i18n/hr_HR.po index b9a4a106a3a..1c6537392ef 100644 --- a/addons/project_retro_planning/i18n/hr_HR.po +++ b/addons/project_retro_planning/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/hu_HU.po b/addons/project_retro_planning/i18n/hu_HU.po index db64ebaf873..76ac8b9cf8b 100644 --- a/addons/project_retro_planning/i18n/hu_HU.po +++ b/addons/project_retro_planning/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/id_ID.po b/addons/project_retro_planning/i18n/id_ID.po index aaae6f44ad9..186900bd489 100644 --- a/addons/project_retro_planning/i18n/id_ID.po +++ b/addons/project_retro_planning/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/it_IT.po b/addons/project_retro_planning/i18n/it_IT.po index c1d175a03ec..9e2e157a1b4 100644 --- a/addons/project_retro_planning/i18n/it_IT.po +++ b/addons/project_retro_planning/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/lt_LT.po b/addons/project_retro_planning/i18n/lt_LT.po index e2abf8214a4..7d18a7d2ee7 100644 --- a/addons/project_retro_planning/i18n/lt_LT.po +++ b/addons/project_retro_planning/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/nl_BE.po b/addons/project_retro_planning/i18n/nl_BE.po index 5b6a5003b22..37edb49d6b4 100644 --- a/addons/project_retro_planning/i18n/nl_BE.po +++ b/addons/project_retro_planning/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/nl_NL.po b/addons/project_retro_planning/i18n/nl_NL.po index c1efcb09e3e..f482faab3cb 100644 --- a/addons/project_retro_planning/i18n/nl_NL.po +++ b/addons/project_retro_planning/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/pl_PL.po b/addons/project_retro_planning/i18n/pl_PL.po index f1057b387da..98f86808081 100644 --- a/addons/project_retro_planning/i18n/pl_PL.po +++ b/addons/project_retro_planning/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/project_retro_planning.pot b/addons/project_retro_planning/i18n/project_retro_planning.pot index dcc288fdb7c..95ec8be068a 100644 --- a/addons/project_retro_planning/i18n/project_retro_planning.pot +++ b/addons/project_retro_planning/i18n/project_retro_planning.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/pt_BR.po b/addons/project_retro_planning/i18n/pt_BR.po index 3874b2321cd..0edec391f4b 100644 --- a/addons/project_retro_planning/i18n/pt_BR.po +++ b/addons/project_retro_planning/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/pt_PT.po b/addons/project_retro_planning/i18n/pt_PT.po index c7dcf8d2436..b8e25021cf6 100644 --- a/addons/project_retro_planning/i18n/pt_PT.po +++ b/addons/project_retro_planning/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/ro_RO.po b/addons/project_retro_planning/i18n/ro_RO.po index e882d4ec50f..6f515e8882f 100644 --- a/addons/project_retro_planning/i18n/ro_RO.po +++ b/addons/project_retro_planning/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/ru_RU.po b/addons/project_retro_planning/i18n/ru_RU.po index 92223d9abd6..e7e5f76e6c3 100644 --- a/addons/project_retro_planning/i18n/ru_RU.po +++ b/addons/project_retro_planning/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/sl_SL.po b/addons/project_retro_planning/i18n/sl_SL.po index 48b1507da7c..2f28208afae 100644 --- a/addons/project_retro_planning/i18n/sl_SL.po +++ b/addons/project_retro_planning/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/cs_CS.po b/addons/project_retro_planning/i18n/sq_AL.po similarity index 78% rename from addons/project_retro_planning/i18n/cs_CS.po rename to addons/project_retro_planning/i18n/sq_AL.po index 23547009a6d..3e19dd3da06 100644 --- a/addons/project_retro_planning/i18n/cs_CS.po +++ b/addons/project_retro_planning/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/sv_SE.po b/addons/project_retro_planning/i18n/sv_SE.po index bf8bad28e91..628a68a5c90 100644 --- a/addons/project_retro_planning/i18n/sv_SE.po +++ b/addons/project_retro_planning/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/tr_TR.po b/addons/project_retro_planning/i18n/tr_TR.po index 04f4fd0deac..8ec94d3d4b7 100644 --- a/addons/project_retro_planning/i18n/tr_TR.po +++ b/addons/project_retro_planning/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/sv_SV.po b/addons/project_retro_planning/i18n/uk_UA.po similarity index 78% rename from addons/project_retro_planning/i18n/sv_SV.po rename to addons/project_retro_planning/i18n/uk_UA.po index 8f2c4cd7371..a460d120bf1 100644 --- a/addons/project_retro_planning/i18n/sv_SV.po +++ b/addons/project_retro_planning/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/ur_UR.po b/addons/project_retro_planning/i18n/ur_UR.po index ee886f879be..8d7b622d49c 100644 --- a/addons/project_retro_planning/i18n/ur_UR.po +++ b/addons/project_retro_planning/i18n/ur_UR.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:05+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_retro_planning diff --git a/addons/project_retro_planning/i18n/uk_UK.po b/addons/project_retro_planning/i18n/vi_VN.po similarity index 78% rename from addons/project_retro_planning/i18n/uk_UK.po rename to addons/project_retro_planning/i18n/vi_VN.po index 760b14d108f..f3865193776 100644 --- a/addons/project_retro_planning/i18n/uk_UK.po +++ b/addons/project_retro_planning/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/zh_CN.po b/addons/project_retro_planning/i18n/zh_CN.po index c1ac9c0d388..79df8efe7cf 100644 --- a/addons/project_retro_planning/i18n/zh_CN.po +++ b/addons/project_retro_planning/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_retro_planning/i18n/zh_TW.po b/addons/project_retro_planning/i18n/zh_TW.po index e903f981719..81dd4c8a4fc 100644 --- a/addons/project_retro_planning/i18n/zh_TW.po +++ b/addons/project_retro_planning/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/ar_AR.po b/addons/project_timesheet/i18n/ar_AR.po index c362ac02331..672f0b4b853 100644 --- a/addons/project_timesheet/i18n/ar_AR.po +++ b/addons/project_timesheet/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/bg_BG.po b/addons/project_timesheet/i18n/bg_BG.po index 12e68a75301..3519a6871a2 100644 --- a/addons/project_timesheet/i18n/bg_BG.po +++ b/addons/project_timesheet/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/bs_BS.po b/addons/project_timesheet/i18n/bs_BS.po index 4d695482233..5b3d071ee10 100644 --- a/addons/project_timesheet/i18n/bs_BS.po +++ b/addons/project_timesheet/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/ca_ES.po b/addons/project_timesheet/i18n/ca_ES.po index 000c5e5c6f6..7b4a4ec4072 100644 --- a/addons/project_timesheet/i18n/ca_ES.po +++ b/addons/project_timesheet/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/cs_CZ.po b/addons/project_timesheet/i18n/cs_CZ.po index 659be75fd2b..dc7158b5ba4 100644 --- a/addons/project_timesheet/i18n/cs_CZ.po +++ b/addons/project_timesheet/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/de_DE.po b/addons/project_timesheet/i18n/de_DE.po index a7631c3d990..d850fc39595 100644 --- a/addons/project_timesheet/i18n/de_DE.po +++ b/addons/project_timesheet/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/es_AR.po b/addons/project_timesheet/i18n/es_AR.po index 769f9db224c..bb496075d58 100644 --- a/addons/project_timesheet/i18n/es_AR.po +++ b/addons/project_timesheet/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/es_ES.po b/addons/project_timesheet/i18n/es_ES.po index b025a0b185f..511b4d91f95 100644 --- a/addons/project_timesheet/i18n/es_ES.po +++ b/addons/project_timesheet/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/et_EE.po b/addons/project_timesheet/i18n/et_EE.po index 4dc463b6d91..9ea5bb23d19 100644 --- a/addons/project_timesheet/i18n/et_EE.po +++ b/addons/project_timesheet/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/fi_FI.po b/addons/project_timesheet/i18n/fi_FI.po index 2ed44aa3a6c..3a6a15f40f0 100644 --- a/addons/project_timesheet/i18n/fi_FI.po +++ b/addons/project_timesheet/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/fr_FR.po b/addons/project_timesheet/i18n/fr_FR.po index 01b7bdacef4..2c5eb147fd9 100644 --- a/addons/project_timesheet/i18n/fr_FR.po +++ b/addons/project_timesheet/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/hr_HR.po b/addons/project_timesheet/i18n/hr_HR.po index 94f5c70729e..4a54eb5135b 100644 --- a/addons/project_timesheet/i18n/hr_HR.po +++ b/addons/project_timesheet/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/hu_HU.po b/addons/project_timesheet/i18n/hu_HU.po index ee3931fea39..67baf5315cb 100644 --- a/addons/project_timesheet/i18n/hu_HU.po +++ b/addons/project_timesheet/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/id_ID.po b/addons/project_timesheet/i18n/id_ID.po index ef49fc7a126..fe2907109aa 100644 --- a/addons/project_timesheet/i18n/id_ID.po +++ b/addons/project_timesheet/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/it_IT.po b/addons/project_timesheet/i18n/it_IT.po index 682900c8290..cde96dd83f1 100644 --- a/addons/project_timesheet/i18n/it_IT.po +++ b/addons/project_timesheet/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/lt_LT.po b/addons/project_timesheet/i18n/lt_LT.po index c10398f8e73..5eec3f381fe 100644 --- a/addons/project_timesheet/i18n/lt_LT.po +++ b/addons/project_timesheet/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/nl_BE.po b/addons/project_timesheet/i18n/nl_BE.po index 101c9f0e6d8..51b63e1ea03 100644 --- a/addons/project_timesheet/i18n/nl_BE.po +++ b/addons/project_timesheet/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/nl_NL.po b/addons/project_timesheet/i18n/nl_NL.po index c40f9e8b01e..c9e2289cab3 100644 --- a/addons/project_timesheet/i18n/nl_NL.po +++ b/addons/project_timesheet/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/pl_PL.po b/addons/project_timesheet/i18n/pl_PL.po index 748fbcebc04..781457c5f37 100644 --- a/addons/project_timesheet/i18n/pl_PL.po +++ b/addons/project_timesheet/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/project_timesheet.pot b/addons/project_timesheet/i18n/project_timesheet.pot index 7bde8f29e21..28f0e31ce31 100644 --- a/addons/project_timesheet/i18n/project_timesheet.pot +++ b/addons/project_timesheet/i18n/project_timesheet.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/pt_BR.po b/addons/project_timesheet/i18n/pt_BR.po index e3dc956e458..a9884f22077 100644 --- a/addons/project_timesheet/i18n/pt_BR.po +++ b/addons/project_timesheet/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/pt_PT.po b/addons/project_timesheet/i18n/pt_PT.po index f59b4146b96..d3c776c197a 100644 --- a/addons/project_timesheet/i18n/pt_PT.po +++ b/addons/project_timesheet/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/ro_RO.po b/addons/project_timesheet/i18n/ro_RO.po index 27f7be6942b..4374f46799c 100644 --- a/addons/project_timesheet/i18n/ro_RO.po +++ b/addons/project_timesheet/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/ru_RU.po b/addons/project_timesheet/i18n/ru_RU.po index 957d17668dc..6202cfaf9b2 100644 --- a/addons/project_timesheet/i18n/ru_RU.po +++ b/addons/project_timesheet/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/sl_SL.po b/addons/project_timesheet/i18n/sl_SL.po index b6288912ed5..cd6707e184b 100644 --- a/addons/project_timesheet/i18n/sl_SL.po +++ b/addons/project_timesheet/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/sv_SV.po b/addons/project_timesheet/i18n/sq_AL.po similarity index 81% rename from addons/project_timesheet/i18n/sv_SV.po rename to addons/project_timesheet/i18n/sq_AL.po index fc8e1994480..234c33d2564 100644 --- a/addons/project_timesheet/i18n/sv_SV.po +++ b/addons/project_timesheet/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/sv_SE.po b/addons/project_timesheet/i18n/sv_SE.po index 9ccf9942ba5..fa64762fc4f 100644 --- a/addons/project_timesheet/i18n/sv_SE.po +++ b/addons/project_timesheet/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/tr_TR.po b/addons/project_timesheet/i18n/tr_TR.po index b9c72c5fe31..fb20cbd8884 100644 --- a/addons/project_timesheet/i18n/tr_TR.po +++ b/addons/project_timesheet/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/uk_UK.po b/addons/project_timesheet/i18n/uk_UA.po similarity index 81% rename from addons/project_timesheet/i18n/uk_UK.po rename to addons/project_timesheet/i18n/uk_UA.po index 88cdcbc017f..85a562e9f35 100644 --- a/addons/project_timesheet/i18n/uk_UK.po +++ b/addons/project_timesheet/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/cs_CS.po b/addons/project_timesheet/i18n/vi_VN.po similarity index 81% rename from addons/project_timesheet/i18n/cs_CS.po rename to addons/project_timesheet/i18n/vi_VN.po index e0a5f45c767..dfa5008057e 100644 --- a/addons/project_timesheet/i18n/cs_CS.po +++ b/addons/project_timesheet/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/zh_CN.po b/addons/project_timesheet/i18n/zh_CN.po index 4ff8fea4be2..fcde91c407f 100644 --- a/addons/project_timesheet/i18n/zh_CN.po +++ b/addons/project_timesheet/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_timesheet/i18n/zh_TW.po b/addons/project_timesheet/i18n/zh_TW.po index 39dc2c96adb..538205606ed 100644 --- a/addons/project_timesheet/i18n/zh_TW.po +++ b/addons/project_timesheet/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/ar_AR.po b/addons/purchase/i18n/ar_AR.po index 08539b02e51..585768e3248 100644 --- a/addons/purchase/i18n/ar_AR.po +++ b/addons/purchase/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/bg_BG.po b/addons/purchase/i18n/bg_BG.po index 2fbd5d54265..2799a491de7 100644 --- a/addons/purchase/i18n/bg_BG.po +++ b/addons/purchase/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:42+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/bs_BS.po b/addons/purchase/i18n/bs_BS.po index 27ac634ed7a..1a6f4b0629c 100644 --- a/addons/purchase/i18n/bs_BS.po +++ b/addons/purchase/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/ca_ES.po b/addons/purchase/i18n/ca_ES.po index 5de7a8c1c59..3391544b919 100644 --- a/addons/purchase/i18n/ca_ES.po +++ b/addons/purchase/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/cs_CZ.po b/addons/purchase/i18n/cs_CZ.po index 055db7c182d..e7abee8921d 100644 --- a/addons/purchase/i18n/cs_CZ.po +++ b/addons/purchase/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/de_DE.po b/addons/purchase/i18n/de_DE.po index c1250a0d166..b84d1a24522 100644 --- a/addons/purchase/i18n/de_DE.po +++ b/addons/purchase/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/es_AR.po b/addons/purchase/i18n/es_AR.po index 50a36e7a5e4..408060508ab 100644 --- a/addons/purchase/i18n/es_AR.po +++ b/addons/purchase/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/es_ES.po b/addons/purchase/i18n/es_ES.po index 601d464c4ae..340bb3aea4f 100644 --- a/addons/purchase/i18n/es_ES.po +++ b/addons/purchase/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/et_EE.po b/addons/purchase/i18n/et_EE.po index 01f3094dc99..cd7d10e4bcb 100644 --- a/addons/purchase/i18n/et_EE.po +++ b/addons/purchase/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -158,7 +158,7 @@ msgstr "Maksud" #: model:res.request.link,name:purchase.req_link_purchase_order #: field:stock.picking,purchase_id:0 msgid "Purchase Order" -msgstr "Ostutukorraldus" +msgstr "Ostukorraldus" #. module: purchase #: rml:purchase.quotation:0 @@ -781,7 +781,7 @@ msgstr "Ostuarve" #. module: purchase #: rml:purchase.order:0 msgid "Your Order Reference" -msgstr "Sinu tellimuse viide" +msgstr "Teie korralduse viide" #. module: purchase #: rml:purchase.order:0 @@ -812,7 +812,7 @@ msgstr "Hinnapakkumised" #. module: purchase #: field:purchase.order,invoice_method:0 msgid "Invoicing Control" -msgstr "Arveldamishaldus" +msgstr "Arveldamine" #. module: purchase #: model:process.transition.action,name:purchase.process_transition_action_approvingpurchaseorder0 diff --git a/addons/purchase/i18n/fi_FI.po b/addons/purchase/i18n/fi_FI.po index dd7d21d2404..c72ee41fcb8 100644 --- a/addons/purchase/i18n/fi_FI.po +++ b/addons/purchase/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/fr_FR.po b/addons/purchase/i18n/fr_FR.po index ce81cd8db21..dddd20762b3 100644 --- a/addons/purchase/i18n/fr_FR.po +++ b/addons/purchase/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "Facturé & payé" #. module: purchase #: model:process.node,note:purchase.process_node_invoiceafterpacking0 msgid "Supplier Invoice pre-generated on receptions for control" -msgstr "Facture fournisseur pré-générée à la réception pour contrôle" +msgstr "Facture Fournisseur pré-générée à la réception pour contrôle" #. module: purchase #: field:purchase.order,location_id:0 @@ -33,17 +33,17 @@ msgstr "Destination" #. module: purchase #: selection:purchase.order,invoice_method:0 msgid "From Picking" -msgstr "Depuis une réception" +msgstr "Du Colisage" #. module: purchase #: rml:purchase.order:0 msgid "Validated By" -msgstr "Validé par" +msgstr "Validée par" #. module: purchase #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: purchase #: field:purchase.order,partner_id:0 @@ -63,17 +63,17 @@ msgstr "Quantité" #. module: purchase #: selection:purchase.order,invoice_method:0 msgid "From Order" -msgstr "Depuis une commande" +msgstr "De la Commande" #. module: purchase #: model:process.node,name:purchase.process_node_confirmpurchaseorder0 msgid "Confirmed Purchase" -msgstr "Achat confirmé" +msgstr "Achat Comfirmé" #. module: purchase #: selection:purchase.order,state:0 msgid "Invoice Exception" -msgstr "Facture en exception" +msgstr "Exception facture" #. module: purchase #: model:product.pricelist,name:purchase.list0 @@ -83,7 +83,7 @@ msgstr "Liste de prix d'achat par défaut" #. module: purchase #: model:process.transition.action,name:purchase.process_transition_action_invoicefrompurchaseorder0 msgid "Create invoice" -msgstr "Créer la facture" +msgstr "Créer une Facture" #. module: purchase #: help:res.partner,property_product_pricelist_purchase:0 @@ -98,7 +98,7 @@ msgstr "Fax :" #. module: purchase #: model:process.transition,note:purchase.process_transition_productrecept0 msgid "Create invoice from product recept" -msgstr "Créer une facture à partir du reçu du produit" +msgstr "Créer une Facture à partir du reçu du produit" #. module: purchase #: help:purchase.order,pricelist_id:0 @@ -108,7 +108,7 @@ msgstr "La liste de prix fixe la devise utilisée pour la commande d'achat. Elle #. module: purchase #: model:process.process,name:purchase.process_process_purchaseprocess0 msgid "Purchase Process" -msgstr "Processus d'achat" +msgstr "Processus d'Achat" #. module: purchase #: model:process.transition,name:purchase.process_transition_invoicefrompackinglist0 @@ -118,12 +118,12 @@ msgstr "Facture à partir de la liste de colisage" #. module: purchase #: view:purchase.order:0 msgid "Approve Purchase" -msgstr "Approuver commande d'achat" +msgstr "Approuver cde achat" #. module: purchase #: selection:purchase.order,state:0 msgid "Approved" -msgstr "Approuvée" +msgstr "Confirmé par fournisseur" #. module: purchase #: model:ir.actions.act_window,name:purchase.purchase_form_action4 @@ -163,7 +163,7 @@ msgstr "Commande d'achat" #. module: purchase #: rml:purchase.quotation:0 msgid "Regards," -msgstr "Cordialement," +msgstr "Bien à vous," #. module: purchase #: rml:purchase.order:0 @@ -173,7 +173,7 @@ msgstr "Total Net :" #. module: purchase #: selection:purchase.order,state:0 msgid "Cancelled" -msgstr "Annulée" +msgstr "Annulé" #. module: purchase #: help:purchase.order,state:0 @@ -188,7 +188,7 @@ msgstr "Origine" #. module: purchase #: model:process.node,name:purchase.process_node_packinglist0 msgid "Incoming Products" -msgstr "Produits entrant" +msgstr "Produits Entrants" #. module: purchase #: rml:purchase.order:0 @@ -199,7 +199,7 @@ msgstr "Qté" #. module: purchase #: view:purchase.order:0 msgid "Manually Corrected" -msgstr "Corrigée manuellement" +msgstr "Corrigé manuellement" #. module: purchase #: view:purchase.order:0 @@ -236,9 +236,9 @@ msgstr "Validé par" msgid "From Order: a draft invoice will be pre-generated based on the purchase order. The accountant will just have to validate this invoice for control.\n" "From Picking: a draft invoice will be pre-genearted based on validated receptions.\n" "Manual: no invoice will be pre-generated. The accountant will have to encode manually." -msgstr "Depuis une commande: une facture brouillon sera automatiquement crée sur base des commandes d'achats. La comptabilité aura juste à valider cette facture de contrôle.\n" -"Depuis une réception: Une facture brouillon sera automatiquement crée sur base des réceptions validés.\n" -"Manuelle: Aucune facture ne sera crée automatiquement. La comptabilité devra l'encoder manuellement." +msgstr "À partir de la Commande: une facture brouillon sera pré-générée basée sur les commandes d'achat. Le comptable devra simplement valider cette facture pour contrôle.\n" +"À partir du Colisage: une facture brouillon sera pré-générée basée sur les réceptions de marchandises validées.\n" +"Manuelle: aucune facture ne sera pré-générée. Le comptable devra les encoder manuellement." #. module: purchase #: model:process.node,note:purchase.process_node_packinginvoice0 @@ -258,7 +258,7 @@ msgstr "Ligne de commande" #. module: purchase #: selection:purchase.order,state:0 msgid "Confirmed" -msgstr "Confirmée" +msgstr "Visé par acheteur" #. module: purchase #: model:process.node,name:purchase.process_node_productrecept0 @@ -304,7 +304,7 @@ msgstr "Lignes de la commande" #. module: purchase #: model:process.transition,note:purchase.process_transition_confirmingpurchaseorder1 msgid "Confirm Purchase order from Request for quotation without origin" -msgstr "Confirmer la commande depuis la demande de quotation sans origine" +msgstr "Confirmer la commande d'achat à partir de la demande de devis sans origine" #. module: purchase #: rml:purchase.quotation:0 @@ -319,7 +319,7 @@ msgstr "Montant hors-taxe" #. module: purchase #: rml:purchase.quotation:0 msgid "Expected Date" -msgstr "Date prévue" +msgstr "Date d'échéance" #. module: purchase #: rml:purchase.order:0 @@ -335,12 +335,12 @@ msgstr "Liste de prix d'achat" #. module: purchase #: field:purchase.order,minimum_planned_date:0 msgid "Planned Date" -msgstr "Date planifiée" +msgstr "Date Planifiée" #. module: purchase #: view:purchase.order:0 msgid "Approved by Supplier" -msgstr "Approuvée par le fournisseur" +msgstr "Approuvé par le fournisseur" #. module: purchase #: model:ir.actions.act_window,name:purchase.act_purchase_order_2_stock_picking @@ -365,7 +365,7 @@ msgstr "Référence commande" #. module: purchase #: selection:purchase.order,state:0 msgid "Done" -msgstr "Terminée" +msgstr "Terminé" #. module: purchase #: field:purchase.order,pricelist_id:0 @@ -375,7 +375,7 @@ msgstr "Liste de prix" #. module: purchase #: model:process.node,note:purchase.process_node_purchaseorder0 msgid "When controlling invoice from orders" -msgstr "Lors du contrôle facture depuis les commandes" +msgstr "En contrôlant la facture à partir des commandes" #. module: purchase #: constraint:ir.ui.view:0 @@ -390,32 +390,32 @@ msgstr "Facture fournisseur pré-générée basée sur la commande" #. module: purchase #: model:process.transition,name:purchase.process_transition_invoicefrompurchase0 msgid "Invoice from Purchase" -msgstr "Facture depuis la commande" +msgstr "Facture à partir de l'achat" #. module: purchase #: model:process.node,note:purchase.process_node_packinglist0 msgid "Packing is created for the products reception control." -msgstr "Le colisage est crée pour le contrôle des produits en réception." +msgstr "Colis crée pour le contrôle de réception des produits" #. module: purchase #: selection:purchase.order,invoice_method:0 msgid "Manual" -msgstr "Manuelle" +msgstr "Manuel" #. module: purchase #: model:process.transition,name:purchase.process_transition_confirmingpurchaseorder1 msgid "Confirming Purchase" -msgstr "Confirmer la commande" +msgstr "Confirmer l'achat" #. module: purchase #: model:process.transition,note:purchase.process_transition_approvingpurchaseorder0 msgid "Approve Purchase order after Confirming" -msgstr "Approuver la commande d'achat après la confirmation" +msgstr "Approuver la commande d'achat après confirmation" #. module: purchase #: selection:purchase.order,state:0 msgid "Shipping Exception" -msgstr "Réception en exception" +msgstr "Exception livraison" #. module: purchase #: model:process.node,note:purchase.process_node_draftpurchaseorder1 @@ -440,17 +440,17 @@ msgstr "Encodez une adresse si vous voulez livrer directement du fournisseur au #. module: purchase #: rml:purchase.quotation:0 msgid "Request for Quotation :" -msgstr "Demande de cotation :" +msgstr "Demande de Devis" #. module: purchase #: model:process.transition,note:purchase.process_transition_confirmingpurchaseorder0 msgid "Confirm Purchase order from Request for quotation" -msgstr "Confirmer la commande depuis la demande de cotation" +msgstr "Confirmer la commande d'achat à partir de la demande de devis" #. module: purchase #: view:purchase.order:0 msgid "Confirm Purchase Order" -msgstr "Confirmer la commande" +msgstr "Confirmer cde fourn." #. module: purchase #: help:purchase.order,picking_ids:0 @@ -497,7 +497,7 @@ msgstr "Vue calendrier" #. module: purchase #: view:purchase.order:0 msgid "Set to Draft" -msgstr "Mettre en brouillon" +msgstr "Mettre en Brouillon" #. module: purchase #: model:process.node,note:purchase.process_node_approvepurchaseorder0 @@ -518,12 +518,12 @@ msgstr "Commande fournisseur" #. module: purchase #: model:process.node,note:purchase.process_node_draftpurchaseorder0 msgid "Request for quotation is proposed by the system." -msgstr "Une demande de cotation est proposé par le système" +msgstr "Une demande de devis est proposée par le système." #. module: purchase #: model:process.transition,name:purchase.process_transition_packinginvoice0 msgid "Packing Invoice" -msgstr "Facture de colisage" +msgstr "Facture de Colisage" #. module: purchase #: model:process.transition,note:purchase.process_transition_invoicefrompackinglist0 @@ -533,7 +533,7 @@ msgstr "Créer la facture à partir de la liste de colisage" #. module: purchase #: help:purchase.order,date_order:0 msgid "Date on which this document has been created." -msgstr "Date à laquelle le document à été crée." +msgstr "" #. module: purchase #: view:purchase.order:0 @@ -543,7 +543,7 @@ msgstr "Livraisons & Factures" #. module: purchase #: field:purchase.order,date_order:0 msgid "Date" -msgstr "Date" +msgstr "" #. module: purchase #: help:purchase.order,origin:0 @@ -568,7 +568,7 @@ msgstr "Date prévue" #. module: purchase #: rml:purchase.order:0 msgid "Our Order Reference" -msgstr "Notre référence de commande" +msgstr "Notre Référence de Commande" #. module: purchase #: rml:purchase.quotation:0 @@ -588,7 +588,7 @@ msgstr "Vous ne pouvez pas avoir 2 versions de liste de prix qui se chevauchent #. module: purchase #: view:purchase.order:0 msgid "Cancel Purchase Order" -msgstr "Annuler la commande" +msgstr "Annuler cde fourn." #. module: purchase #: model:process.transition,name:purchase.process_transition_createpackinglist0 @@ -608,7 +608,7 @@ msgstr "Lorsque la commande d'achat est approuvée, la liste de colisage est cr #. module: purchase #: view:purchase.order.line:0 msgid "History" -msgstr "Historique" +msgstr "" #. module: purchase #: field:purchase.order,state:0 @@ -623,7 +623,7 @@ msgstr "Sous-total" #. module: purchase #: model:product.pricelist.version,name:purchase.ver0 msgid "Default Purchase Pricelist Version" -msgstr "Version par défaut de la liste de prix d'achat" +msgstr "Version par Défaut de la liste de Prix d'Achat" #. module: purchase #: rml:purchase.order:0 @@ -639,7 +639,7 @@ msgstr "Position Fiscale" #. module: purchase #: rml:purchase.order:0 msgid "Request for Quotation N°" -msgstr "Demande de cotation N°" +msgstr "" #. module: purchase #: field:purchase.order,invoice_id:0 @@ -656,7 +656,7 @@ msgstr "Annuler" #. module: purchase #: view:res.partner:0 msgid "Purchases Properties" -msgstr "Propriétés d'achat" +msgstr "Propriétés d'Achat" #. module: purchase #: field:purchase.order.line,order_id:0 @@ -696,12 +696,12 @@ msgstr "Reçu" #: model:ir.actions.report.xml,name:purchase.report_purchase_quotation #: selection:purchase.order,state:0 msgid "Request for Quotation" -msgstr "Demande de cotation" +msgstr "Demande de devis" #. module: purchase #: model:process.node,name:purchase.process_node_packinginvoice0 msgid "Out Packing" -msgstr "Colisage sortant" +msgstr "Colisage Sortant" #. module: purchase #: model:process.node,note:purchase.process_node_productrecept0 @@ -711,7 +711,7 @@ msgstr "Contrôle des factures à la réception" #. module: purchase #: rml:purchase.order:0 msgid "Date Req." -msgstr "Date de demande." +msgstr "Date prévue" #. module: purchase #: field:purchase.order,date_approve:0 @@ -722,8 +722,8 @@ msgstr "Date approbation" #: model:ir.module.module,description:purchase.module_meta_information msgid "Module for purchase management\n" " Request for quotation, Create Supplier Invoice, Print Order..." -msgstr "Module de gestion des achats\n" -" Demande de cotation, Créer les factures fournisseurs pour contrôle, imprimer les demandes" +msgstr "Module de gestion des achat\n" +" Demande de Devis, Factures Fournisseurs, Impression des Commandes, ..." #. module: purchase #: field:purchase.order.line,product_id:0 @@ -740,12 +740,12 @@ msgstr "Description" #. module: purchase #: model:process.transition,name:purchase.process_transition_productrecept0 msgid "Product recept invoice" -msgstr "Facture de réception du Produit" +msgstr "Facture de Réception du Produit" #. module: purchase #: rml:purchase.quotation:0 msgid "Expected Delivery address:" -msgstr "Adresse de livraison attendue :" +msgstr "Adresse de Livraison Attendue :" #. module: purchase #: model:ir.actions.act_window,name:purchase.purchase_form_action3 @@ -756,17 +756,17 @@ msgstr "Commande d'achat en attente d'approbation" #. module: purchase #: model:process.transition,name:purchase.process_transition_confirmingpurchaseorder0 msgid "Confirming Purchase Order" -msgstr "Confirmer la commande d'achat" +msgstr "Confirmer la Commande d'Achat" #. module: purchase #: field:purchase.order.line,product_uom:0 msgid "Product UOM" -msgstr "UdM du produit" +msgstr "UdM produit" #. module: purchase #: field:purchase.order.line,move_ids:0 msgid "Reservation" -msgstr "Réservation" +msgstr "" #. module: purchase #: model:process.node,note:purchase.process_node_confirmpurchaseorder0 @@ -776,17 +776,17 @@ msgstr "La commande d'achat est confirmée par l'utilisateur." #. module: purchase #: model:process.transition,name:purchase.process_transition_purchaseinvoice0 msgid "Purchase Invoice" -msgstr "Facture d'achat" +msgstr "Facture d'Achat" #. module: purchase #: rml:purchase.order:0 msgid "Your Order Reference" -msgstr "Votre référence de commande" +msgstr "Votre Référence Commande" #. module: purchase #: rml:purchase.order:0 msgid "Purchase Order Confirmation N°" -msgstr "Confirmation de commande N°" +msgstr "" #. module: purchase #: view:purchase.order:0 @@ -822,7 +822,7 @@ msgstr "Approuver" #. module: purchase #: model:process.node,name:purchase.process_node_approvepurchaseorder0 msgid "Approved Purchase" -msgstr "Commande approuvée" +msgstr "Achat approuvé" #. module: purchase #: model:process.transition,note:purchase.process_transition_packinginvoice0 @@ -842,7 +842,7 @@ msgstr "Êtes-vous sûr de vouloir fusionner ces commandes ?" #. module: purchase #: model:process.transition,name:purchase.process_transition_approvingpurchaseorder0 msgid "Approving Purchase Order" -msgstr "Approuver la commande d'achat" +msgstr "Approuver la Commande d'Achat" #. module: purchase #: model:process.transition,note:purchase.process_transition_invoicefrompurchase0 @@ -852,5 +852,5 @@ msgstr "Après que la commande d'achat ait été approuvée, elle se retrouve da #. module: purchase #: view:purchase.order.line:0 msgid "Stock Moves" -msgstr "Mouvements de stock" +msgstr "" diff --git a/addons/purchase/i18n/hr_HR.po b/addons/purchase/i18n/hr_HR.po index 2572b19e32d..4bf765e92c5 100644 --- a/addons/purchase/i18n/hr_HR.po +++ b/addons/purchase/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/hu_HU.po b/addons/purchase/i18n/hu_HU.po index ea048fb8dc9..f309b0aef52 100644 --- a/addons/purchase/i18n/hu_HU.po +++ b/addons/purchase/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/id_ID.po b/addons/purchase/i18n/id_ID.po index 7ea80fda5fc..cbbf3b86072 100644 --- a/addons/purchase/i18n/id_ID.po +++ b/addons/purchase/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/it_IT.po b/addons/purchase/i18n/it_IT.po index e451d21c4f1..ee2af9686cd 100644 --- a/addons/purchase/i18n/it_IT.po +++ b/addons/purchase/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/lt_LT.po b/addons/purchase/i18n/lt_LT.po index 37caebf213c..65b3a1d1f38 100644 --- a/addons/purchase/i18n/lt_LT.po +++ b/addons/purchase/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:28+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/nl_BE.po b/addons/purchase/i18n/nl_BE.po index 1db5ea7bfbc..f600778308b 100644 --- a/addons/purchase/i18n/nl_BE.po +++ b/addons/purchase/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/nl_NL.po b/addons/purchase/i18n/nl_NL.po index 1c0f3b3c7ab..15a27820e36 100644 --- a/addons/purchase/i18n/nl_NL.po +++ b/addons/purchase/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/pl_PL.po b/addons/purchase/i18n/pl_PL.po index 8d39987106a..2247c84f4d1 100644 --- a/addons/purchase/i18n/pl_PL.po +++ b/addons/purchase/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/pt_BR.po b/addons/purchase/i18n/pt_BR.po index 816de2aefdf..61708013128 100644 --- a/addons/purchase/i18n/pt_BR.po +++ b/addons/purchase/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/pt_PT.po b/addons/purchase/i18n/pt_PT.po index b593aa243ee..a8b5416a15f 100644 --- a/addons/purchase/i18n/pt_PT.po +++ b/addons/purchase/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+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 b1239295043..77a97d4c98a 100644 --- a/addons/purchase/i18n/purchase.pot +++ b/addons/purchase/i18n/purchase.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/ro_RO.po b/addons/purchase/i18n/ro_RO.po index 33c6cdb9267..6cbc7fd8c2c 100644 --- a/addons/purchase/i18n/ro_RO.po +++ b/addons/purchase/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/ru_RU.po b/addons/purchase/i18n/ru_RU.po index c739d647bd5..7e5b564b02d 100644 --- a/addons/purchase/i18n/ru_RU.po +++ b/addons/purchase/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/sl_SL.po b/addons/purchase/i18n/sl_SL.po index 9e363f07c31..21a9ff38164 100644 --- a/addons/purchase/i18n/sl_SL.po +++ b/addons/purchase/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/cs_CS.po b/addons/purchase/i18n/sq_AL.po similarity index 98% rename from addons/purchase/i18n/cs_CS.po rename to addons/purchase/i18n/sq_AL.po index 913181617a1..fcefee6ff88 100644 --- a/addons/purchase/i18n/cs_CS.po +++ b/addons/purchase/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -649,7 +649,7 @@ msgstr "" #: model:process.transition.action,name:purchase.process_transition_action_cancelpurchaseorder0 #: wizard_button:purchase.order.merge,init,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: purchase #: view:res.partner:0 @@ -671,7 +671,7 @@ msgstr "" #: wizard_view:purchase.order.merge,init:0 #: wizard_button:purchase.order.merge,init,merge:0 msgid "Merge orders" -msgstr "Sloučit objednávky(Merge orders)" +msgstr "" #. module: purchase #: constraint:ir.model:0 @@ -834,7 +834,7 @@ msgstr "" #. module: purchase #: wizard_view:purchase.order.merge,init:0 msgid "Are you sure you want to merge these orders ?" -msgstr "Opravdu chcete tyto obejdnávky sloučit?(Are you sure you want to merge these orders ?)" +msgstr "" #. module: purchase #: model:process.transition,name:purchase.process_transition_approvingpurchaseorder0 diff --git a/addons/purchase/i18n/sv_SE.po b/addons/purchase/i18n/sv_SE.po index 06877a00c2e..6188ada0751 100644 --- a/addons/purchase/i18n/sv_SE.po +++ b/addons/purchase/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/tr_TR.po b/addons/purchase/i18n/tr_TR.po index 15b2b2dcadb..317d837634b 100644 --- a/addons/purchase/i18n/tr_TR.po +++ b/addons/purchase/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/uk_UK.po b/addons/purchase/i18n/uk_UA.po similarity index 99% rename from addons/purchase/i18n/uk_UK.po rename to addons/purchase/i18n/uk_UA.po index 0aa0291304f..81040390e9b 100644 --- a/addons/purchase/i18n/uk_UK.po +++ b/addons/purchase/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/sv_SV.po b/addons/purchase/i18n/vi_VN.po similarity index 97% rename from addons/purchase/i18n/sv_SV.po rename to addons/purchase/i18n/vi_VN.po index 352aacb885c..7b575465590 100644 --- a/addons/purchase/i18n/sv_SV.po +++ b/addons/purchase/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: purchase #: field:purchase.order,invoiced:0 msgid "Invoiced & Paid" -msgstr "Fakturerad & betald" +msgstr "" #. module: purchase #: model:process.node,note:purchase.process_node_invoiceafterpacking0 @@ -58,7 +58,7 @@ msgstr "" #. module: purchase #: field:purchase.order.line,product_qty:0 msgid "Quantity" -msgstr "Kvantitet" +msgstr "" #. module: purchase #: selection:purchase.order,invoice_method:0 @@ -142,7 +142,7 @@ msgstr "" #: view:purchase.order.line:0 #: field:purchase.order.line,notes:0 msgid "Notes" -msgstr "Anteckningar" +msgstr "" #. module: purchase #: rml:purchase.order:0 @@ -183,7 +183,7 @@ msgstr "" #. module: purchase #: field:purchase.order,origin:0 msgid "Origin" -msgstr "Ursprung" +msgstr "" #. module: purchase #: model:process.node,name:purchase.process_node_packinglist0 @@ -229,7 +229,7 @@ msgstr "" #. module: purchase #: field:purchase.order,validator:0 msgid "Validated by" -msgstr "Validerad av" +msgstr "" #. module: purchase #: help:purchase.order,invoice_method:0 @@ -282,7 +282,7 @@ msgstr "" #. module: purchase #: selection:purchase.order,state:0 msgid "Waiting" -msgstr "Väntar" +msgstr "" #. module: purchase #: field:purchase.order,picking_ids:0 @@ -292,7 +292,7 @@ msgstr "" #. module: purchase #: field:purchase.order,warehouse_id:0 msgid "Warehouse" -msgstr "Lagerhus" +msgstr "" #. module: purchase #: field:purchase.order,order_line:0 @@ -368,7 +368,7 @@ msgstr "" #. module: purchase #: field:purchase.order,pricelist_id:0 msgid "Pricelist" -msgstr "Prislista" +msgstr "" #. module: purchase #: model:process.node,note:purchase.process_node_purchaseorder0 @@ -459,7 +459,7 @@ msgstr "" #: model:ir.module.module,shortdesc:purchase.module_meta_information #: model:ir.ui.menu,name:purchase.menu_purchase_root msgid "Purchase Management" -msgstr "Inköpshantering" +msgstr "" #. module: purchase #: field:purchase.order,partner_ref:0 @@ -642,7 +642,7 @@ msgstr "" #. module: purchase #: field:purchase.order,invoice_id:0 msgid "Invoice" -msgstr "Faktura" +msgstr "" #. module: purchase #: model:process.transition.action,name:purchase.process_transition_action_approvingcancelpurchaseorder0 @@ -676,7 +676,7 @@ msgstr "" #. module: purchase #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: purchase #: model:ir.actions.act_window,name:purchase.purchase_form_action_new @@ -688,7 +688,7 @@ msgstr "" #: field:purchase.order,shipped:0 #: field:purchase.order,shipped_rate:0 msgid "Received" -msgstr "Mottagen" +msgstr "" #. module: purchase #: model:ir.actions.report.xml,name:purchase.report_purchase_quotation @@ -714,7 +714,7 @@ msgstr "" #. module: purchase #: field:purchase.order,date_approve:0 msgid "Date Approved" -msgstr "Datum godkänd" +msgstr "" #. module: purchase #: model:ir.module.module,description:purchase.module_meta_information @@ -732,7 +732,7 @@ msgstr "" #: field:purchase.order.line,name:0 #: rml:purchase.quotation:0 msgid "Description" -msgstr "Beskrivning" +msgstr "" #. module: purchase #: model:process.transition,name:purchase.process_transition_productrecept0 @@ -793,7 +793,7 @@ msgstr "" #. module: purchase #: rml:purchase.order:0 msgid "Date Ordered" -msgstr "Datum beställd" +msgstr "" #. module: purchase #: view:purchase.order:0 diff --git a/addons/purchase/i18n/zh_CN.po b/addons/purchase/i18n/zh_CN.po index 7c14acd90bb..7d3fd4fea49 100644 --- a/addons/purchase/i18n/zh_CN.po +++ b/addons/purchase/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/zh_TW.po b/addons/purchase/i18n/zh_TW.po index 6b9e8b762c6..783756119c2 100644 --- a/addons/purchase/i18n/zh_TW.po +++ b/addons/purchase/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/ar_AR.po b/addons/purchase_analytic_plans/i18n/ar_AR.po index e5852f45104..e1a2012f262 100644 --- a/addons/purchase_analytic_plans/i18n/ar_AR.po +++ b/addons/purchase_analytic_plans/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/bg_BG.po b/addons/purchase_analytic_plans/i18n/bg_BG.po index 07b88c27d78..9b1e2b7edf6 100644 --- a/addons/purchase_analytic_plans/i18n/bg_BG.po +++ b/addons/purchase_analytic_plans/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/bs_BS.po b/addons/purchase_analytic_plans/i18n/bs_BS.po index 11e09ffa369..49b12b9ec68 100644 --- a/addons/purchase_analytic_plans/i18n/bs_BS.po +++ b/addons/purchase_analytic_plans/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/ca_ES.po b/addons/purchase_analytic_plans/i18n/ca_ES.po index bedaeb0c08f..c1cca9c9e86 100644 --- a/addons/purchase_analytic_plans/i18n/ca_ES.po +++ b/addons/purchase_analytic_plans/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/cs_CZ.po b/addons/purchase_analytic_plans/i18n/cs_CZ.po index 17cd680dbcd..9183155a2df 100644 --- a/addons/purchase_analytic_plans/i18n/cs_CZ.po +++ b/addons/purchase_analytic_plans/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/de_DE.po b/addons/purchase_analytic_plans/i18n/de_DE.po index 27fd23f9acb..13446d9c151 100644 --- a/addons/purchase_analytic_plans/i18n/de_DE.po +++ b/addons/purchase_analytic_plans/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/es_AR.po b/addons/purchase_analytic_plans/i18n/es_AR.po index ba9f8503c69..5da77d19cb5 100644 --- a/addons/purchase_analytic_plans/i18n/es_AR.po +++ b/addons/purchase_analytic_plans/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/es_ES.po b/addons/purchase_analytic_plans/i18n/es_ES.po index 41f170ac879..e7e02528592 100644 --- a/addons/purchase_analytic_plans/i18n/es_ES.po +++ b/addons/purchase_analytic_plans/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/et_EE.po b/addons/purchase_analytic_plans/i18n/et_EE.po index 8531664f2bd..67dc1b8e3af 100644 --- a/addons/purchase_analytic_plans/i18n/et_EE.po +++ b/addons/purchase_analytic_plans/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/fi_FI.po b/addons/purchase_analytic_plans/i18n/fi_FI.po index 653090a4c27..9cdb80c723e 100644 --- a/addons/purchase_analytic_plans/i18n/fi_FI.po +++ b/addons/purchase_analytic_plans/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/fr_FR.po b/addons/purchase_analytic_plans/i18n/fr_FR.po index 65776bc0f48..4775626d63c 100644 --- a/addons/purchase_analytic_plans/i18n/fr_FR.po +++ b/addons/purchase_analytic_plans/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/hr_HR.po b/addons/purchase_analytic_plans/i18n/hr_HR.po index d7b76cfd86d..44710661ce3 100644 --- a/addons/purchase_analytic_plans/i18n/hr_HR.po +++ b/addons/purchase_analytic_plans/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/hu_HU.po b/addons/purchase_analytic_plans/i18n/hu_HU.po index 7896e6973ce..9c3f117d060 100644 --- a/addons/purchase_analytic_plans/i18n/hu_HU.po +++ b/addons/purchase_analytic_plans/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/id_ID.po b/addons/purchase_analytic_plans/i18n/id_ID.po index f07f6bfbde2..953315f6efc 100644 --- a/addons/purchase_analytic_plans/i18n/id_ID.po +++ b/addons/purchase_analytic_plans/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/it_IT.po b/addons/purchase_analytic_plans/i18n/it_IT.po index 0cd47ea2dc8..56f9efff1c8 100644 --- a/addons/purchase_analytic_plans/i18n/it_IT.po +++ b/addons/purchase_analytic_plans/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/lt_LT.po b/addons/purchase_analytic_plans/i18n/lt_LT.po index 5eead871504..411fc389610 100644 --- a/addons/purchase_analytic_plans/i18n/lt_LT.po +++ b/addons/purchase_analytic_plans/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/nl_BE.po b/addons/purchase_analytic_plans/i18n/nl_BE.po index 1a0294ed0dd..c8b63a5a628 100644 --- a/addons/purchase_analytic_plans/i18n/nl_BE.po +++ b/addons/purchase_analytic_plans/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/nl_NL.po b/addons/purchase_analytic_plans/i18n/nl_NL.po index e3e94faa310..779a2188cca 100644 --- a/addons/purchase_analytic_plans/i18n/nl_NL.po +++ b/addons/purchase_analytic_plans/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/pl_PL.po b/addons/purchase_analytic_plans/i18n/pl_PL.po index eba8203ad0d..70458a9957f 100644 --- a/addons/purchase_analytic_plans/i18n/pl_PL.po +++ b/addons/purchase_analytic_plans/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/pt_BR.po b/addons/purchase_analytic_plans/i18n/pt_BR.po index c725002a78b..b319380446c 100644 --- a/addons/purchase_analytic_plans/i18n/pt_BR.po +++ b/addons/purchase_analytic_plans/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/pt_PT.po b/addons/purchase_analytic_plans/i18n/pt_PT.po index 60c3c8b85b5..49d7bf82103 100644 --- a/addons/purchase_analytic_plans/i18n/pt_PT.po +++ b/addons/purchase_analytic_plans/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot b/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot index db4f8ae151c..af0ea80d984 100644 --- a/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot +++ b/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/ro_RO.po b/addons/purchase_analytic_plans/i18n/ro_RO.po index e004cb728ac..f62bd734259 100644 --- a/addons/purchase_analytic_plans/i18n/ro_RO.po +++ b/addons/purchase_analytic_plans/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/ru_RU.po b/addons/purchase_analytic_plans/i18n/ru_RU.po index 59e66eb70c8..1fccaa98ce8 100644 --- a/addons/purchase_analytic_plans/i18n/ru_RU.po +++ b/addons/purchase_analytic_plans/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/sl_SL.po b/addons/purchase_analytic_plans/i18n/sl_SL.po index 118ae68aca4..9e206f855c6 100644 --- a/addons/purchase_analytic_plans/i18n/sl_SL.po +++ b/addons/purchase_analytic_plans/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/sv_SV.po b/addons/purchase_analytic_plans/i18n/sq_AL.po similarity index 84% rename from addons/purchase_analytic_plans/i18n/sv_SV.po rename to addons/purchase_analytic_plans/i18n/sq_AL.po index f4607fb8e72..dea25f56144 100644 --- a/addons/purchase_analytic_plans/i18n/sv_SV.po +++ b/addons/purchase_analytic_plans/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/sv_SE.po b/addons/purchase_analytic_plans/i18n/sv_SE.po index 2943ef8cf30..fc93dd825e5 100644 --- a/addons/purchase_analytic_plans/i18n/sv_SE.po +++ b/addons/purchase_analytic_plans/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/tr_TR.po b/addons/purchase_analytic_plans/i18n/tr_TR.po index 5208d89dd82..1405fa189b1 100644 --- a/addons/purchase_analytic_plans/i18n/tr_TR.po +++ b/addons/purchase_analytic_plans/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/uk_UK.po b/addons/purchase_analytic_plans/i18n/uk_UA.po similarity index 85% rename from addons/purchase_analytic_plans/i18n/uk_UK.po rename to addons/purchase_analytic_plans/i18n/uk_UA.po index 98fb248f9a3..a850ce3c726 100644 --- a/addons/purchase_analytic_plans/i18n/uk_UK.po +++ b/addons/purchase_analytic_plans/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/ur_UR.po b/addons/purchase_analytic_plans/i18n/ur_UR.po index 01c542a130b..5bc1feafa2f 100644 --- a/addons/purchase_analytic_plans/i18n/ur_UR.po +++ b/addons/purchase_analytic_plans/i18n/ur_UR.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:04+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/cs_CS.po b/addons/purchase_analytic_plans/i18n/vi_VN.po similarity index 84% rename from addons/purchase_analytic_plans/i18n/cs_CS.po rename to addons/purchase_analytic_plans/i18n/vi_VN.po index c018d2bf364..d078c7800e2 100644 --- a/addons/purchase_analytic_plans/i18n/cs_CS.po +++ b/addons/purchase_analytic_plans/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/zh_CN.po b/addons/purchase_analytic_plans/i18n/zh_CN.po index c81b428063b..ad5cac6acc7 100644 --- a/addons/purchase_analytic_plans/i18n/zh_CN.po +++ b/addons/purchase_analytic_plans/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase_analytic_plans/i18n/zh_TW.po b/addons/purchase_analytic_plans/i18n/zh_TW.po index 27304aa20a9..4738fbdee55 100644 --- a/addons/purchase_analytic_plans/i18n/zh_TW.po +++ b/addons/purchase_analytic_plans/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/ar_AR.po b/addons/report_account/i18n/ar_AR.po index c494d6e3f34..da393ea5a4a 100644 --- a/addons/report_account/i18n/ar_AR.po +++ b/addons/report_account/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/bg_BG.po b/addons/report_account/i18n/bg_BG.po index ba109338d32..3443ead8d01 100644 --- a/addons/report_account/i18n/bg_BG.po +++ b/addons/report_account/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/bs_BS.po b/addons/report_account/i18n/bs_BS.po index f5a12b9aa4a..b01d2c433f5 100644 --- a/addons/report_account/i18n/bs_BS.po +++ b/addons/report_account/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/ca_ES.po b/addons/report_account/i18n/ca_ES.po index 933bfeb5cbe..cd371cef828 100644 --- a/addons/report_account/i18n/ca_ES.po +++ b/addons/report_account/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/cs_CZ.po b/addons/report_account/i18n/cs_CZ.po index ddee1e8638f..58ed9f891ad 100644 --- a/addons/report_account/i18n/cs_CZ.po +++ b/addons/report_account/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/de_DE.po b/addons/report_account/i18n/de_DE.po index e5bfb71c4d3..b096c9848ab 100644 --- a/addons/report_account/i18n/de_DE.po +++ b/addons/report_account/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/es_AR.po b/addons/report_account/i18n/es_AR.po index 5b96a82c11f..439a215635a 100644 --- a/addons/report_account/i18n/es_AR.po +++ b/addons/report_account/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/es_ES.po b/addons/report_account/i18n/es_ES.po index e12f8767575..5227e5f2e11 100644 --- a/addons/report_account/i18n/es_ES.po +++ b/addons/report_account/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/et_EE.po b/addons/report_account/i18n/et_EE.po index f83a453e50a..aed35339e38 100644 --- a/addons/report_account/i18n/et_EE.po +++ b/addons/report_account/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/fi_FI.po b/addons/report_account/i18n/fi_FI.po index dc430065e94..91f2f0fb2ae 100644 --- a/addons/report_account/i18n/fi_FI.po +++ b/addons/report_account/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/fr_FR.po b/addons/report_account/i18n/fr_FR.po index 574a2c79ba8..207c2fb6e60 100644 --- a/addons/report_account/i18n/fr_FR.po +++ b/addons/report_account/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -63,7 +63,7 @@ msgstr "" #. module: report_account #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_account #: field:report.account.receivable,debit:0 diff --git a/addons/report_account/i18n/hr_HR.po b/addons/report_account/i18n/hr_HR.po index 7cbafaee098..8620a439172 100644 --- a/addons/report_account/i18n/hr_HR.po +++ b/addons/report_account/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/hu_HU.po b/addons/report_account/i18n/hu_HU.po index 725afddca70..b9c051a96b4 100644 --- a/addons/report_account/i18n/hu_HU.po +++ b/addons/report_account/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/id_ID.po b/addons/report_account/i18n/id_ID.po index 283671d88bf..effff967e9c 100644 --- a/addons/report_account/i18n/id_ID.po +++ b/addons/report_account/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/it_IT.po b/addons/report_account/i18n/it_IT.po index fa4d5b3585a..efd4872fc9d 100644 --- a/addons/report_account/i18n/it_IT.po +++ b/addons/report_account/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/lt_LT.po b/addons/report_account/i18n/lt_LT.po index 030261810ab..f0e468f946f 100644 --- a/addons/report_account/i18n/lt_LT.po +++ b/addons/report_account/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/nl_BE.po b/addons/report_account/i18n/nl_BE.po index 35fda593ad9..90dea891936 100644 --- a/addons/report_account/i18n/nl_BE.po +++ b/addons/report_account/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/nl_NL.po b/addons/report_account/i18n/nl_NL.po index 9ce2075f84d..5f9cbee7c8a 100644 --- a/addons/report_account/i18n/nl_NL.po +++ b/addons/report_account/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/pl_PL.po b/addons/report_account/i18n/pl_PL.po index f94b3f7f23e..c4ea942a97f 100644 --- a/addons/report_account/i18n/pl_PL.po +++ b/addons/report_account/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/pt_BR.po b/addons/report_account/i18n/pt_BR.po index d0e8387660b..0c9d6a746d6 100644 --- a/addons/report_account/i18n/pt_BR.po +++ b/addons/report_account/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/pt_PT.po b/addons/report_account/i18n/pt_PT.po index dcf6f9c1614..8509608d116 100644 --- a/addons/report_account/i18n/pt_PT.po +++ b/addons/report_account/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+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 587edcc679a..46731bcec64 100644 --- a/addons/report_account/i18n/report_account.pot +++ b/addons/report_account/i18n/report_account.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/ro_RO.po b/addons/report_account/i18n/ro_RO.po index 20efe912997..73a2fcfcf9f 100644 --- a/addons/report_account/i18n/ro_RO.po +++ b/addons/report_account/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/ru_RU.po b/addons/report_account/i18n/ru_RU.po index 5c2516db7ea..df8f9fc4035 100644 --- a/addons/report_account/i18n/ru_RU.po +++ b/addons/report_account/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/sl_SL.po b/addons/report_account/i18n/sl_SL.po index db7b4d1fdeb..27d0d19a31f 100644 --- a/addons/report_account/i18n/sl_SL.po +++ b/addons/report_account/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/cs_CS.po b/addons/report_account/i18n/sq_AL.po similarity index 97% rename from addons/report_account/i18n/cs_CS.po rename to addons/report_account/i18n/sq_AL.po index d26f4295771..3825df74325 100644 --- a/addons/report_account/i18n/cs_CS.po +++ b/addons/report_account/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/sv_SE.po b/addons/report_account/i18n/sv_SE.po index 2c2dbc2c718..4786685ff23 100644 --- a/addons/report_account/i18n/sv_SE.po +++ b/addons/report_account/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/tr_TR.po b/addons/report_account/i18n/tr_TR.po index b96be21045d..7ba5c11d03e 100644 --- a/addons/report_account/i18n/tr_TR.po +++ b/addons/report_account/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/uk_UK.po b/addons/report_account/i18n/uk_UA.po similarity index 97% rename from addons/report_account/i18n/uk_UK.po rename to addons/report_account/i18n/uk_UA.po index 095d7cb031c..62e9537a46d 100644 --- a/addons/report_account/i18n/uk_UK.po +++ b/addons/report_account/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/sv_SV.po b/addons/report_account/i18n/vi_VN.po similarity index 95% rename from addons/report_account/i18n/sv_SV.po rename to addons/report_account/i18n/vi_VN.po index bb1453cfba1..87cdba797a8 100644 --- a/addons/report_account/i18n/sv_SV.po +++ b/addons/report_account/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: report_account #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_account #: field:report.aged.receivable,name:0 diff --git a/addons/report_account/i18n/zh_CN.po b/addons/report_account/i18n/zh_CN.po index 0607b3497c3..51ce5f03b9e 100644 --- a/addons/report_account/i18n/zh_CN.po +++ b/addons/report_account/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/zh_TW.po b/addons/report_account/i18n/zh_TW.po index 6a64803e10e..46c503dcaf8 100644 --- a/addons/report_account/i18n/zh_TW.po +++ b/addons/report_account/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/ar_AR.po b/addons/report_analytic/i18n/ar_AR.po index 93df3f7843a..ae19ef15451 100644 --- a/addons/report_analytic/i18n/ar_AR.po +++ b/addons/report_analytic/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/bg_BG.po b/addons/report_analytic/i18n/bg_BG.po index ab93f8c3cb1..d99ec873721 100644 --- a/addons/report_analytic/i18n/bg_BG.po +++ b/addons/report_analytic/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/bs_BS.po b/addons/report_analytic/i18n/bs_BS.po index 910914f8f74..9a173d8c23f 100644 --- a/addons/report_analytic/i18n/bs_BS.po +++ b/addons/report_analytic/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/ca_ES.po b/addons/report_analytic/i18n/ca_ES.po index 842b30a3b9c..e3ceee2142a 100644 --- a/addons/report_analytic/i18n/ca_ES.po +++ b/addons/report_analytic/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/cs_CZ.po b/addons/report_analytic/i18n/cs_CZ.po index 679d359c036..b60a56582fc 100644 --- a/addons/report_analytic/i18n/cs_CZ.po +++ b/addons/report_analytic/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/de_DE.po b/addons/report_analytic/i18n/de_DE.po index 019e1910bba..9f481a0bddd 100644 --- a/addons/report_analytic/i18n/de_DE.po +++ b/addons/report_analytic/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/es_AR.po b/addons/report_analytic/i18n/es_AR.po index 026d52bea07..65c55081e98 100644 --- a/addons/report_analytic/i18n/es_AR.po +++ b/addons/report_analytic/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/es_ES.po b/addons/report_analytic/i18n/es_ES.po index 3337f5437aa..bc05613dbe3 100644 --- a/addons/report_analytic/i18n/es_ES.po +++ b/addons/report_analytic/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/et_EE.po b/addons/report_analytic/i18n/et_EE.po index 0bfe7a716f9..53948b7154b 100644 --- a/addons/report_analytic/i18n/et_EE.po +++ b/addons/report_analytic/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/fi_FI.po b/addons/report_analytic/i18n/fi_FI.po index 7bb795817f9..755d7c30b59 100644 --- a/addons/report_analytic/i18n/fi_FI.po +++ b/addons/report_analytic/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/fr_FR.po b/addons/report_analytic/i18n/fr_FR.po index 3b9542c2050..a1069a6293f 100644 --- a/addons/report_analytic/i18n/fr_FR.po +++ b/addons/report_analytic/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Echéance" #. module: report_analytic #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_analytic #: model:ir.module.module,shortdesc:report_analytic.module_meta_information diff --git a/addons/report_analytic/i18n/hr_HR.po b/addons/report_analytic/i18n/hr_HR.po index f0605959c3c..cd6046e5a0a 100644 --- a/addons/report_analytic/i18n/hr_HR.po +++ b/addons/report_analytic/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/hu_HU.po b/addons/report_analytic/i18n/hu_HU.po index 7dee242508c..6f4445c550a 100644 --- a/addons/report_analytic/i18n/hu_HU.po +++ b/addons/report_analytic/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/id_ID.po b/addons/report_analytic/i18n/id_ID.po index dcbed259922..3b393031b5c 100644 --- a/addons/report_analytic/i18n/id_ID.po +++ b/addons/report_analytic/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/it_IT.po b/addons/report_analytic/i18n/it_IT.po index e87f9d85da3..14c7629ec25 100644 --- a/addons/report_analytic/i18n/it_IT.po +++ b/addons/report_analytic/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/lt_LT.po b/addons/report_analytic/i18n/lt_LT.po index 4f4227dcce6..86de6643051 100644 --- a/addons/report_analytic/i18n/lt_LT.po +++ b/addons/report_analytic/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/nl_BE.po b/addons/report_analytic/i18n/nl_BE.po index 531a869930e..b90f5c545e9 100644 --- a/addons/report_analytic/i18n/nl_BE.po +++ b/addons/report_analytic/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/nl_NL.po b/addons/report_analytic/i18n/nl_NL.po index ed0f83de108..c81ffbc8a0c 100644 --- a/addons/report_analytic/i18n/nl_NL.po +++ b/addons/report_analytic/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/pl_PL.po b/addons/report_analytic/i18n/pl_PL.po index 47b55039b24..6fb1a0a5b79 100644 --- a/addons/report_analytic/i18n/pl_PL.po +++ b/addons/report_analytic/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/pt_BR.po b/addons/report_analytic/i18n/pt_BR.po index 351adf334f4..2113ef3333e 100644 --- a/addons/report_analytic/i18n/pt_BR.po +++ b/addons/report_analytic/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/pt_PT.po b/addons/report_analytic/i18n/pt_PT.po index f6f082e097a..ddedc0b1653 100644 --- a/addons/report_analytic/i18n/pt_PT.po +++ b/addons/report_analytic/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+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 15038397b86..f27f0a0c459 100644 --- a/addons/report_analytic/i18n/report_analytic.pot +++ b/addons/report_analytic/i18n/report_analytic.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/ro_RO.po b/addons/report_analytic/i18n/ro_RO.po index b429d9a92f4..70c0b672325 100644 --- a/addons/report_analytic/i18n/ro_RO.po +++ b/addons/report_analytic/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/ru_RU.po b/addons/report_analytic/i18n/ru_RU.po index f8781303b2c..db404441290 100644 --- a/addons/report_analytic/i18n/ru_RU.po +++ b/addons/report_analytic/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/sl_SL.po b/addons/report_analytic/i18n/sl_SL.po index bef6072c8f9..8fa298d339f 100644 --- a/addons/report_analytic/i18n/sl_SL.po +++ b/addons/report_analytic/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/cs_CS.po b/addons/report_analytic/i18n/sq_AL.po similarity index 93% rename from addons/report_analytic/i18n/cs_CS.po rename to addons/report_analytic/i18n/sq_AL.po index cd0f0621967..139b23cea64 100644 --- a/addons/report_analytic/i18n/cs_CS.po +++ b/addons/report_analytic/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/sv_SE.po b/addons/report_analytic/i18n/sv_SE.po index f024c0f3a1b..91187a31689 100644 --- a/addons/report_analytic/i18n/sv_SE.po +++ b/addons/report_analytic/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/tr_TR.po b/addons/report_analytic/i18n/tr_TR.po index 3c1862d6555..1113b8a7241 100644 --- a/addons/report_analytic/i18n/tr_TR.po +++ b/addons/report_analytic/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/uk_UK.po b/addons/report_analytic/i18n/uk_UA.po similarity index 94% rename from addons/report_analytic/i18n/uk_UK.po rename to addons/report_analytic/i18n/uk_UA.po index 46c43ebd1c6..7d5ade7786b 100644 --- a/addons/report_analytic/i18n/uk_UK.po +++ b/addons/report_analytic/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/sv_SV.po b/addons/report_analytic/i18n/vi_VN.po similarity index 89% rename from addons/report_analytic/i18n/sv_SV.po rename to addons/report_analytic/i18n/vi_VN.po index 05be6dd76eb..7faa20a72ba 100644 --- a/addons/report_analytic/i18n/sv_SV.po +++ b/addons/report_analytic/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: report_analytic #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_analytic #: field:report.analytic.account.close,quantity_max:0 diff --git a/addons/report_analytic/i18n/zh_CN.po b/addons/report_analytic/i18n/zh_CN.po index 1e8707dc96b..273f8db8bd1 100644 --- a/addons/report_analytic/i18n/zh_CN.po +++ b/addons/report_analytic/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/zh_TW.po b/addons/report_analytic/i18n/zh_TW.po index 55ddc955127..6160baac2ff 100644 --- a/addons/report_analytic/i18n/zh_TW.po +++ b/addons/report_analytic/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/ar_AR.po b/addons/report_analytic_line/i18n/ar_AR.po index 217d6bd478a..4c7f63cc639 100644 --- a/addons/report_analytic_line/i18n/ar_AR.po +++ b/addons/report_analytic_line/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/bg_BG.po b/addons/report_analytic_line/i18n/bg_BG.po index 93d33bb8581..c196af52358 100644 --- a/addons/report_analytic_line/i18n/bg_BG.po +++ b/addons/report_analytic_line/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/bs_BS.po b/addons/report_analytic_line/i18n/bs_BS.po index b11befaebde..3d5265aec53 100644 --- a/addons/report_analytic_line/i18n/bs_BS.po +++ b/addons/report_analytic_line/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/ca_ES.po b/addons/report_analytic_line/i18n/ca_ES.po index 80e390487e1..3f64dc19984 100644 --- a/addons/report_analytic_line/i18n/ca_ES.po +++ b/addons/report_analytic_line/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/cs_CZ.po b/addons/report_analytic_line/i18n/cs_CZ.po index 9f4c391765e..fe81f00dd91 100644 --- a/addons/report_analytic_line/i18n/cs_CZ.po +++ b/addons/report_analytic_line/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/de_DE.po b/addons/report_analytic_line/i18n/de_DE.po index b9242a68753..7fe6784d3ec 100644 --- a/addons/report_analytic_line/i18n/de_DE.po +++ b/addons/report_analytic_line/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/es_AR.po b/addons/report_analytic_line/i18n/es_AR.po index 08fe4efc995..d8610e73d09 100644 --- a/addons/report_analytic_line/i18n/es_AR.po +++ b/addons/report_analytic_line/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/es_ES.po b/addons/report_analytic_line/i18n/es_ES.po index 8215ebd575b..3295e616707 100644 --- a/addons/report_analytic_line/i18n/es_ES.po +++ b/addons/report_analytic_line/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/et_EE.po b/addons/report_analytic_line/i18n/et_EE.po index 643f4689790..d3cec4501d5 100644 --- a/addons/report_analytic_line/i18n/et_EE.po +++ b/addons/report_analytic_line/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/fi_FI.po b/addons/report_analytic_line/i18n/fi_FI.po index e0879ab714e..13505f11c0f 100644 --- a/addons/report_analytic_line/i18n/fi_FI.po +++ b/addons/report_analytic_line/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/fr_FR.po b/addons/report_analytic_line/i18n/fr_FR.po index 5bf3fef9e50..eca737d1d47 100644 --- a/addons/report_analytic_line/i18n/fr_FR.po +++ b/addons/report_analytic_line/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "Rapport des lignes analytiques à facturer" #. module: report_analytic_line #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_analytic_line #: field:report.account.analytic.line.to.invoice,unit_amount:0 diff --git a/addons/report_analytic_line/i18n/hr_HR.po b/addons/report_analytic_line/i18n/hr_HR.po index 9a2c51dfbd5..cb76ba316d3 100644 --- a/addons/report_analytic_line/i18n/hr_HR.po +++ b/addons/report_analytic_line/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/hu_HU.po b/addons/report_analytic_line/i18n/hu_HU.po index 6a3b8aa4131..8c36fead299 100644 --- a/addons/report_analytic_line/i18n/hu_HU.po +++ b/addons/report_analytic_line/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/id_ID.po b/addons/report_analytic_line/i18n/id_ID.po index 77b1146316b..df7b1336f8d 100644 --- a/addons/report_analytic_line/i18n/id_ID.po +++ b/addons/report_analytic_line/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/it_IT.po b/addons/report_analytic_line/i18n/it_IT.po index eb5bd10b558..f222ee08be4 100644 --- a/addons/report_analytic_line/i18n/it_IT.po +++ b/addons/report_analytic_line/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/lt_LT.po b/addons/report_analytic_line/i18n/lt_LT.po index b82f7397c81..784ab0af1bd 100644 --- a/addons/report_analytic_line/i18n/lt_LT.po +++ b/addons/report_analytic_line/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/nl_BE.po b/addons/report_analytic_line/i18n/nl_BE.po index efc48269a38..8a4ec1b1e75 100644 --- a/addons/report_analytic_line/i18n/nl_BE.po +++ b/addons/report_analytic_line/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/nl_NL.po b/addons/report_analytic_line/i18n/nl_NL.po index 70d4553b9d7..e44d1944c95 100644 --- a/addons/report_analytic_line/i18n/nl_NL.po +++ b/addons/report_analytic_line/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/pl_PL.po b/addons/report_analytic_line/i18n/pl_PL.po index 2626351e204..e5497b104e8 100644 --- a/addons/report_analytic_line/i18n/pl_PL.po +++ b/addons/report_analytic_line/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/pt_BR.po b/addons/report_analytic_line/i18n/pt_BR.po index 3ee72f1be19..e63d3882a7a 100644 --- a/addons/report_analytic_line/i18n/pt_BR.po +++ b/addons/report_analytic_line/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/pt_PT.po b/addons/report_analytic_line/i18n/pt_PT.po index 2c8960295a5..4e55eacb74f 100644 --- a/addons/report_analytic_line/i18n/pt_PT.po +++ b/addons/report_analytic_line/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+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 3da0f52457d..703b60a8980 100644 --- a/addons/report_analytic_line/i18n/report_analytic_line.pot +++ b/addons/report_analytic_line/i18n/report_analytic_line.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/ro_RO.po b/addons/report_analytic_line/i18n/ro_RO.po index 8e3b5139edf..93d5668f279 100644 --- a/addons/report_analytic_line/i18n/ro_RO.po +++ b/addons/report_analytic_line/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/ru_RU.po b/addons/report_analytic_line/i18n/ru_RU.po index 1d75eabde82..4285894323f 100644 --- a/addons/report_analytic_line/i18n/ru_RU.po +++ b/addons/report_analytic_line/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/sl_SL.po b/addons/report_analytic_line/i18n/sl_SL.po index 7d17c15c9de..822f6f80497 100644 --- a/addons/report_analytic_line/i18n/sl_SL.po +++ b/addons/report_analytic_line/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/cs_CS.po b/addons/report_analytic_line/i18n/sq_AL.po similarity index 94% rename from addons/report_analytic_line/i18n/cs_CS.po rename to addons/report_analytic_line/i18n/sq_AL.po index 145de33cc91..9eaa7b6fe8f 100644 --- a/addons/report_analytic_line/i18n/cs_CS.po +++ b/addons/report_analytic_line/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/sv_SE.po b/addons/report_analytic_line/i18n/sv_SE.po index c9fec87c7c5..da1ec4590b8 100644 --- a/addons/report_analytic_line/i18n/sv_SE.po +++ b/addons/report_analytic_line/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/tr_TR.po b/addons/report_analytic_line/i18n/tr_TR.po index bee6d77a3bc..b15962f1427 100644 --- a/addons/report_analytic_line/i18n/tr_TR.po +++ b/addons/report_analytic_line/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/uk_UK.po b/addons/report_analytic_line/i18n/uk_UA.po similarity index 95% rename from addons/report_analytic_line/i18n/uk_UK.po rename to addons/report_analytic_line/i18n/uk_UA.po index 6e5f595c41c..a0c29e60ab9 100644 --- a/addons/report_analytic_line/i18n/uk_UK.po +++ b/addons/report_analytic_line/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/sv_SV.po b/addons/report_analytic_line/i18n/vi_VN.po similarity index 91% rename from addons/report_analytic_line/i18n/sv_SV.po rename to addons/report_analytic_line/i18n/vi_VN.po index 3c875ae5d41..56c6f21f151 100644 --- a/addons/report_analytic_line/i18n/sv_SV.po +++ b/addons/report_analytic_line/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #. module: report_analytic_line #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_analytic_line #: model:ir.actions.act_window,name:report_analytic_line.action_account_analytic_line_to_invoice diff --git a/addons/report_analytic_line/i18n/zh_CN.po b/addons/report_analytic_line/i18n/zh_CN.po index ef4c57462b7..a1888b74526 100644 --- a/addons/report_analytic_line/i18n/zh_CN.po +++ b/addons/report_analytic_line/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/zh_TW.po b/addons/report_analytic_line/i18n/zh_TW.po index 978359ecf24..9045eac936a 100644 --- a/addons/report_analytic_line/i18n/zh_TW.po +++ b/addons/report_analytic_line/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/ar_AR.po b/addons/report_analytic_planning/i18n/ar_AR.po index 317ffc9e358..88238b551c7 100644 --- a/addons/report_analytic_planning/i18n/ar_AR.po +++ b/addons/report_analytic_planning/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/bg_BG.po b/addons/report_analytic_planning/i18n/bg_BG.po index 08716027058..765787c7b4f 100644 --- a/addons/report_analytic_planning/i18n/bg_BG.po +++ b/addons/report_analytic_planning/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/bs_BS.po b/addons/report_analytic_planning/i18n/bs_BS.po index 486899c3c91..35f9f9f3397 100644 --- a/addons/report_analytic_planning/i18n/bs_BS.po +++ b/addons/report_analytic_planning/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/ca_ES.po b/addons/report_analytic_planning/i18n/ca_ES.po index 8c3d60de06b..b72e06acb05 100644 --- a/addons/report_analytic_planning/i18n/ca_ES.po +++ b/addons/report_analytic_planning/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/cs_CZ.po b/addons/report_analytic_planning/i18n/cs_CZ.po index 683eac54b73..ee2c25c1703 100644 --- a/addons/report_analytic_planning/i18n/cs_CZ.po +++ b/addons/report_analytic_planning/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/de_DE.po b/addons/report_analytic_planning/i18n/de_DE.po index e298bbc5308..585f109c908 100644 --- a/addons/report_analytic_planning/i18n/de_DE.po +++ b/addons/report_analytic_planning/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/es_AR.po b/addons/report_analytic_planning/i18n/es_AR.po index a1a9677a5f7..598c3b653fa 100644 --- a/addons/report_analytic_planning/i18n/es_AR.po +++ b/addons/report_analytic_planning/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/es_ES.po b/addons/report_analytic_planning/i18n/es_ES.po index 7956fef5ec4..b9b23bb886b 100644 --- a/addons/report_analytic_planning/i18n/es_ES.po +++ b/addons/report_analytic_planning/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/et_EE.po b/addons/report_analytic_planning/i18n/et_EE.po index eafc7f37d1f..7af7f21fa27 100644 --- a/addons/report_analytic_planning/i18n/et_EE.po +++ b/addons/report_analytic_planning/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/fi_FI.po b/addons/report_analytic_planning/i18n/fi_FI.po index 2737c6b4d60..49f9b5b7c94 100644 --- a/addons/report_analytic_planning/i18n/fi_FI.po +++ b/addons/report_analytic_planning/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/fr_FR.po b/addons/report_analytic_planning/i18n/fr_FR.po index fe99f44a8e9..06d58284bdc 100644 --- a/addons/report_analytic_planning/i18n/fr_FR.po +++ b/addons/report_analytic_planning/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "Compte analytique" #. module: report_analytic_planning #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_analytic_planning #: constraint:ir.model:0 diff --git a/addons/report_analytic_planning/i18n/hr_HR.po b/addons/report_analytic_planning/i18n/hr_HR.po index 50057c4db82..da9d7385a55 100644 --- a/addons/report_analytic_planning/i18n/hr_HR.po +++ b/addons/report_analytic_planning/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/hu_HU.po b/addons/report_analytic_planning/i18n/hu_HU.po index 856da3bfd78..04d1efd2fa0 100644 --- a/addons/report_analytic_planning/i18n/hu_HU.po +++ b/addons/report_analytic_planning/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/id_ID.po b/addons/report_analytic_planning/i18n/id_ID.po index 5927d39ab58..68ac9c71e7e 100644 --- a/addons/report_analytic_planning/i18n/id_ID.po +++ b/addons/report_analytic_planning/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/it_IT.po b/addons/report_analytic_planning/i18n/it_IT.po index be259187d8c..d4789d37284 100644 --- a/addons/report_analytic_planning/i18n/it_IT.po +++ b/addons/report_analytic_planning/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/ko_KO.po b/addons/report_analytic_planning/i18n/ko_KO.po index 88f896b8824..e7e52cffb78 100644 --- a/addons/report_analytic_planning/i18n/ko_KO.po +++ b/addons/report_analytic_planning/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:05+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_analytic_planning diff --git a/addons/report_analytic_planning/i18n/lt_LT.po b/addons/report_analytic_planning/i18n/lt_LT.po index dbe63c8a47f..211ee62e548 100644 --- a/addons/report_analytic_planning/i18n/lt_LT.po +++ b/addons/report_analytic_planning/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/nl_BE.po b/addons/report_analytic_planning/i18n/nl_BE.po index d6763e6579e..b8551d1d9ad 100644 --- a/addons/report_analytic_planning/i18n/nl_BE.po +++ b/addons/report_analytic_planning/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/nl_NL.po b/addons/report_analytic_planning/i18n/nl_NL.po index e80deffb100..2092eaf4174 100644 --- a/addons/report_analytic_planning/i18n/nl_NL.po +++ b/addons/report_analytic_planning/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/pl_PL.po b/addons/report_analytic_planning/i18n/pl_PL.po index e2d2229562a..7e232d42b0b 100644 --- a/addons/report_analytic_planning/i18n/pl_PL.po +++ b/addons/report_analytic_planning/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/pt_BR.po b/addons/report_analytic_planning/i18n/pt_BR.po index ceff2a50200..4fbe8958417 100644 --- a/addons/report_analytic_planning/i18n/pt_BR.po +++ b/addons/report_analytic_planning/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/pt_PT.po b/addons/report_analytic_planning/i18n/pt_PT.po index f792776ae0e..2fc42034b8e 100644 --- a/addons/report_analytic_planning/i18n/pt_PT.po +++ b/addons/report_analytic_planning/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+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 1aa2ecd05e4..e6542971817 100644 --- a/addons/report_analytic_planning/i18n/report_analytic_planning.pot +++ b/addons/report_analytic_planning/i18n/report_analytic_planning.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/ro_RO.po b/addons/report_analytic_planning/i18n/ro_RO.po index 3b2827acf72..6c21b9d4a11 100644 --- a/addons/report_analytic_planning/i18n/ro_RO.po +++ b/addons/report_analytic_planning/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/ru_RU.po b/addons/report_analytic_planning/i18n/ru_RU.po index f0eae9511f5..e0485d517ea 100644 --- a/addons/report_analytic_planning/i18n/ru_RU.po +++ b/addons/report_analytic_planning/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/sl_SL.po b/addons/report_analytic_planning/i18n/sl_SL.po index d197ba513f6..67c28a05e38 100644 --- a/addons/report_analytic_planning/i18n/sl_SL.po +++ b/addons/report_analytic_planning/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/cs_CS.po b/addons/report_analytic_planning/i18n/sq_AL.po similarity index 98% rename from addons/report_analytic_planning/i18n/cs_CS.po rename to addons/report_analytic_planning/i18n/sq_AL.po index 718478e63e3..6fe560c4a24 100644 --- a/addons/report_analytic_planning/i18n/cs_CS.po +++ b/addons/report_analytic_planning/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/sv_SE.po b/addons/report_analytic_planning/i18n/sv_SE.po index adf2628680d..d0a38f1eed3 100644 --- a/addons/report_analytic_planning/i18n/sv_SE.po +++ b/addons/report_analytic_planning/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/tr_TR.po b/addons/report_analytic_planning/i18n/tr_TR.po index 098437822ac..9fb873d88df 100644 --- a/addons/report_analytic_planning/i18n/tr_TR.po +++ b/addons/report_analytic_planning/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/uk_UK.po b/addons/report_analytic_planning/i18n/uk_UA.po similarity index 98% rename from addons/report_analytic_planning/i18n/uk_UK.po rename to addons/report_analytic_planning/i18n/uk_UA.po index d50a51c1376..f6614fd5e3d 100644 --- a/addons/report_analytic_planning/i18n/uk_UK.po +++ b/addons/report_analytic_planning/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/sv_SV.po b/addons/report_analytic_planning/i18n/vi_VN.po similarity index 97% rename from addons/report_analytic_planning/i18n/sv_SV.po rename to addons/report_analytic_planning/i18n/vi_VN.po index 9065d1faebf..940993ffe75 100644 --- a/addons/report_analytic_planning/i18n/sv_SV.po +++ b/addons/report_analytic_planning/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -63,7 +63,7 @@ msgstr "" #. module: report_analytic_planning #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_analytic_planning #: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_stat_form diff --git a/addons/report_analytic_planning/i18n/zh_CN.po b/addons/report_analytic_planning/i18n/zh_CN.po index 8dbcdb375ae..52ca52a260a 100644 --- a/addons/report_analytic_planning/i18n/zh_CN.po +++ b/addons/report_analytic_planning/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/zh_TW.po b/addons/report_analytic_planning/i18n/zh_TW.po index 242fd5824a8..3415560f0bd 100644 --- a/addons/report_analytic_planning/i18n/zh_TW.po +++ b/addons/report_analytic_planning/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/ar_AR.po b/addons/report_crm/i18n/ar_AR.po index 46daa03bc45..c3d39f232a1 100644 --- a/addons/report_crm/i18n/ar_AR.po +++ b/addons/report_crm/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/bg_BG.po b/addons/report_crm/i18n/bg_BG.po index e0bc798846b..f1b2f254c6b 100644 --- a/addons/report_crm/i18n/bg_BG.po +++ b/addons/report_crm/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/bs_BS.po b/addons/report_crm/i18n/bs_BS.po index 5fc97d592d4..e96f184c48f 100644 --- a/addons/report_crm/i18n/bs_BS.po +++ b/addons/report_crm/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/ca_ES.po b/addons/report_crm/i18n/ca_ES.po index 04d707a923d..03d10d16532 100644 --- a/addons/report_crm/i18n/ca_ES.po +++ b/addons/report_crm/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/cs_CZ.po b/addons/report_crm/i18n/cs_CZ.po index e693ad3e80f..2708c1d54ac 100644 --- a/addons/report_crm/i18n/cs_CZ.po +++ b/addons/report_crm/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/de_DE.po b/addons/report_crm/i18n/de_DE.po index ecffae94985..952bc63f36b 100644 --- a/addons/report_crm/i18n/de_DE.po +++ b/addons/report_crm/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/es_AR.po b/addons/report_crm/i18n/es_AR.po index b926c12a77e..311d5a736c6 100644 --- a/addons/report_crm/i18n/es_AR.po +++ b/addons/report_crm/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/es_ES.po b/addons/report_crm/i18n/es_ES.po index b484190cd4a..97ee4e2c621 100644 --- a/addons/report_crm/i18n/es_ES.po +++ b/addons/report_crm/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/et_EE.po b/addons/report_crm/i18n/et_EE.po index 7d6a7b5e2e3..2478e46710b 100644 --- a/addons/report_crm/i18n/et_EE.po +++ b/addons/report_crm/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/fi_FI.po b/addons/report_crm/i18n/fi_FI.po index 441d4195158..0339d653b70 100644 --- a/addons/report_crm/i18n/fi_FI.po +++ b/addons/report_crm/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/fr_FR.po b/addons/report_crm/i18n/fr_FR.po index 14fb18d8efd..d7f3fc9d124 100644 --- a/addons/report_crm/i18n/fr_FR.po +++ b/addons/report_crm/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" #. module: report_crm #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_categ diff --git a/addons/report_crm/i18n/hr_HR.po b/addons/report_crm/i18n/hr_HR.po index 02d824dc72f..b4ac11d48fe 100644 --- a/addons/report_crm/i18n/hr_HR.po +++ b/addons/report_crm/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/hu_HU.po b/addons/report_crm/i18n/hu_HU.po index 0c1ca7c6d3d..3363c5642b9 100644 --- a/addons/report_crm/i18n/hu_HU.po +++ b/addons/report_crm/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/id_ID.po b/addons/report_crm/i18n/id_ID.po index 709a24720cb..9336ddafaec 100644 --- a/addons/report_crm/i18n/id_ID.po +++ b/addons/report_crm/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/it_IT.po b/addons/report_crm/i18n/it_IT.po index 6983bdbae24..27cd69c83a6 100644 --- a/addons/report_crm/i18n/it_IT.po +++ b/addons/report_crm/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/ko_KO.po b/addons/report_crm/i18n/ko_KO.po index ee6a489b2bf..ef541acff7e 100644 --- a/addons/report_crm/i18n/ko_KO.po +++ b/addons/report_crm/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:06+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_crm diff --git a/addons/report_crm/i18n/lt_LT.po b/addons/report_crm/i18n/lt_LT.po index 068fd8338e7..6cd960f96b5 100644 --- a/addons/report_crm/i18n/lt_LT.po +++ b/addons/report_crm/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/nl_BE.po b/addons/report_crm/i18n/nl_BE.po index 1910812b00e..49465978ff0 100644 --- a/addons/report_crm/i18n/nl_BE.po +++ b/addons/report_crm/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/nl_NL.po b/addons/report_crm/i18n/nl_NL.po index 4efd2386671..4880e0fffe5 100644 --- a/addons/report_crm/i18n/nl_NL.po +++ b/addons/report_crm/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/pl_PL.po b/addons/report_crm/i18n/pl_PL.po index 966c736c7aa..c77bb3974c5 100644 --- a/addons/report_crm/i18n/pl_PL.po +++ b/addons/report_crm/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" #. module: report_crm #: field:report.crm.case.service.dashboard,planned_revenue:0 msgid "Planned Revenue" -msgstr "" +msgstr "Planowany dochód" #. module: report_crm #: constraint:ir.actions.act_window:0 @@ -51,17 +51,17 @@ msgstr "" #. module: report_crm #: field:report.crm.case.service.dashboard,user_id:0 msgid "Responsible" -msgstr "" +msgstr "Odpowiedzialny" #. module: report_crm #: field:report.crm.case.section,perc_done:0 msgid "%Done" -msgstr "" +msgstr "%Wykonano" #. module: report_crm #: field:report.crm.case.service.dashboard,planned_cost:0 msgid "Planned Costs" -msgstr "" +msgstr "Planowane koszty" #. module: report_crm #: field:report.crm.case.section,nbr_cases:0 @@ -84,7 +84,7 @@ msgstr "" #: model:ir.model,name:report_crm.model_report_crm_case_section #: view:report.crm.case.section:0 msgid "Cases by Section" -msgstr "" +msgstr "Przypadki wg sekcji" #. module: report_crm #: selection:report.crm.case.categ,state:0 @@ -132,7 +132,7 @@ msgstr "" #. module: report_crm #: field:report.crm.case.section,avg_answers:0 msgid "Avg. Answers" -msgstr "" +msgstr "Śred. odpowiedzi" #. module: report_crm #: field:report.crm.case.categ,state:0 @@ -144,7 +144,7 @@ msgstr "" #. module: report_crm #: field:report.crm.case.service.dashboard,name:0 msgid "Description" -msgstr "" +msgstr "Opis" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month @@ -165,12 +165,12 @@ msgstr "Raportowanie" #. module: report_crm #: view:report.crm.case.service.dashboard:0 msgid "Planned costs" -msgstr "" +msgstr "Planowane koszty" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_view_closed_crm_case_dashboard msgid "Closed CRM Cases Within Past 15 Days" -msgstr "" +msgstr "Przpadki CRM zamknięte w ciągu ostatnich 15 dni" #. module: report_crm #: field:report.crm.case.categ,amount_costs:0 @@ -191,7 +191,7 @@ msgstr "" #. module: report_crm #: field:report.crm.case.service.dashboard,date:0 msgid "Date" -msgstr "" +msgstr "Data" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my @@ -207,7 +207,7 @@ msgstr "" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_view_open_crm_case_dashboard msgid "Open CRM Cases Within Past 15 Days" -msgstr "" +msgstr "Otwarte przypadki CRM w ciągu ostatnich 15 dni" #. module: report_crm #: constraint:ir.ui.view:0 @@ -217,7 +217,7 @@ msgstr "XML niewłaściwy dla tej architektury wyświetlania!" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_service_dashboard msgid "Report of Closed and Open CRM Cases within past 15 days" -msgstr "" +msgstr "Raport zamkniętych i otwartych przypadków CRM z ostatnich 15 dni" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree @@ -242,17 +242,17 @@ msgstr "" #. module: report_crm #: field:report.crm.case.service.dashboard,date_closed:0 msgid "Date Closed" -msgstr "" +msgstr "Data zamknięcia" #. module: report_crm #: field:report.crm.case.service.dashboard,priority:0 msgid "Priority" -msgstr "" +msgstr "Priorytet" #. module: report_crm #: field:report.crm.case.section,perc_cancel:0 msgid "%Cancel" -msgstr "" +msgstr "%Anulowanych" #. module: report_crm #: field:report.crm.case.section,delay_close:0 @@ -269,7 +269,7 @@ msgstr "" #. module: report_crm #: view:report.crm.case.service.dashboard:0 msgid "CRM Cases" -msgstr "" +msgstr "Przypadki CRM" #. module: report_crm #: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my @@ -294,12 +294,12 @@ msgstr "" #. module: report_crm #: field:report.crm.case.service.dashboard,create_date:0 msgid "Create Date" -msgstr "" +msgstr "Data utworzenia" #. module: report_crm #: field:report.crm.case.service.dashboard,date_deadline:0 msgid "Deadline" -msgstr "" +msgstr "Ostateczny czas ukończenia" #. module: report_crm #: model:ir.model,name:report_crm.model_report_crm_case_user @@ -309,7 +309,7 @@ msgstr "" #. module: report_crm #: field:report.crm.case.service.dashboard,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: report_crm #: model:ir.module.module,description:report_crm.module_meta_information @@ -327,5 +327,5 @@ msgstr "" #. module: report_crm #: view:report.crm.case.service.dashboard:0 msgid "Planned revenue" -msgstr "" +msgstr "Planowany dochód" diff --git a/addons/report_crm/i18n/pt_BR.po b/addons/report_crm/i18n/pt_BR.po index e34318e340a..1871ba81dc7 100644 --- a/addons/report_crm/i18n/pt_BR.po +++ b/addons/report_crm/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/pt_PT.po b/addons/report_crm/i18n/pt_PT.po index 28845587d66..11b240922ab 100644 --- a/addons/report_crm/i18n/pt_PT.po +++ b/addons/report_crm/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+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 8b4b1d240b0..3f910af6055 100644 --- a/addons/report_crm/i18n/report_crm.pot +++ b/addons/report_crm/i18n/report_crm.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/ro_RO.po b/addons/report_crm/i18n/ro_RO.po index c9a6fc7be92..52a65435494 100644 --- a/addons/report_crm/i18n/ro_RO.po +++ b/addons/report_crm/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/ru_RU.po b/addons/report_crm/i18n/ru_RU.po index 0f2dddc8178..860d454fdeb 100644 --- a/addons/report_crm/i18n/ru_RU.po +++ b/addons/report_crm/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/sl_SL.po b/addons/report_crm/i18n/sl_SL.po index 29747217974..d86348b6125 100644 --- a/addons/report_crm/i18n/sl_SL.po +++ b/addons/report_crm/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/cs_CS.po b/addons/report_crm/i18n/sq_AL.po similarity index 98% rename from addons/report_crm/i18n/cs_CS.po rename to addons/report_crm/i18n/sq_AL.po index 3cc058d7180..ca08f12865a 100644 --- a/addons/report_crm/i18n/cs_CS.po +++ b/addons/report_crm/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/sv_SE.po b/addons/report_crm/i18n/sv_SE.po index 7fe36556370..de44bfaa9fe 100644 --- a/addons/report_crm/i18n/sv_SE.po +++ b/addons/report_crm/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/tr_TR.po b/addons/report_crm/i18n/tr_TR.po index d268040684e..bd242d94ff6 100644 --- a/addons/report_crm/i18n/tr_TR.po +++ b/addons/report_crm/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/uk_UK.po b/addons/report_crm/i18n/uk_UA.po similarity index 98% rename from addons/report_crm/i18n/uk_UK.po rename to addons/report_crm/i18n/uk_UA.po index 1d130a82304..1e9000457e2 100644 --- a/addons/report_crm/i18n/uk_UK.po +++ b/addons/report_crm/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/sv_SV.po b/addons/report_crm/i18n/vi_VN.po similarity index 97% rename from addons/report_crm/i18n/sv_SV.po rename to addons/report_crm/i18n/vi_VN.po index a9e0f02ebf5..b0b5e3a4dad 100644 --- a/addons/report_crm/i18n/sv_SV.po +++ b/addons/report_crm/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -114,7 +114,7 @@ msgstr "" #. module: report_crm #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_crm #: field:report.crm.case.categ,amount_revenue_prob:0 diff --git a/addons/report_crm/i18n/zh_CN.po b/addons/report_crm/i18n/zh_CN.po index 56c299826ab..5656354d858 100644 --- a/addons/report_crm/i18n/zh_CN.po +++ b/addons/report_crm/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/zh_TW.po b/addons/report_crm/i18n/zh_TW.po index 75231beeb87..2f0a893b07f 100644 --- a/addons/report_crm/i18n/zh_TW.po +++ b/addons/report_crm/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/ar_AR.po b/addons/report_document/i18n/ar_AR.po index 598a2c42681..1287cf68933 100644 --- a/addons/report_document/i18n/ar_AR.po +++ b/addons/report_document/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/bg_BG.po b/addons/report_document/i18n/bg_BG.po index 4a19a8644ba..10838fc8527 100644 --- a/addons/report_document/i18n/bg_BG.po +++ b/addons/report_document/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/bs_BS.po b/addons/report_document/i18n/bs_BS.po index 3d58db62bb6..0b292d8ad56 100644 --- a/addons/report_document/i18n/bs_BS.po +++ b/addons/report_document/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/ca_ES.po b/addons/report_document/i18n/ca_ES.po index 178280d7712..f9d03be25f0 100644 --- a/addons/report_document/i18n/ca_ES.po +++ b/addons/report_document/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/cs_CZ.po b/addons/report_document/i18n/cs_CZ.po index e9a5978b0a9..9f2df03ab1a 100644 --- a/addons/report_document/i18n/cs_CZ.po +++ b/addons/report_document/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/de_DE.po b/addons/report_document/i18n/de_DE.po index 6a92f64ef25..4d1be4cea3c 100644 --- a/addons/report_document/i18n/de_DE.po +++ b/addons/report_document/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/es_AR.po b/addons/report_document/i18n/es_AR.po index 3a5370cd204..d7449fd1224 100644 --- a/addons/report_document/i18n/es_AR.po +++ b/addons/report_document/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/es_ES.po b/addons/report_document/i18n/es_ES.po index f9147ae3467..b3b07f4e3cf 100644 --- a/addons/report_document/i18n/es_ES.po +++ b/addons/report_document/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/et_EE.po b/addons/report_document/i18n/et_EE.po index 5436ffc51a3..5dc4876e73d 100644 --- a/addons/report_document/i18n/et_EE.po +++ b/addons/report_document/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/fi_FI.po b/addons/report_document/i18n/fi_FI.po index 99ee89501e5..e8f86de2b01 100644 --- a/addons/report_document/i18n/fi_FI.po +++ b/addons/report_document/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/fr_FR.po b/addons/report_document/i18n/fr_FR.po index 9f95457f714..faeafdd0143 100644 --- a/addons/report_document/i18n/fr_FR.po +++ b/addons/report_document/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Taille du Fichier" #. module: report_document #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_document #: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_all diff --git a/addons/report_document/i18n/hr_HR.po b/addons/report_document/i18n/hr_HR.po index b6b92506464..dc601a3b2b3 100644 --- a/addons/report_document/i18n/hr_HR.po +++ b/addons/report_document/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/hu_HU.po b/addons/report_document/i18n/hu_HU.po index 2c5a359483d..0236466e3f0 100644 --- a/addons/report_document/i18n/hu_HU.po +++ b/addons/report_document/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/id_ID.po b/addons/report_document/i18n/id_ID.po index 8368f70058c..fe2e3bb5b4f 100644 --- a/addons/report_document/i18n/id_ID.po +++ b/addons/report_document/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/it_IT.po b/addons/report_document/i18n/it_IT.po index 421032ff031..a20f4aad532 100644 --- a/addons/report_document/i18n/it_IT.po +++ b/addons/report_document/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/ko_KO.po b/addons/report_document/i18n/ko_KO.po index bae32af9e71..ad1155bddb0 100644 --- a/addons/report_document/i18n/ko_KO.po +++ b/addons/report_document/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:08+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_document diff --git a/addons/report_document/i18n/lt_LT.po b/addons/report_document/i18n/lt_LT.po index 0f393303b04..4cc208df497 100644 --- a/addons/report_document/i18n/lt_LT.po +++ b/addons/report_document/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/nl_BE.po b/addons/report_document/i18n/nl_BE.po index 52ffb000630..d8e1a6d75aa 100644 --- a/addons/report_document/i18n/nl_BE.po +++ b/addons/report_document/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/nl_NL.po b/addons/report_document/i18n/nl_NL.po index ee768a40a47..50cdee6c833 100644 --- a/addons/report_document/i18n/nl_NL.po +++ b/addons/report_document/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/pl_PL.po b/addons/report_document/i18n/pl_PL.po index e3402d0d788..ff5ae2fb238 100644 --- a/addons/report_document/i18n/pl_PL.po +++ b/addons/report_document/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:03+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:03+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/pt_BR.po b/addons/report_document/i18n/pt_BR.po index cc21cfe57a6..1fe782c02cb 100644 --- a/addons/report_document/i18n/pt_BR.po +++ b/addons/report_document/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/pt_PT.po b/addons/report_document/i18n/pt_PT.po index 50deec8c6a6..28558e3c94f 100644 --- a/addons/report_document/i18n/pt_PT.po +++ b/addons/report_document/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+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 8de8c016521..5655f8f26c6 100644 --- a/addons/report_document/i18n/report_document.pot +++ b/addons/report_document/i18n/report_document.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/ro_RO.po b/addons/report_document/i18n/ro_RO.po index 03ae532dd6d..e6a237fcca3 100644 --- a/addons/report_document/i18n/ro_RO.po +++ b/addons/report_document/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/ru_RU.po b/addons/report_document/i18n/ru_RU.po index b132bd063d0..38a2eb08b03 100644 --- a/addons/report_document/i18n/ru_RU.po +++ b/addons/report_document/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/sl_SL.po b/addons/report_document/i18n/sl_SL.po index b2d46114413..ea13e442305 100644 --- a/addons/report_document/i18n/sl_SL.po +++ b/addons/report_document/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/cs_CS.po b/addons/report_document/i18n/sq_AL.po similarity index 97% rename from addons/report_document/i18n/cs_CS.po rename to addons/report_document/i18n/sq_AL.po index de8072e1fe0..897f61b1502 100644 --- a/addons/report_document/i18n/cs_CS.po +++ b/addons/report_document/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/sv_SE.po b/addons/report_document/i18n/sv_SE.po index 93ca0bfdc17..1b368acc411 100644 --- a/addons/report_document/i18n/sv_SE.po +++ b/addons/report_document/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/tr_TR.po b/addons/report_document/i18n/tr_TR.po index 3cd0126bc0c..3bb67bd0556 100644 --- a/addons/report_document/i18n/tr_TR.po +++ b/addons/report_document/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/uk_UK.po b/addons/report_document/i18n/uk_UA.po similarity index 97% rename from addons/report_document/i18n/uk_UK.po rename to addons/report_document/i18n/uk_UA.po index 467bd56e440..5c03207fb5c 100644 --- a/addons/report_document/i18n/uk_UK.po +++ b/addons/report_document/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/sv_SV.po b/addons/report_document/i18n/vi_VN.po similarity index 96% rename from addons/report_document/i18n/sv_SV.po rename to addons/report_document/i18n/vi_VN.po index 231392cc804..2b4ee85e8a4 100644 --- a/addons/report_document/i18n/sv_SV.po +++ b/addons/report_document/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" #. module: report_document #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_document #: model:ir.actions.act_window,name:report_document.action_view_wall diff --git a/addons/report_document/i18n/zh_CN.po b/addons/report_document/i18n/zh_CN.po index f8851b234a7..ed16218e85e 100644 --- a/addons/report_document/i18n/zh_CN.po +++ b/addons/report_document/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/zh_TW.po b/addons/report_document/i18n/zh_TW.po index 9fa5590dce3..4aeef8417dd 100644 --- a/addons/report_document/i18n/zh_TW.po +++ b/addons/report_document/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/ar_AR.po b/addons/report_intrastat/i18n/ar_AR.po index 15ad012168b..4b7405ef5ab 100644 --- a/addons/report_intrastat/i18n/ar_AR.po +++ b/addons/report_intrastat/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/bg_BG.po b/addons/report_intrastat/i18n/bg_BG.po index 6c2b5236955..891ef76d8bb 100644 --- a/addons/report_intrastat/i18n/bg_BG.po +++ b/addons/report_intrastat/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/bs_BS.po b/addons/report_intrastat/i18n/bs_BS.po index 63418f63630..069d1ff6721 100644 --- a/addons/report_intrastat/i18n/bs_BS.po +++ b/addons/report_intrastat/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/ca_ES.po b/addons/report_intrastat/i18n/ca_ES.po index 3e8f2a51370..52c457e9613 100644 --- a/addons/report_intrastat/i18n/ca_ES.po +++ b/addons/report_intrastat/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/cs_CZ.po b/addons/report_intrastat/i18n/cs_CZ.po index 0417cc2afa8..491589ce7a5 100644 --- a/addons/report_intrastat/i18n/cs_CZ.po +++ b/addons/report_intrastat/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/de_DE.po b/addons/report_intrastat/i18n/de_DE.po index 2c4f6f36060..a272c114f71 100644 --- a/addons/report_intrastat/i18n/de_DE.po +++ b/addons/report_intrastat/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/es_AR.po b/addons/report_intrastat/i18n/es_AR.po index f2d439c9107..029678f9ee2 100644 --- a/addons/report_intrastat/i18n/es_AR.po +++ b/addons/report_intrastat/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/es_ES.po b/addons/report_intrastat/i18n/es_ES.po index 91950ff112f..fb32eceba4c 100644 --- a/addons/report_intrastat/i18n/es_ES.po +++ b/addons/report_intrastat/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/et_EE.po b/addons/report_intrastat/i18n/et_EE.po index 8b3ee89e248..6faacc9b32a 100644 --- a/addons/report_intrastat/i18n/et_EE.po +++ b/addons/report_intrastat/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/fi_FI.po b/addons/report_intrastat/i18n/fi_FI.po index 39650a1a07f..121b794b1fc 100644 --- a/addons/report_intrastat/i18n/fi_FI.po +++ b/addons/report_intrastat/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/fr_FR.po b/addons/report_intrastat/i18n/fr_FR.po index 7ed123339b5..7d460092d29 100644 --- a/addons/report_intrastat/i18n/fr_FR.po +++ b/addons/report_intrastat/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "" #. module: report_intrastat #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_intrastat #: field:report.intrastat,name:0 diff --git a/addons/report_intrastat/i18n/hr_HR.po b/addons/report_intrastat/i18n/hr_HR.po index a87ac31bba7..cc0a7e3c764 100644 --- a/addons/report_intrastat/i18n/hr_HR.po +++ b/addons/report_intrastat/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/hu_HU.po b/addons/report_intrastat/i18n/hu_HU.po index edb0af9be54..d3a5b631c58 100644 --- a/addons/report_intrastat/i18n/hu_HU.po +++ b/addons/report_intrastat/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/id_ID.po b/addons/report_intrastat/i18n/id_ID.po index ccd088d911c..0396cb3236f 100644 --- a/addons/report_intrastat/i18n/id_ID.po +++ b/addons/report_intrastat/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/it_IT.po b/addons/report_intrastat/i18n/it_IT.po index 14286ea5c96..a7b39552247 100644 --- a/addons/report_intrastat/i18n/it_IT.po +++ b/addons/report_intrastat/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/ko_KO.po b/addons/report_intrastat/i18n/ko_KO.po index febe2a81180..0452bdc758b 100644 --- a/addons/report_intrastat/i18n/ko_KO.po +++ b/addons/report_intrastat/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:07+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:59+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/lt_LT.po b/addons/report_intrastat/i18n/lt_LT.po index c8267e310cd..538c4f90a86 100644 --- a/addons/report_intrastat/i18n/lt_LT.po +++ b/addons/report_intrastat/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/nl_BE.po b/addons/report_intrastat/i18n/nl_BE.po index 4b5f5d082fe..19c4b7a00a7 100644 --- a/addons/report_intrastat/i18n/nl_BE.po +++ b/addons/report_intrastat/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/nl_NL.po b/addons/report_intrastat/i18n/nl_NL.po index 8de367feceb..ea9db0322d6 100644 --- a/addons/report_intrastat/i18n/nl_NL.po +++ b/addons/report_intrastat/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/pl_PL.po b/addons/report_intrastat/i18n/pl_PL.po index a506da9d255..cee7dcd77a7 100644 --- a/addons/report_intrastat/i18n/pl_PL.po +++ b/addons/report_intrastat/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/pt_BR.po b/addons/report_intrastat/i18n/pt_BR.po index 66edbd7375d..62137edd666 100644 --- a/addons/report_intrastat/i18n/pt_BR.po +++ b/addons/report_intrastat/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/pt_PT.po b/addons/report_intrastat/i18n/pt_PT.po index 0b4e3267fb1..79091cc59ed 100644 --- a/addons/report_intrastat/i18n/pt_PT.po +++ b/addons/report_intrastat/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+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 adfa1585866..eabe40ca476 100644 --- a/addons/report_intrastat/i18n/report_intrastat.pot +++ b/addons/report_intrastat/i18n/report_intrastat.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/ro_RO.po b/addons/report_intrastat/i18n/ro_RO.po index 961a80d0a77..aa025a07b0d 100644 --- a/addons/report_intrastat/i18n/ro_RO.po +++ b/addons/report_intrastat/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/ru_RU.po b/addons/report_intrastat/i18n/ru_RU.po index cda1c38afa5..22cdffc073d 100644 --- a/addons/report_intrastat/i18n/ru_RU.po +++ b/addons/report_intrastat/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/sl_SL.po b/addons/report_intrastat/i18n/sl_SL.po index e8aae52883c..75e14aeaf14 100644 --- a/addons/report_intrastat/i18n/sl_SL.po +++ b/addons/report_intrastat/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/cs_CS.po b/addons/report_intrastat/i18n/sq_AL.po similarity index 97% rename from addons/report_intrastat/i18n/cs_CS.po rename to addons/report_intrastat/i18n/sq_AL.po index 7f9e9329300..da210679310 100644 --- a/addons/report_intrastat/i18n/cs_CS.po +++ b/addons/report_intrastat/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/sv_SE.po b/addons/report_intrastat/i18n/sv_SE.po index 4ea0e9fde76..d8f6dc37c32 100644 --- a/addons/report_intrastat/i18n/sv_SE.po +++ b/addons/report_intrastat/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/tr_TR.po b/addons/report_intrastat/i18n/tr_TR.po index 90b1a4cd7d3..9f69bec2a9d 100644 --- a/addons/report_intrastat/i18n/tr_TR.po +++ b/addons/report_intrastat/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/uk_UK.po b/addons/report_intrastat/i18n/uk_UA.po similarity index 97% rename from addons/report_intrastat/i18n/uk_UK.po rename to addons/report_intrastat/i18n/uk_UA.po index 4019011a89a..613760b8931 100644 --- a/addons/report_intrastat/i18n/uk_UK.po +++ b/addons/report_intrastat/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/sv_SV.po b/addons/report_intrastat/i18n/vi_VN.po similarity index 96% rename from addons/report_intrastat/i18n/sv_SV.po rename to addons/report_intrastat/i18n/vi_VN.po index 6069b3f2e21..d5d378c6556 100644 --- a/addons/report_intrastat/i18n/sv_SV.po +++ b/addons/report_intrastat/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #. module: report_intrastat #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_intrastat #: rml:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/zh_CN.po b/addons/report_intrastat/i18n/zh_CN.po index 3253291023d..239e7aaf487 100644 --- a/addons/report_intrastat/i18n/zh_CN.po +++ b/addons/report_intrastat/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/zh_TW.po b/addons/report_intrastat/i18n/zh_TW.po index d8153a909b3..51bae221c5e 100644 --- a/addons/report_intrastat/i18n/zh_TW.po +++ b/addons/report_intrastat/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/ar_AR.po b/addons/report_mrp/i18n/ar_AR.po index 4e46da74cd6..a0d9be9a49e 100644 --- a/addons/report_mrp/i18n/ar_AR.po +++ b/addons/report_mrp/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/bg_BG.po b/addons/report_mrp/i18n/bg_BG.po index 47598cf574d..72ef37230a3 100644 --- a/addons/report_mrp/i18n/bg_BG.po +++ b/addons/report_mrp/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/bs_BS.po b/addons/report_mrp/i18n/bs_BS.po index dee94ec18a2..a936c49d3fb 100644 --- a/addons/report_mrp/i18n/bs_BS.po +++ b/addons/report_mrp/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/ca_ES.po b/addons/report_mrp/i18n/ca_ES.po index df01c849840..5ecec93f83a 100644 --- a/addons/report_mrp/i18n/ca_ES.po +++ b/addons/report_mrp/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/cs_CZ.po b/addons/report_mrp/i18n/cs_CZ.po index 74233264949..8a9e670ae4d 100644 --- a/addons/report_mrp/i18n/cs_CZ.po +++ b/addons/report_mrp/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/de_DE.po b/addons/report_mrp/i18n/de_DE.po index 97583a22d68..7c95398cf3f 100644 --- a/addons/report_mrp/i18n/de_DE.po +++ b/addons/report_mrp/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/es_AR.po b/addons/report_mrp/i18n/es_AR.po index c03bf92519c..97c04efa96c 100644 --- a/addons/report_mrp/i18n/es_AR.po +++ b/addons/report_mrp/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/es_ES.po b/addons/report_mrp/i18n/es_ES.po index 2f6061fd5b9..14e49c2e416 100644 --- a/addons/report_mrp/i18n/es_ES.po +++ b/addons/report_mrp/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/et_EE.po b/addons/report_mrp/i18n/et_EE.po index fe32028bd8f..55c872fb26c 100644 --- a/addons/report_mrp/i18n/et_EE.po +++ b/addons/report_mrp/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/fi_FI.po b/addons/report_mrp/i18n/fi_FI.po index ec63112c29a..5b4aa63168a 100644 --- a/addons/report_mrp/i18n/fi_FI.po +++ b/addons/report_mrp/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/fr_FR.po b/addons/report_mrp/i18n/fr_FR.po index 3d1e1148f50..13377f8a920 100644 --- a/addons/report_mrp/i18n/fr_FR.po +++ b/addons/report_mrp/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "Variation de valeur de stock hebdomadaire" #. module: report_mrp #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_mrp #: model:ir.model,name:report_mrp.model_report_mrp_inout diff --git a/addons/report_mrp/i18n/hr_HR.po b/addons/report_mrp/i18n/hr_HR.po index c88d7326f98..15dcdd57f5a 100644 --- a/addons/report_mrp/i18n/hr_HR.po +++ b/addons/report_mrp/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/hu_HU.po b/addons/report_mrp/i18n/hu_HU.po index a7a5d4afc04..9b3e3407eda 100644 --- a/addons/report_mrp/i18n/hu_HU.po +++ b/addons/report_mrp/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/id_ID.po b/addons/report_mrp/i18n/id_ID.po index 9b6e7b65d2a..68948d254be 100644 --- a/addons/report_mrp/i18n/id_ID.po +++ b/addons/report_mrp/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/it_IT.po b/addons/report_mrp/i18n/it_IT.po index 7661801b20f..6e2d1c7988b 100644 --- a/addons/report_mrp/i18n/it_IT.po +++ b/addons/report_mrp/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/ko_KO.po b/addons/report_mrp/i18n/ko_KO.po index 3b3356cbcd7..b2e894e442e 100644 --- a/addons/report_mrp/i18n/ko_KO.po +++ b/addons/report_mrp/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:10+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 11:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_mrp diff --git a/addons/report_mrp/i18n/lt_LT.po b/addons/report_mrp/i18n/lt_LT.po index 4f6e27f2a8e..16d90d1a0d2 100644 --- a/addons/report_mrp/i18n/lt_LT.po +++ b/addons/report_mrp/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/nl_BE.po b/addons/report_mrp/i18n/nl_BE.po index e814397a4d1..4eabf8b87e7 100644 --- a/addons/report_mrp/i18n/nl_BE.po +++ b/addons/report_mrp/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/nl_NL.po b/addons/report_mrp/i18n/nl_NL.po index df4f872d374..9df7d23fc9c 100644 --- a/addons/report_mrp/i18n/nl_NL.po +++ b/addons/report_mrp/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/pl_PL.po b/addons/report_mrp/i18n/pl_PL.po index 997e0b4eb6a..5be1fe75cb7 100644 --- a/addons/report_mrp/i18n/pl_PL.po +++ b/addons/report_mrp/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/pt_BR.po b/addons/report_mrp/i18n/pt_BR.po index b99923b9d1e..cf6a591152c 100644 --- a/addons/report_mrp/i18n/pt_BR.po +++ b/addons/report_mrp/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/pt_PT.po b/addons/report_mrp/i18n/pt_PT.po index 759a9b0b2e7..20b98aaad36 100644 --- a/addons/report_mrp/i18n/pt_PT.po +++ b/addons/report_mrp/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+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 fdcaec0d36e..54701633201 100644 --- a/addons/report_mrp/i18n/report_mrp.pot +++ b/addons/report_mrp/i18n/report_mrp.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/ro_RO.po b/addons/report_mrp/i18n/ro_RO.po index dbfff585c14..659f8dc1890 100644 --- a/addons/report_mrp/i18n/ro_RO.po +++ b/addons/report_mrp/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/ru_RU.po b/addons/report_mrp/i18n/ru_RU.po index bcb3b549771..79ace064d61 100644 --- a/addons/report_mrp/i18n/ru_RU.po +++ b/addons/report_mrp/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/sl_SL.po b/addons/report_mrp/i18n/sl_SL.po index b18fe7f66ff..3cb4dc2606e 100644 --- a/addons/report_mrp/i18n/sl_SL.po +++ b/addons/report_mrp/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/cs_CS.po b/addons/report_mrp/i18n/sq_AL.po similarity index 94% rename from addons/report_mrp/i18n/cs_CS.po rename to addons/report_mrp/i18n/sq_AL.po index d655104358f..113c750364c 100644 --- a/addons/report_mrp/i18n/cs_CS.po +++ b/addons/report_mrp/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/sv_SE.po b/addons/report_mrp/i18n/sv_SE.po index 7c4111bb8b7..b21d10da2cc 100644 --- a/addons/report_mrp/i18n/sv_SE.po +++ b/addons/report_mrp/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/tr_TR.po b/addons/report_mrp/i18n/tr_TR.po index 6ed74f37327..8db79b2e384 100644 --- a/addons/report_mrp/i18n/tr_TR.po +++ b/addons/report_mrp/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/uk_UK.po b/addons/report_mrp/i18n/uk_UA.po similarity index 95% rename from addons/report_mrp/i18n/uk_UK.po rename to addons/report_mrp/i18n/uk_UA.po index 0265aca31ac..a13522cb3d6 100644 --- a/addons/report_mrp/i18n/uk_UK.po +++ b/addons/report_mrp/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/sv_SV.po b/addons/report_mrp/i18n/vi_VN.po similarity index 90% rename from addons/report_mrp/i18n/sv_SV.po rename to addons/report_mrp/i18n/vi_VN.po index 02ec8f66e34..3852145076e 100644 --- a/addons/report_mrp/i18n/sv_SV.po +++ b/addons/report_mrp/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "" #. module: report_mrp #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_mrp #: view:report.workcenter.load:0 diff --git a/addons/report_mrp/i18n/zh_CN.po b/addons/report_mrp/i18n/zh_CN.po index 6a57796e4bd..44188d4caea 100644 --- a/addons/report_mrp/i18n/zh_CN.po +++ b/addons/report_mrp/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/zh_TW.po b/addons/report_mrp/i18n/zh_TW.po index 192828b47c6..67579eb116b 100644 --- a/addons/report_mrp/i18n/zh_TW.po +++ b/addons/report_mrp/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/ar_AR.po b/addons/report_project/i18n/ar_AR.po index ca663fffe6c..5ea1d60270f 100644 --- a/addons/report_project/i18n/ar_AR.po +++ b/addons/report_project/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/bg_BG.po b/addons/report_project/i18n/bg_BG.po index d194237bc41..6a274336021 100644 --- a/addons/report_project/i18n/bg_BG.po +++ b/addons/report_project/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/bs_BS.po b/addons/report_project/i18n/bs_BS.po index 6005c442926..1a9627ff38f 100644 --- a/addons/report_project/i18n/bs_BS.po +++ b/addons/report_project/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/ca_ES.po b/addons/report_project/i18n/ca_ES.po index 369d6298ce7..d8c6b2dc915 100644 --- a/addons/report_project/i18n/ca_ES.po +++ b/addons/report_project/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/cs_CZ.po b/addons/report_project/i18n/cs_CZ.po index 5ecb89c8f8b..829db3147c3 100644 --- a/addons/report_project/i18n/cs_CZ.po +++ b/addons/report_project/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/de_DE.po b/addons/report_project/i18n/de_DE.po index b1945ac3926..dea5081ca8b 100644 --- a/addons/report_project/i18n/de_DE.po +++ b/addons/report_project/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/es_AR.po b/addons/report_project/i18n/es_AR.po index e6798c29e70..2e4c77ffa68 100644 --- a/addons/report_project/i18n/es_AR.po +++ b/addons/report_project/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/es_ES.po b/addons/report_project/i18n/es_ES.po index b72b2270f4d..fb9dfaef74b 100644 --- a/addons/report_project/i18n/es_ES.po +++ b/addons/report_project/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/et_EE.po b/addons/report_project/i18n/et_EE.po index de0dbc0e14c..403655b5253 100644 --- a/addons/report_project/i18n/et_EE.po +++ b/addons/report_project/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/fi_FI.po b/addons/report_project/i18n/fi_FI.po index d9a47a87be2..bd08ae6f7ae 100644 --- a/addons/report_project/i18n/fi_FI.po +++ b/addons/report_project/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/fr_FR.po b/addons/report_project/i18n/fr_FR.po index d87f7348cc6..87ef7611ded 100644 --- a/addons/report_project/i18n/fr_FR.po +++ b/addons/report_project/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "Tâches Fermées par Projet et Utilisateur" #. module: report_project #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_project #: model:ir.actions.act_window,name:report_project.action_project_task_user_tree_month diff --git a/addons/report_project/i18n/hr_HR.po b/addons/report_project/i18n/hr_HR.po index b9fe78a780f..5fd7c910971 100644 --- a/addons/report_project/i18n/hr_HR.po +++ b/addons/report_project/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/hu_HU.po b/addons/report_project/i18n/hu_HU.po index 90322730f2f..e2cb79c0a4f 100644 --- a/addons/report_project/i18n/hu_HU.po +++ b/addons/report_project/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/id_ID.po b/addons/report_project/i18n/id_ID.po index 0692491a0da..f3a8d0e515c 100644 --- a/addons/report_project/i18n/id_ID.po +++ b/addons/report_project/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/it_IT.po b/addons/report_project/i18n/it_IT.po index a43ea0f6f83..0bdf687152b 100644 --- a/addons/report_project/i18n/it_IT.po +++ b/addons/report_project/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/ko_KO.po b/addons/report_project/i18n/ko_KO.po index ce31817e7b9..a4c1692f84b 100644 --- a/addons/report_project/i18n/ko_KO.po +++ b/addons/report_project/i18n/ko_KO.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:05+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_project diff --git a/addons/report_project/i18n/lt_LT.po b/addons/report_project/i18n/lt_LT.po index d98c97c94c4..4ab304b6a27 100644 --- a/addons/report_project/i18n/lt_LT.po +++ b/addons/report_project/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/nl_BE.po b/addons/report_project/i18n/nl_BE.po index 2726736a763..8e2fe91099c 100644 --- a/addons/report_project/i18n/nl_BE.po +++ b/addons/report_project/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/nl_NL.po b/addons/report_project/i18n/nl_NL.po index 15ee05a6393..706f2c43b39 100644 --- a/addons/report_project/i18n/nl_NL.po +++ b/addons/report_project/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/pl_PL.po b/addons/report_project/i18n/pl_PL.po index 1ea937675bb..5ef7512664e 100644 --- a/addons/report_project/i18n/pl_PL.po +++ b/addons/report_project/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/pt_BR.po b/addons/report_project/i18n/pt_BR.po index d918617c98a..b94290440ff 100644 --- a/addons/report_project/i18n/pt_BR.po +++ b/addons/report_project/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/pt_PT.po b/addons/report_project/i18n/pt_PT.po index 2a8b57f63d2..bbdde542d5a 100644 --- a/addons/report_project/i18n/pt_PT.po +++ b/addons/report_project/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+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 9d124722b5d..77501185651 100644 --- a/addons/report_project/i18n/report_project.pot +++ b/addons/report_project/i18n/report_project.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/ro_RO.po b/addons/report_project/i18n/ro_RO.po index 14242dba739..cceba3e2d42 100644 --- a/addons/report_project/i18n/ro_RO.po +++ b/addons/report_project/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/ru_RU.po b/addons/report_project/i18n/ru_RU.po index d771a87c8dd..af748c2564f 100644 --- a/addons/report_project/i18n/ru_RU.po +++ b/addons/report_project/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/sl_SL.po b/addons/report_project/i18n/sl_SL.po index 22edd26f1c8..71f036e300b 100644 --- a/addons/report_project/i18n/sl_SL.po +++ b/addons/report_project/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/cs_CS.po b/addons/report_project/i18n/sq_AL.po similarity index 96% rename from addons/report_project/i18n/cs_CS.po rename to addons/report_project/i18n/sq_AL.po index f04ef95cc38..daafeadee38 100644 --- a/addons/report_project/i18n/cs_CS.po +++ b/addons/report_project/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/sv_SE.po b/addons/report_project/i18n/sv_SE.po index ed060726523..b629d28e2fa 100644 --- a/addons/report_project/i18n/sv_SE.po +++ b/addons/report_project/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/tr_TR.po b/addons/report_project/i18n/tr_TR.po index 9235ef515eb..fa456768cd3 100644 --- a/addons/report_project/i18n/tr_TR.po +++ b/addons/report_project/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/uk_UK.po b/addons/report_project/i18n/uk_UA.po similarity index 96% rename from addons/report_project/i18n/uk_UK.po rename to addons/report_project/i18n/uk_UA.po index 6e165b09602..3785276e75a 100644 --- a/addons/report_project/i18n/uk_UK.po +++ b/addons/report_project/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/sv_SV.po b/addons/report_project/i18n/vi_VN.po similarity index 94% rename from addons/report_project/i18n/sv_SV.po rename to addons/report_project/i18n/vi_VN.po index 4dc19117e39..179f0517c12 100644 --- a/addons/report_project/i18n/sv_SV.po +++ b/addons/report_project/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgstr "" #. module: report_project #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_project #: model:ir.actions.act_window,name:report_project.action_project_task_user_tree diff --git a/addons/report_project/i18n/zh_CN.po b/addons/report_project/i18n/zh_CN.po index b83e7013a57..90107ae4fb1 100644 --- a/addons/report_project/i18n/zh_CN.po +++ b/addons/report_project/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/zh_TW.po b/addons/report_project/i18n/zh_TW.po index 050f77dae93..0375c6b0341 100644 --- a/addons/report_project/i18n/zh_TW.po +++ b/addons/report_project/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/ar_AR.po b/addons/report_purchase/i18n/ar_AR.po index ea11f157c2e..46167598425 100644 --- a/addons/report_purchase/i18n/ar_AR.po +++ b/addons/report_purchase/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/bg_BG.po b/addons/report_purchase/i18n/bg_BG.po index c035e56a98a..612a3322d52 100644 --- a/addons/report_purchase/i18n/bg_BG.po +++ b/addons/report_purchase/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/bs_BS.po b/addons/report_purchase/i18n/bs_BS.po index a6a0f9f4980..d968a99c435 100644 --- a/addons/report_purchase/i18n/bs_BS.po +++ b/addons/report_purchase/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/ca_ES.po b/addons/report_purchase/i18n/ca_ES.po index 3743c8dd3bd..4eb16f1baae 100644 --- a/addons/report_purchase/i18n/ca_ES.po +++ b/addons/report_purchase/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/cs_CZ.po b/addons/report_purchase/i18n/cs_CZ.po index f20eb686b3b..279d5b6d4a9 100644 --- a/addons/report_purchase/i18n/cs_CZ.po +++ b/addons/report_purchase/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/de_DE.po b/addons/report_purchase/i18n/de_DE.po index baf5b43efb4..da4299d13d9 100644 --- a/addons/report_purchase/i18n/de_DE.po +++ b/addons/report_purchase/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/es_AR.po b/addons/report_purchase/i18n/es_AR.po index 35f1261104a..106ae18677f 100644 --- a/addons/report_purchase/i18n/es_AR.po +++ b/addons/report_purchase/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/es_ES.po b/addons/report_purchase/i18n/es_ES.po index fbd19ad7db1..2f344606dcb 100644 --- a/addons/report_purchase/i18n/es_ES.po +++ b/addons/report_purchase/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/et_EE.po b/addons/report_purchase/i18n/et_EE.po index 26d68a608ac..5dd86c8f13e 100644 --- a/addons/report_purchase/i18n/et_EE.po +++ b/addons/report_purchase/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/fi_FI.po b/addons/report_purchase/i18n/fi_FI.po index 0fce3169d17..54a46fce84d 100644 --- a/addons/report_purchase/i18n/fi_FI.po +++ b/addons/report_purchase/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/fr_FR.po b/addons/report_purchase/i18n/fr_FR.po index 87604e4fa47..554f41d3842 100644 --- a/addons/report_purchase/i18n/fr_FR.po +++ b/addons/report_purchase/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "Commandes d'achats par Produits" #. module: report_purchase #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_purchase #: model:ir.ui.menu,name:report_purchase.next_id_75 diff --git a/addons/report_purchase/i18n/hr_HR.po b/addons/report_purchase/i18n/hr_HR.po index e5eb8fb7342..cf68d6bc349 100644 --- a/addons/report_purchase/i18n/hr_HR.po +++ b/addons/report_purchase/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/hu_HU.po b/addons/report_purchase/i18n/hu_HU.po index dd1616e1d66..e4ced0938f0 100644 --- a/addons/report_purchase/i18n/hu_HU.po +++ b/addons/report_purchase/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/id_ID.po b/addons/report_purchase/i18n/id_ID.po index 949d08d6c90..6737c99684e 100644 --- a/addons/report_purchase/i18n/id_ID.po +++ b/addons/report_purchase/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/it_IT.po b/addons/report_purchase/i18n/it_IT.po index 9ea10c5ded6..d24321ddfe1 100644 --- a/addons/report_purchase/i18n/it_IT.po +++ b/addons/report_purchase/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/lt_LT.po b/addons/report_purchase/i18n/lt_LT.po index 9c6c5db9d64..faaa3c84c82 100644 --- a/addons/report_purchase/i18n/lt_LT.po +++ b/addons/report_purchase/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/nl_BE.po b/addons/report_purchase/i18n/nl_BE.po index 63247471773..60b22452aa4 100644 --- a/addons/report_purchase/i18n/nl_BE.po +++ b/addons/report_purchase/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/nl_NL.po b/addons/report_purchase/i18n/nl_NL.po index 48baf9b9845..9280f17bca4 100644 --- a/addons/report_purchase/i18n/nl_NL.po +++ b/addons/report_purchase/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/pl_PL.po b/addons/report_purchase/i18n/pl_PL.po index 740c56d4026..8163423fc61 100644 --- a/addons/report_purchase/i18n/pl_PL.po +++ b/addons/report_purchase/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/pt_BR.po b/addons/report_purchase/i18n/pt_BR.po index e6a73c92727..6f8c6e83ced 100644 --- a/addons/report_purchase/i18n/pt_BR.po +++ b/addons/report_purchase/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/pt_PT.po b/addons/report_purchase/i18n/pt_PT.po index 3466deafd93..c7b56d074f1 100644 --- a/addons/report_purchase/i18n/pt_PT.po +++ b/addons/report_purchase/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+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 88faa5f6fe3..f0b4e0d4884 100644 --- a/addons/report_purchase/i18n/report_purchase.pot +++ b/addons/report_purchase/i18n/report_purchase.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/ro_RO.po b/addons/report_purchase/i18n/ro_RO.po index 45aca7d1119..017a3a5d64d 100644 --- a/addons/report_purchase/i18n/ro_RO.po +++ b/addons/report_purchase/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/ru_RU.po b/addons/report_purchase/i18n/ru_RU.po index f0b1007a779..b5bb8a5432b 100644 --- a/addons/report_purchase/i18n/ru_RU.po +++ b/addons/report_purchase/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/sl_SL.po b/addons/report_purchase/i18n/sl_SL.po index 20b758991ba..2ee605fe1d1 100644 --- a/addons/report_purchase/i18n/sl_SL.po +++ b/addons/report_purchase/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/cs_CS.po b/addons/report_purchase/i18n/sq_AL.po similarity index 97% rename from addons/report_purchase/i18n/cs_CS.po rename to addons/report_purchase/i18n/sq_AL.po index 107191dca5d..c8281564ccb 100644 --- a/addons/report_purchase/i18n/cs_CS.po +++ b/addons/report_purchase/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/sv_SE.po b/addons/report_purchase/i18n/sv_SE.po index a1d638ca70a..8ea96aa4d13 100644 --- a/addons/report_purchase/i18n/sv_SE.po +++ b/addons/report_purchase/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/tr_TR.po b/addons/report_purchase/i18n/tr_TR.po index b2f669418fd..2e4eb44dae9 100644 --- a/addons/report_purchase/i18n/tr_TR.po +++ b/addons/report_purchase/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/uk_UK.po b/addons/report_purchase/i18n/uk_UA.po similarity index 97% rename from addons/report_purchase/i18n/uk_UK.po rename to addons/report_purchase/i18n/uk_UA.po index d0ab8f6306f..abf98d38a0c 100644 --- a/addons/report_purchase/i18n/uk_UK.po +++ b/addons/report_purchase/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/sv_SV.po b/addons/report_purchase/i18n/vi_VN.po similarity index 95% rename from addons/report_purchase/i18n/sv_SV.po rename to addons/report_purchase/i18n/vi_VN.po index 5cff2a08466..924eaaea802 100644 --- a/addons/report_purchase/i18n/sv_SV.po +++ b/addons/report_purchase/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" #. module: report_purchase #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_purchase #: selection:report.purchase.order.category,state:0 diff --git a/addons/report_purchase/i18n/zh_CN.po b/addons/report_purchase/i18n/zh_CN.po index 8b003547ac1..f7cf79046e9 100644 --- a/addons/report_purchase/i18n/zh_CN.po +++ b/addons/report_purchase/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/zh_TW.po b/addons/report_purchase/i18n/zh_TW.po index 492ebf5c74c..89f6b43b93e 100644 --- a/addons/report_purchase/i18n/zh_TW.po +++ b/addons/report_purchase/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/ar_AR.po b/addons/report_sale/i18n/ar_AR.po index 2aac0074760..123d39ae938 100644 --- a/addons/report_sale/i18n/ar_AR.po +++ b/addons/report_sale/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/bg_BG.po b/addons/report_sale/i18n/bg_BG.po index 158c02e3638..e7c046ccfe7 100644 --- a/addons/report_sale/i18n/bg_BG.po +++ b/addons/report_sale/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/bs_BS.po b/addons/report_sale/i18n/bs_BS.po index 747e69e52ef..38170666e69 100644 --- a/addons/report_sale/i18n/bs_BS.po +++ b/addons/report_sale/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/ca_ES.po b/addons/report_sale/i18n/ca_ES.po index 5c79b896592..83397e6ebbc 100644 --- a/addons/report_sale/i18n/ca_ES.po +++ b/addons/report_sale/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/cs_CZ.po b/addons/report_sale/i18n/cs_CZ.po index b960275c217..ef71d259e33 100644 --- a/addons/report_sale/i18n/cs_CZ.po +++ b/addons/report_sale/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/de_DE.po b/addons/report_sale/i18n/de_DE.po index 286c71d32ab..9d9416c0939 100644 --- a/addons/report_sale/i18n/de_DE.po +++ b/addons/report_sale/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/es_AR.po b/addons/report_sale/i18n/es_AR.po index f75a521317b..0cc6cfaf834 100644 --- a/addons/report_sale/i18n/es_AR.po +++ b/addons/report_sale/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/es_ES.po b/addons/report_sale/i18n/es_ES.po index 0ce0d429f63..c4021c8f540 100644 --- a/addons/report_sale/i18n/es_ES.po +++ b/addons/report_sale/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/et_EE.po b/addons/report_sale/i18n/et_EE.po index c71e37d25de..a14358d1b3e 100644 --- a/addons/report_sale/i18n/et_EE.po +++ b/addons/report_sale/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/fi_FI.po b/addons/report_sale/i18n/fi_FI.po index ba05ebc10e8..2eb5383a032 100644 --- a/addons/report_sale/i18n/fi_FI.po +++ b/addons/report_sale/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/fr_FR.po b/addons/report_sale/i18n/fr_FR.po index f703a69d934..93e7f8cbf70 100644 --- a/addons/report_sale/i18n/fr_FR.po +++ b/addons/report_sale/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "" #. module: report_sale #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_sale #: model:ir.ui.menu,name:report_sale.next_id_82 diff --git a/addons/report_sale/i18n/hr_HR.po b/addons/report_sale/i18n/hr_HR.po index 12db89f587e..ebd6d11f69a 100644 --- a/addons/report_sale/i18n/hr_HR.po +++ b/addons/report_sale/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/hu_HU.po b/addons/report_sale/i18n/hu_HU.po index 299fc8c2203..6cadba995aa 100644 --- a/addons/report_sale/i18n/hu_HU.po +++ b/addons/report_sale/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/id_ID.po b/addons/report_sale/i18n/id_ID.po index 6352157098b..a1a4f7ad3ae 100644 --- a/addons/report_sale/i18n/id_ID.po +++ b/addons/report_sale/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/it_IT.po b/addons/report_sale/i18n/it_IT.po index 453f35ca5b5..e53bf63d3e0 100644 --- a/addons/report_sale/i18n/it_IT.po +++ b/addons/report_sale/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/lt_LT.po b/addons/report_sale/i18n/lt_LT.po index 344c59e5e64..33528f5f921 100644 --- a/addons/report_sale/i18n/lt_LT.po +++ b/addons/report_sale/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/nl_BE.po b/addons/report_sale/i18n/nl_BE.po index 3050e785f56..da72bb6606e 100644 --- a/addons/report_sale/i18n/nl_BE.po +++ b/addons/report_sale/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/nl_NL.po b/addons/report_sale/i18n/nl_NL.po index aa83675d90a..cb81a788909 100644 --- a/addons/report_sale/i18n/nl_NL.po +++ b/addons/report_sale/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/pl_PL.po b/addons/report_sale/i18n/pl_PL.po index 551f1804f26..4671e33a000 100644 --- a/addons/report_sale/i18n/pl_PL.po +++ b/addons/report_sale/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/pt_BR.po b/addons/report_sale/i18n/pt_BR.po index db2ddbf6b05..eafdb1abe1a 100644 --- a/addons/report_sale/i18n/pt_BR.po +++ b/addons/report_sale/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/pt_PT.po b/addons/report_sale/i18n/pt_PT.po index 884b32840de..d74ec1cb14f 100644 --- a/addons/report_sale/i18n/pt_PT.po +++ b/addons/report_sale/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+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 342349a8ad5..2a264b464c8 100644 --- a/addons/report_sale/i18n/report_sale.pot +++ b/addons/report_sale/i18n/report_sale.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/ro_RO.po b/addons/report_sale/i18n/ro_RO.po index 3f84f62544b..cf08839731c 100644 --- a/addons/report_sale/i18n/ro_RO.po +++ b/addons/report_sale/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/ru_RU.po b/addons/report_sale/i18n/ru_RU.po index 633027be842..13047008975 100644 --- a/addons/report_sale/i18n/ru_RU.po +++ b/addons/report_sale/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/sl_SL.po b/addons/report_sale/i18n/sl_SL.po index 85791bf9964..8f1b751d985 100644 --- a/addons/report_sale/i18n/sl_SL.po +++ b/addons/report_sale/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/cs_CS.po b/addons/report_sale/i18n/sq_AL.po similarity index 98% rename from addons/report_sale/i18n/cs_CS.po rename to addons/report_sale/i18n/sq_AL.po index c86dd946552..2738487c354 100644 --- a/addons/report_sale/i18n/cs_CS.po +++ b/addons/report_sale/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/sv_SE.po b/addons/report_sale/i18n/sv_SE.po index fed54a20276..1a94e31069b 100644 --- a/addons/report_sale/i18n/sv_SE.po +++ b/addons/report_sale/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/tr_TR.po b/addons/report_sale/i18n/tr_TR.po index 62648951856..e167bf1d980 100644 --- a/addons/report_sale/i18n/tr_TR.po +++ b/addons/report_sale/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/uk_UK.po b/addons/report_sale/i18n/uk_UA.po similarity index 98% rename from addons/report_sale/i18n/uk_UK.po rename to addons/report_sale/i18n/uk_UA.po index d2655a30223..1a5f3b504cc 100644 --- a/addons/report_sale/i18n/uk_UK.po +++ b/addons/report_sale/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/sv_SV.po b/addons/report_sale/i18n/vi_VN.po similarity index 97% rename from addons/report_sale/i18n/sv_SV.po rename to addons/report_sale/i18n/vi_VN.po index 39c730ac386..e388a71079c 100644 --- a/addons/report_sale/i18n/sv_SV.po +++ b/addons/report_sale/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:37+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" #. module: report_sale #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_sale #: selection:report.sale.order.category,state:0 diff --git a/addons/report_sale/i18n/zh_CN.po b/addons/report_sale/i18n/zh_CN.po index e89e7f8a4ef..ac219070121 100644 --- a/addons/report_sale/i18n/zh_CN.po +++ b/addons/report_sale/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/zh_TW.po b/addons/report_sale/i18n/zh_TW.po index e29ca1a0ecc..9467a0aa268 100644 --- a/addons/report_sale/i18n/zh_TW.po +++ b/addons/report_sale/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/ar_AR.po b/addons/report_task/i18n/ar_AR.po index 6c141a0af12..db3372afe22 100644 --- a/addons/report_task/i18n/ar_AR.po +++ b/addons/report_task/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:41+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/bg_BG.po b/addons/report_task/i18n/bg_BG.po index 6c141a0af12..b9101a2e532 100644 --- a/addons/report_task/i18n/bg_BG.po +++ b/addons/report_task/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:41+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" #. module: report_task #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" +msgstr "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални символи!" #. module: report_task #: field:report.closed.task,remaining_hours:0 @@ -119,7 +119,7 @@ msgstr "" #. module: report_task #: model:ir.ui.menu,name:report_task.next_id_57 msgid "Reporting" -msgstr "" +msgstr "Справки" #. module: report_task #: model:ir.module.module,description:report_task.module_meta_information @@ -157,7 +157,7 @@ msgstr "" #. module: report_task #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "Невалиден XML за преглед на архитектурата" #. module: report_task #: field:report.closed.task,delay_hours:0 diff --git a/addons/report_task/i18n/bs_BS.po b/addons/report_task/i18n/bs_BS.po index 2475a283916..2d60ab55ab7 100644 --- a/addons/report_task/i18n/bs_BS.po +++ b/addons/report_task/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:41+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/ca_ES.po b/addons/report_task/i18n/ca_ES.po index a4dc9b04fb5..12472e169e7 100644 --- a/addons/report_task/i18n/ca_ES.po +++ b/addons/report_task/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:42+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" #. module: report_task #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" +msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" #. module: report_task #: field:report.closed.task,remaining_hours:0 @@ -119,7 +119,7 @@ msgstr "" #. module: report_task #: model:ir.ui.menu,name:report_task.next_id_57 msgid "Reporting" -msgstr "" +msgstr "Informe" #. module: report_task #: model:ir.module.module,description:report_task.module_meta_information @@ -157,7 +157,7 @@ msgstr "" #. module: report_task #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "XML invàlid per a la definició de la vista!" #. module: report_task #: field:report.closed.task,delay_hours:0 @@ -182,7 +182,7 @@ msgstr "" #. module: report_task #: model:ir.model,name:report_task.model_report_task_user_pipeline_open msgid "Tasks by user and project" -msgstr "" +msgstr "Tasques per usuari i projecte" #. module: report_task #: view:report.closed.task:0 diff --git a/addons/report_task/i18n/cs_CZ.po b/addons/report_task/i18n/cs_CZ.po index 4f6339ef0fa..4bba287f5ba 100644 --- a/addons/report_task/i18n/cs_CZ.po +++ b/addons/report_task/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:43+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:43+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/de_DE.po b/addons/report_task/i18n/de_DE.po index 2d7a1e77d73..0982e7fc626 100644 --- a/addons/report_task/i18n/de_DE.po +++ b/addons/report_task/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:45+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:45+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" #. module: report_task #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" +msgstr "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen beinhalten" #. module: report_task #: field:report.closed.task,remaining_hours:0 @@ -119,7 +119,7 @@ msgstr "" #. module: report_task #: model:ir.ui.menu,name:report_task.next_id_57 msgid "Reporting" -msgstr "" +msgstr "Berichtswesen" #. module: report_task #: model:ir.module.module,description:report_task.module_meta_information @@ -157,7 +157,7 @@ msgstr "" #. module: report_task #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "Fehlerhafter xml Code für diese Ansicht!" #. module: report_task #: field:report.closed.task,delay_hours:0 @@ -182,7 +182,7 @@ msgstr "" #. module: report_task #: model:ir.model,name:report_task.model_report_task_user_pipeline_open msgid "Tasks by user and project" -msgstr "" +msgstr "Aufgaben nach Benutzer und Projekt" #. module: report_task #: view:report.closed.task:0 diff --git a/addons/report_task/i18n/es_AR.po b/addons/report_task/i18n/es_AR.po index a2e8c55417c..af52f5c6b2e 100644 --- a/addons/report_task/i18n/es_AR.po +++ b/addons/report_task/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:48+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:48+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/es_ES.po b/addons/report_task/i18n/es_ES.po index affb7e404f8..e243c70a5fd 100644 --- a/addons/report_task/i18n/es_ES.po +++ b/addons/report_task/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:48+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:48+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -182,7 +182,7 @@ msgstr "" #. module: report_task #: model:ir.model,name:report_task.model_report_task_user_pipeline_open msgid "Tasks by user and project" -msgstr "" +msgstr "Tareas por usuario y proyecto" #. module: report_task #: view:report.closed.task:0 diff --git a/addons/report_task/i18n/et_EE.po b/addons/report_task/i18n/et_EE.po index 214da023a0f..44ee894292e 100644 --- a/addons/report_task/i18n/et_EE.po +++ b/addons/report_task/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:44+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:44+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -182,7 +182,7 @@ msgstr "" #. module: report_task #: model:ir.model,name:report_task.model_report_task_user_pipeline_open msgid "Tasks by user and project" -msgstr "" +msgstr "Ülesanded kasutaja ja projektijärgi" #. module: report_task #: view:report.closed.task:0 diff --git a/addons/report_task/i18n/fi_FI.po b/addons/report_task/i18n/fi_FI.po index 52395343f9e..aeb55dbd2db 100644 --- a/addons/report_task/i18n/fi_FI.po +++ b/addons/report_task/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:49+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/fr_FR.po b/addons/report_task/i18n/fr_FR.po index 4c8a9990a43..002535c82da 100644 --- a/addons/report_task/i18n/fr_FR.po +++ b/addons/report_task/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:44+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:44+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -182,7 +182,7 @@ msgstr "" #. module: report_task #: model:ir.model,name:report_task.model_report_task_user_pipeline_open msgid "Tasks by user and project" -msgstr "" +msgstr "Tâches par utilisateur et par projet" #. module: report_task #: view:report.closed.task:0 diff --git a/addons/report_task/i18n/hr_HR.po b/addons/report_task/i18n/hr_HR.po index 4f6339ef0fa..a408d97b93f 100644 --- a/addons/report_task/i18n/hr_HR.po +++ b/addons/report_task/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:43+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:43+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/hu_HU.po b/addons/report_task/i18n/hu_HU.po index 2d7a1e77d73..0017d977ffa 100644 --- a/addons/report_task/i18n/hu_HU.po +++ b/addons/report_task/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:45+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:45+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/id_ID.po b/addons/report_task/i18n/id_ID.po index a0807ac7f37..482e64ddb4c 100644 --- a/addons/report_task/i18n/id_ID.po +++ b/addons/report_task/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:45+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:45+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/it_IT.po b/addons/report_task/i18n/it_IT.po index 0dcceea6212..68e178d08b1 100644 --- a/addons/report_task/i18n/it_IT.po +++ b/addons/report_task/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:45+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:45+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -182,7 +182,7 @@ msgstr "" #. module: report_task #: model:ir.model,name:report_task.model_report_task_user_pipeline_open msgid "Tasks by user and project" -msgstr "" +msgstr "Attività per Utente e Progetto" #. module: report_task #: view:report.closed.task:0 diff --git a/addons/report_task/i18n/lt_LT.po b/addons/report_task/i18n/lt_LT.po index ef4bcc05b01..41a246640c7 100644 --- a/addons/report_task/i18n/lt_LT.po +++ b/addons/report_task/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:46+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:46+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:28+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/nl_BE.po b/addons/report_task/i18n/nl_BE.po index 12a5df622f0..cc22efee68f 100644 --- a/addons/report_task/i18n/nl_BE.po +++ b/addons/report_task/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:43+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:43+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/nl_NL.po b/addons/report_task/i18n/nl_NL.po index 06bf113030f..2f11f01c709 100644 --- a/addons/report_task/i18n/nl_NL.po +++ b/addons/report_task/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:44+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:44+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" #. module: report_task #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" +msgstr "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" #. module: report_task #: field:report.closed.task,remaining_hours:0 @@ -119,7 +119,7 @@ msgstr "" #. module: report_task #: model:ir.ui.menu,name:report_task.next_id_57 msgid "Reporting" -msgstr "" +msgstr "Rapportering" #. module: report_task #: model:ir.module.module,description:report_task.module_meta_information @@ -157,7 +157,7 @@ msgstr "" #. module: report_task #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "Ongeldige XML voor overzicht" #. module: report_task #: field:report.closed.task,delay_hours:0 diff --git a/addons/report_task/i18n/pl_PL.po b/addons/report_task/i18n/pl_PL.po index 74a4a46bcbc..380f8c03356 100644 --- a/addons/report_task/i18n/pl_PL.po +++ b/addons/report_task/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:46+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:46+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/pt_BR.po b/addons/report_task/i18n/pt_BR.po index ef4bcc05b01..180a7a59c4c 100644 --- a/addons/report_task/i18n/pt_BR.po +++ b/addons/report_task/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:46+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:46+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" #. module: report_task #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" +msgstr "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter especial!" #. module: report_task #: field:report.closed.task,remaining_hours:0 @@ -119,7 +119,7 @@ msgstr "" #. module: report_task #: model:ir.ui.menu,name:report_task.next_id_57 msgid "Reporting" -msgstr "" +msgstr "Relatórios" #. module: report_task #: model:ir.module.module,description:report_task.module_meta_information @@ -157,7 +157,7 @@ msgstr "" #. module: report_task #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "Invalido XML para Arquitetura da View" #. module: report_task #: field:report.closed.task,delay_hours:0 diff --git a/addons/report_task/i18n/pt_PT.po b/addons/report_task/i18n/pt_PT.po index 411b22288fd..951296600ab 100644 --- a/addons/report_task/i18n/pt_PT.po +++ b/addons/report_task/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:47+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:47+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" #. module: report_task #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" +msgstr "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" #. module: report_task #: field:report.closed.task,remaining_hours:0 @@ -119,7 +119,7 @@ msgstr "" #. module: report_task #: model:ir.ui.menu,name:report_task.next_id_57 msgid "Reporting" -msgstr "" +msgstr "Relatório" #. module: report_task #: model:ir.module.module,description:report_task.module_meta_information @@ -157,7 +157,7 @@ msgstr "" #. module: report_task #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "XML inválido para a arquitectura de vista" #. module: report_task #: field:report.closed.task,delay_hours:0 @@ -182,7 +182,7 @@ msgstr "" #. module: report_task #: model:ir.model,name:report_task.model_report_task_user_pipeline_open msgid "Tasks by user and project" -msgstr "" +msgstr "Tarefas por utilizador e projecto" #. module: report_task #: view:report.closed.task:0 diff --git a/addons/report_task/i18n/report_task.pot b/addons/report_task/i18n/report_task.pot index 584a7ca4f4f..713da323e19 100644 --- a/addons/report_task/i18n/report_task.pot +++ b/addons/report_task/i18n/report_task.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:50+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:50+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/ro_RO.po b/addons/report_task/i18n/ro_RO.po index 411b22288fd..a9ad885def2 100644 --- a/addons/report_task/i18n/ro_RO.po +++ b/addons/report_task/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:47+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:47+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/ru_RU.po b/addons/report_task/i18n/ru_RU.po index 411b22288fd..a0fdd7ebaa9 100644 --- a/addons/report_task/i18n/ru_RU.po +++ b/addons/report_task/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:47+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:47+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" #. module: report_task #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" +msgstr "Название объекта должно начинаться с x_ и не должно содержать специальных символов !" #. module: report_task #: field:report.closed.task,remaining_hours:0 @@ -119,7 +119,7 @@ msgstr "" #. module: report_task #: model:ir.ui.menu,name:report_task.next_id_57 msgid "Reporting" -msgstr "" +msgstr "Отчетность" #. module: report_task #: model:ir.module.module,description:report_task.module_meta_information @@ -157,7 +157,7 @@ msgstr "" #. module: report_task #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "Неправильный XML для просмотра архитектуры!" #. module: report_task #: field:report.closed.task,delay_hours:0 @@ -182,7 +182,7 @@ msgstr "" #. module: report_task #: model:ir.model,name:report_task.model_report_task_user_pipeline_open msgid "Tasks by user and project" -msgstr "" +msgstr "Задания по пользователям и проектам" #. module: report_task #: view:report.closed.task:0 diff --git a/addons/report_task/i18n/sl_SL.po b/addons/report_task/i18n/sl_SL.po index a2e8c55417c..fb216b70959 100644 --- a/addons/report_task/i18n/sl_SL.po +++ b/addons/report_task/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:48+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:48+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" #. module: report_task #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" +msgstr "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." #. module: report_task #: field:report.closed.task,remaining_hours:0 @@ -119,7 +119,7 @@ msgstr "" #. module: report_task #: model:ir.ui.menu,name:report_task.next_id_57 msgid "Reporting" -msgstr "" +msgstr "Poročanje" #. module: report_task #: model:ir.module.module,description:report_task.module_meta_information @@ -157,7 +157,7 @@ msgstr "" #. module: report_task #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "Neveljaven XML za arhitekturo pogleda." #. module: report_task #: field:report.closed.task,delay_hours:0 diff --git a/addons/report_task/i18n/cs_CS.po b/addons/report_task/i18n/sq_AL.po similarity index 97% rename from addons/report_task/i18n/cs_CS.po rename to addons/report_task/i18n/sq_AL.po index 52395343f9e..ef3917aae00 100644 --- a/addons/report_task/i18n/cs_CS.po +++ b/addons/report_task/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:49+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/sv_SE.po b/addons/report_task/i18n/sv_SE.po index 316466f298a..eec7b033033 100644 --- a/addons/report_task/i18n/sv_SE.po +++ b/addons/report_task/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:48+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:48+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/tr_TR.po b/addons/report_task/i18n/tr_TR.po index 39e679b2ad4..063f0af7ba6 100644 --- a/addons/report_task/i18n/tr_TR.po +++ b/addons/report_task/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:49+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/sv_SV.po b/addons/report_task/i18n/uk_UA.po similarity index 93% rename from addons/report_task/i18n/sv_SV.po rename to addons/report_task/i18n/uk_UA.po index 34c2a6853c4..c26b14eea26 100644 --- a/addons/report_task/i18n/sv_SV.po +++ b/addons/report_task/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:50+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" #. module: report_task #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" #. module: report_task #: field:report.closed.task,remaining_hours:0 @@ -119,7 +119,7 @@ msgstr "" #. module: report_task #: model:ir.ui.menu,name:report_task.next_id_57 msgid "Reporting" -msgstr "" +msgstr "Звіти" #. module: report_task #: model:ir.module.module,description:report_task.module_meta_information @@ -157,7 +157,7 @@ msgstr "" #. module: report_task #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "Неправильний XML для Архітектури Вигляду!" #. module: report_task #: field:report.closed.task,delay_hours:0 diff --git a/addons/report_task/i18n/uk_UK.po b/addons/report_task/i18n/vi_VN.po similarity index 97% rename from addons/report_task/i18n/uk_UK.po rename to addons/report_task/i18n/vi_VN.po index 584a7ca4f4f..c6ca4c4dd98 100644 --- a/addons/report_task/i18n/uk_UK.po +++ b/addons/report_task/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:50+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:50+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/zh_CN.po b/addons/report_task/i18n/zh_CN.po index fd7233af159..f456ae9d7f0 100644 --- a/addons/report_task/i18n/zh_CN.po +++ b/addons/report_task/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:42+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_task/i18n/zh_TW.po b/addons/report_task/i18n/zh_TW.po index a4dc9b04fb5..c6b28ef0b7a 100644 --- a/addons/report_task/i18n/zh_TW.po +++ b/addons/report_task/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.3-bzr\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-19 07:46:42+0000\n" -"PO-Revision-Date: 2009-08-19 07:46:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/ar_AR.po b/addons/report_timesheet/i18n/ar_AR.po index bd6f3cdabee..c37af2e01c9 100644 --- a/addons/report_timesheet/i18n/ar_AR.po +++ b/addons/report_timesheet/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/bg_BG.po b/addons/report_timesheet/i18n/bg_BG.po index 7cb612b2e44..0f843db884b 100644 --- a/addons/report_timesheet/i18n/bg_BG.po +++ b/addons/report_timesheet/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/bs_BS.po b/addons/report_timesheet/i18n/bs_BS.po index f905650c291..759038d6296 100644 --- a/addons/report_timesheet/i18n/bs_BS.po +++ b/addons/report_timesheet/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/ca_ES.po b/addons/report_timesheet/i18n/ca_ES.po index 432403959cd..54051b4cf04 100644 --- a/addons/report_timesheet/i18n/ca_ES.po +++ b/addons/report_timesheet/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/cs_CZ.po b/addons/report_timesheet/i18n/cs_CZ.po index 58add6cf17a..261b56615da 100644 --- a/addons/report_timesheet/i18n/cs_CZ.po +++ b/addons/report_timesheet/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/de_DE.po b/addons/report_timesheet/i18n/de_DE.po index 4835c271432..4e51dcbd462 100644 --- a/addons/report_timesheet/i18n/de_DE.po +++ b/addons/report_timesheet/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/es_AR.po b/addons/report_timesheet/i18n/es_AR.po index ec026d88b19..baf75f61e8f 100644 --- a/addons/report_timesheet/i18n/es_AR.po +++ b/addons/report_timesheet/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/es_ES.po b/addons/report_timesheet/i18n/es_ES.po index 5ca163b54f0..47c4e250d96 100644 --- a/addons/report_timesheet/i18n/es_ES.po +++ b/addons/report_timesheet/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/et_EE.po b/addons/report_timesheet/i18n/et_EE.po index 928df171d32..4fd8d05590d 100644 --- a/addons/report_timesheet/i18n/et_EE.po +++ b/addons/report_timesheet/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/fi_FI.po b/addons/report_timesheet/i18n/fi_FI.po index 28ab2971afc..d0ac8061bf2 100644 --- a/addons/report_timesheet/i18n/fi_FI.po +++ b/addons/report_timesheet/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/fr_FR.po b/addons/report_timesheet/i18n/fr_FR.po index 28c627667e4..5144fb57c31 100644 --- a/addons/report_timesheet/i18n/fr_FR.po +++ b/addons/report_timesheet/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "Feuille de présence" #. module: report_timesheet #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: report_timesheet #: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timehsheet_account diff --git a/addons/report_timesheet/i18n/hr_HR.po b/addons/report_timesheet/i18n/hr_HR.po index bce9057ce69..5069cddc5cf 100644 --- a/addons/report_timesheet/i18n/hr_HR.po +++ b/addons/report_timesheet/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/hu_HU.po b/addons/report_timesheet/i18n/hu_HU.po index 03c3371f50b..de05e19350e 100644 --- a/addons/report_timesheet/i18n/hu_HU.po +++ b/addons/report_timesheet/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/id_ID.po b/addons/report_timesheet/i18n/id_ID.po index 88187263648..c961f6bc314 100644 --- a/addons/report_timesheet/i18n/id_ID.po +++ b/addons/report_timesheet/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/it_IT.po b/addons/report_timesheet/i18n/it_IT.po index 232bb0fe497..c429785fece 100644 --- a/addons/report_timesheet/i18n/it_IT.po +++ b/addons/report_timesheet/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/lt_LT.po b/addons/report_timesheet/i18n/lt_LT.po index 66c6bd463f8..8de5571c9e3 100644 --- a/addons/report_timesheet/i18n/lt_LT.po +++ b/addons/report_timesheet/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/nl_BE.po b/addons/report_timesheet/i18n/nl_BE.po index e72d6fc9864..1dea5388f7e 100644 --- a/addons/report_timesheet/i18n/nl_BE.po +++ b/addons/report_timesheet/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/nl_NL.po b/addons/report_timesheet/i18n/nl_NL.po index ffa30114ea7..9f9b2002c47 100644 --- a/addons/report_timesheet/i18n/nl_NL.po +++ b/addons/report_timesheet/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/pl_PL.po b/addons/report_timesheet/i18n/pl_PL.po index d7836bb619f..ae23ef523a5 100644 --- a/addons/report_timesheet/i18n/pl_PL.po +++ b/addons/report_timesheet/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/pt_BR.po b/addons/report_timesheet/i18n/pt_BR.po index 1441753fcbe..117b0c07b8b 100644 --- a/addons/report_timesheet/i18n/pt_BR.po +++ b/addons/report_timesheet/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/pt_PT.po b/addons/report_timesheet/i18n/pt_PT.po index 6f449acedfc..ed4a8501d88 100644 --- a/addons/report_timesheet/i18n/pt_PT.po +++ b/addons/report_timesheet/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+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 dcea869a880..5a70bc560a9 100644 --- a/addons/report_timesheet/i18n/report_timesheet.pot +++ b/addons/report_timesheet/i18n/report_timesheet.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/ro_RO.po b/addons/report_timesheet/i18n/ro_RO.po index 97a847efd21..518a82172e8 100644 --- a/addons/report_timesheet/i18n/ro_RO.po +++ b/addons/report_timesheet/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/ru_RU.po b/addons/report_timesheet/i18n/ru_RU.po index babe53fb638..14e2dae60ff 100644 --- a/addons/report_timesheet/i18n/ru_RU.po +++ b/addons/report_timesheet/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/sl_SL.po b/addons/report_timesheet/i18n/sl_SL.po index 26d963a103a..ad84f5dcd16 100644 --- a/addons/report_timesheet/i18n/sl_SL.po +++ b/addons/report_timesheet/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/cs_CS.po b/addons/report_timesheet/i18n/sq_AL.po similarity index 98% rename from addons/report_timesheet/i18n/cs_CS.po rename to addons/report_timesheet/i18n/sq_AL.po index 3bd61004407..c30feb0bdf6 100644 --- a/addons/report_timesheet/i18n/cs_CS.po +++ b/addons/report_timesheet/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/sv_SE.po b/addons/report_timesheet/i18n/sv_SE.po index 93d76470c21..c0a6773074b 100644 --- a/addons/report_timesheet/i18n/sv_SE.po +++ b/addons/report_timesheet/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/tr_TR.po b/addons/report_timesheet/i18n/tr_TR.po index 1f76081c20c..36a1115822f 100644 --- a/addons/report_timesheet/i18n/tr_TR.po +++ b/addons/report_timesheet/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/uk_UK.po b/addons/report_timesheet/i18n/uk_UA.po similarity index 98% rename from addons/report_timesheet/i18n/uk_UK.po rename to addons/report_timesheet/i18n/uk_UA.po index 25e8e7c63e6..93fc64559bf 100644 --- a/addons/report_timesheet/i18n/uk_UK.po +++ b/addons/report_timesheet/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/sv_SV.po b/addons/report_timesheet/i18n/vi_VN.po similarity index 97% rename from addons/report_timesheet/i18n/sv_SV.po rename to addons/report_timesheet/i18n/vi_VN.po index afc04e10e27..32359cc5a3b 100644 --- a/addons/report_timesheet/i18n/sv_SV.po +++ b/addons/report_timesheet/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "" #. module: report_timesheet #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: report_timesheet #: view:report_timesheet.account:0 diff --git a/addons/report_timesheet/i18n/zh_CN.po b/addons/report_timesheet/i18n/zh_CN.po index 85c73949199..9417d887b34 100644 --- a/addons/report_timesheet/i18n/zh_CN.po +++ b/addons/report_timesheet/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/zh_TW.po b/addons/report_timesheet/i18n/zh_TW.po index 57c345143aa..37f80bdbe36 100644 --- a/addons/report_timesheet/i18n/zh_TW.po +++ b/addons/report_timesheet/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/ar_AR.po b/addons/sale/i18n/ar_AR.po index b02d2de958f..cbd9221ab62 100644 --- a/addons/sale/i18n/ar_AR.po +++ b/addons/sale/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/bg_BG.po b/addons/sale/i18n/bg_BG.po index 9de5f9f7091..57343843f14 100644 --- a/addons/sale/i18n/bg_BG.po +++ b/addons/sale/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:42+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/bs_BS.po b/addons/sale/i18n/bs_BS.po index 3c3044be5af..536ff30a925 100644 --- a/addons/sale/i18n/bs_BS.po +++ b/addons/sale/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/ca_ES.po b/addons/sale/i18n/ca_ES.po index ec684b25379..a4ab488c94a 100644 --- a/addons/sale/i18n/ca_ES.po +++ b/addons/sale/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/cs_CZ.po b/addons/sale/i18n/cs_CZ.po index 10d2144c296..edd2debfe46 100644 --- a/addons/sale/i18n/cs_CZ.po +++ b/addons/sale/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/de_DE.po b/addons/sale/i18n/de_DE.po index 9d4e1526ac0..00613b35ee2 100644 --- a/addons/sale/i18n/de_DE.po +++ b/addons/sale/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/es_AR.po b/addons/sale/i18n/es_AR.po index 8c3135b4d3c..6a9c6933c48 100644 --- a/addons/sale/i18n/es_AR.po +++ b/addons/sale/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/es_ES.po b/addons/sale/i18n/es_ES.po index 37cade97c48..e7e981ece26 100644 --- a/addons/sale/i18n/es_ES.po +++ b/addons/sale/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/et_EE.po b/addons/sale/i18n/et_EE.po index 52debaf1d67..219752b18b2 100644 --- a/addons/sale/i18n/et_EE.po +++ b/addons/sale/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "Kinnita hinnapakkumine" #. module: sale #: model:process.node,name:sale.process_node_deliveryorder0 msgid "Delivery Order" -msgstr "Tarnetellimus" +msgstr "Tarnekorraldus" #. module: sale #: field:sale.order.line,address_allotment_id:0 @@ -86,7 +86,7 @@ msgstr "Automaatne deklareerimine" #: model:ir.actions.act_window,name:sale.action_order_line_tree3 #: model:ir.ui.menu,name:sale.menu_action_order_line_tree3 msgid "Uninvoiced and Delivered Lines" -msgstr "Arveldamata ja kättetoimetatud read" +msgstr "Arveldamata ja kohaletoimetatud read" #. module: sale #: view:sale.order:0 @@ -106,7 +106,7 @@ msgstr "See on nimekiri noppelehtedest, mis on genereeritud sellele arvele." #. module: sale #: model:process.node,note:sale.process_node_deliveryorder0 msgid "Delivery, from the warehouse to the customer." -msgstr "Kättetoimetamine laost kliendile." +msgstr "Kohaletoimetamine laost kliendile." #. module: sale #: model:ir.model,name:sale.model_sale_config_picking_policy @@ -137,7 +137,7 @@ msgstr "Kui kinnita nuppu vajutatakse siis mustandi olek muudetakse manuaalseks #: model:process.transition.action,name:sale.process_transition_action_cancelorder0 #: view:sale.order:0 msgid "Cancel Order" -msgstr "Tühista tellimus" +msgstr "Tühista korraldus" #. module: sale #: field:sale.order.line,move_ids:0 @@ -160,7 +160,7 @@ msgstr "Märkmed" #. module: sale #: model:process.transition,name:sale.process_transition_invoiceafterdelivery0 msgid "Invoice after delivery" -msgstr "Arvelda pärast kättetoimetamist" +msgstr "Arvelda pärast kohaletoimetamist" #. module: sale #: field:sale.order,amount_tax:0 @@ -187,7 +187,7 @@ msgstr "" #. module: sale #: selection:sale.order,state:0 msgid "Shipping Exception" -msgstr "Kättetoimetamise erand" +msgstr "Kohaletoimetamise erand" #. module: sale #: field:sale.order,amount_total:0 @@ -375,7 +375,7 @@ msgstr "Kui sa valid Tarnepoliitikaks 'Automaatne arve pärast tarnimist' siis a #. module: sale #: selection:sale.order,picking_policy:0 msgid "Complete Delivery" -msgstr "Täielik kättetoimetamine" +msgstr "Täielik kohaletoimetamine" #. module: sale #: view:sale.order:0 @@ -392,7 +392,7 @@ msgstr "Kogus (MÜ)" #: model:ir.ui.menu,name:sale.menu_action_order_line_tree1 #: view:sale.order.line:0 msgid "Sales Order Lines" -msgstr "Müügitellimuste Read" +msgstr "Müügikorralduste read" #. module: sale #: selection:sale.order,invoice_quantity:0 @@ -402,7 +402,7 @@ msgstr "Tellitud kogused" #. module: sale #: model:process.node,name:sale.process_node_saleorderprocurement0 msgid "Sale Order Procurement" -msgstr "Müügitellimuste Hanked" +msgstr "Müügikorralduste hanked" #. module: sale #: model:process.transition,name:sale.process_transition_packing0 @@ -417,12 +417,12 @@ msgstr "Kokku :" #. module: sale #: view:sale.order:0 msgid "Confirm Order" -msgstr "Kinnita tellimus" +msgstr "Kinnita korraldus" #. module: sale #: field:sale.order,name:0 msgid "Order Reference" -msgstr "Tellimuse viide" +msgstr "Korralduse viide" #. module: sale #: selection:sale.order,state:0 @@ -445,7 +445,7 @@ msgstr "Seadistus" #. module: sale #: selection:sale.order,order_policy:0 msgid "Invoice on Order After Delivery" -msgstr "Arve tellimusele pärast kättetoimetamist" +msgstr "Arve korraldusele pärast kohaletoimetamist" #. module: sale #: constraint:ir.ui.view:0 @@ -577,7 +577,7 @@ msgstr "Müügihaldus" #. module: sale #: field:sale.order.line,order_id:0 msgid "Order Ref" -msgstr "Tellimuse viide" +msgstr "Korralduse viide" #. module: sale #: view:sale.order:0 @@ -613,7 +613,7 @@ msgstr "Ettemaksuarve" #. module: sale #: field:sale.order,state:0 msgid "Order State" -msgstr "Tellimuse olek" +msgstr "Korralduse olek" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_line_tree2 @@ -664,7 +664,7 @@ msgstr "Müügid erandis" #. module: sale #: selection:sale.order.line,type:0 msgid "on order" -msgstr "tellimusel" +msgstr "korraldusel" #. module: sale #: selection:sale.order.line,state:0 @@ -821,13 +821,13 @@ msgstr "Sinu viide" #. module: sale #: selection:sale.config.picking_policy,step:0 msgid "Delivery Order Only" -msgstr "Ainult kättetoimetamise korraldus" +msgstr "Ainult kohaletoimetamise korraldus" #. module: sale #: view:sale.order:0 #: view:sale.order.line:0 msgid "Sales order lines" -msgstr "Müügitellimuse read" +msgstr "Müügikorralduste read" #. module: sale #: field:sale.order.line,sequence:0 @@ -909,7 +909,7 @@ msgstr "Pakkide arv" #. module: sale #: model:process.transition,note:sale.process_transition_deliver0 msgid "Confirming the packing list moves them to delivery order. This can be done by clicking on 'Validate' button." -msgstr "Pakkelehe kinnitamine liigutab need kättetoimetamise korraldusele. Seda saab teha klõpsates 'Valideeri' nuppu." +msgstr "Pakkelehe kinnitamine liigutab need kohaletoimetamise korraldusele. Seda saab teha klõpsates 'Valideeri' nuppu." #. module: sale #: selection:sale.order,state:0 @@ -929,12 +929,12 @@ msgstr "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit #. module: sale #: model:process.transition,note:sale.process_transition_saleinvoice0 msgid "Confirm sale order and Create invoice." -msgstr "Kinnita müügitellimus ja Loo arve." +msgstr "Kinnita müügikorraldus ja loo arve." #. module: sale #: selection:sale.config.picking_policy,step:0 msgid "Packing List & Delivery Order" -msgstr "Pakkeleht ja kättetoimetamise korraldus" +msgstr "Pakkeleht ja kohaletoimetamise korraldus" #. module: sale #: selection:sale.order.line,state:0 @@ -944,7 +944,7 @@ msgstr "Erand" #. module: sale #: view:sale.order:0 msgid "Sale Order Lines" -msgstr "Müügitellimuse Read" +msgstr "Müügikorralduse read" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_createinvoice0 @@ -1018,7 +1018,7 @@ msgstr "Hind" #. module: sale #: model:process.transition,name:sale.process_transition_deliver0 msgid "Deliver" -msgstr "Kätte toimetama" +msgstr "Kohale toimetama" #. module: sale #: model:ir.actions.report.xml,name:sale.report_sale_order @@ -1038,7 +1038,7 @@ msgstr "Hinnapakkumine Nr" #. module: sale #: field:stock.move,sale_line_id:0 msgid "Sale Order Line" -msgstr "Müügitellimuse Rida" +msgstr "Müügikorralduse rida" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_cancelassignation0 @@ -1059,7 +1059,7 @@ msgstr "Loo arved" #. module: sale #: help:sale.order,partner_order_id:0 msgid "The name and address of the contact that requested the order or quotation." -msgstr "Kontakti nimi ja aadress, kes taotles tellimust või hinnapakkumist." +msgstr "Kontakti nimi ja aadress, kes taotles korraldust või hinnapakkumist." #. module: sale #: field:sale.order,partner_id:0 @@ -1079,7 +1079,7 @@ msgstr "Ostu hinnakirjad" #: view:sale.order:0 #: field:stock.picking,sale_id:0 msgid "Sale Order" -msgstr "Müügitellimus" +msgstr "Müügikorraldus" #. module: sale #: field:sale.config.picking_policy,name:0 @@ -1089,7 +1089,7 @@ msgstr "Nimi" #. module: sale #: field:sale.order,invoice_quantity:0 msgid "Invoice on" -msgstr "" +msgstr "Arve alus" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree_new @@ -1126,7 +1126,7 @@ msgstr "Toote MÜ" #. module: sale #: help:sale.config.picking_policy,step:0 msgid "By default, Open ERP is able to manage complex routing and paths of products in your warehouse and partner locations. This will configure the most common and simple methods to deliver products to the customer in one or two operations by the worker." -msgstr "Open ERP suudab vaikimisi hallata kompleksmarsruutimist ja toodete radasid sinu loas ja partnerasukohtades. See seadistab kõige tavalisemad ja lihtsamad meetodid toodete kättetoimetamiseks kliendile ühe või kahe operatsioonina töötaja poolt." +msgstr "Open ERP suudab vaikimisi hallata kompleksmarsruutimist ja toodete radasid sinu loas ja partnerasukohtades. See seadistab kõige tavalisemad ja lihtsamad meetodid toodete kohaletoimetamiseks kliendile ühe või kahe operatsioonina töötaja poolt." #. module: sale #: model:ir.actions.act_window,name:sale.action_config_picking_policy @@ -1171,7 +1171,7 @@ msgstr "Maksetingimus" #. module: sale #: selection:sale.order,order_policy:0 msgid "Payment Before Delivery" -msgstr "Maksmine enne kättetoimetamist" +msgstr "Maksmine enne kohaletoimetamist" #. module: sale #: help:sale.order,invoice_ids:0 @@ -1192,7 +1192,7 @@ msgstr "Kaal" #. module: sale #: model:process.node,note:sale.process_node_order0 msgid "After confirming order, Create the invoice." -msgstr "Pärast tellimuse kinnitamist loo arve." +msgstr "Pärast korralduse kinnitamist loo arve." #. module: sale #: constraint:product.product:0 @@ -1213,7 +1213,7 @@ msgstr "Raamatupidamine" #. module: sale #: selection:sale.config.picking_policy,order_policy:0 msgid "Invoice Based on Deliveries" -msgstr "Arve kättetoimetamiste põhjal" +msgstr "Arve kohaletoimetamiste põhjal" #. module: sale #: view:sale.order:0 @@ -1229,5 +1229,5 @@ msgstr "Minu müügikorraldus" #. module: sale #: model:ir.model,name:sale.model_sale_order_line msgid "Sale Order line" -msgstr "Müügitellimuse rida" +msgstr "Müügikorralduse rida" diff --git a/addons/sale/i18n/fi_FI.po b/addons/sale/i18n/fi_FI.po index 842d34cf318..a36f3bc6567 100644 --- a/addons/sale/i18n/fi_FI.po +++ b/addons/sale/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/fr_FR.po b/addons/sale/i18n/fr_FR.po index 0aaaf98c02b..1bfdba3960a 100644 --- a/addons/sale/i18n/fr_FR.po +++ b/addons/sale/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,27 +43,27 @@ msgstr "Partenaire alloti" #. module: sale #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: sale #: selection:sale.order,state:0 msgid "Waiting Schedule" -msgstr "En attente de calcul" +msgstr "Attente de programmation" #. module: sale #: help:sale.order,picking_policy:0 msgid "If you don't have enough stock available to deliver all at once, do you accept partial shipments or not?" -msgstr "Si vous n'avez pas assez de stock disponible pour livrer tout d'un coup, Acceptez vous les livraisons partielles ou pas ?" +msgstr "Si vous n'avez pas suffisamment de stock pour livrer en une seule fois, acceptez vous les livraisons partielles ?" #. module: sale #: selection:sale.order.line,type:0 msgid "from stock" -msgstr "Depuis le stock" +msgstr "En stock" #. module: sale #: field:sale.config.picking_policy,step:0 msgid "Steps To Deliver a Sale Order" -msgstr "Étapes pour livrer un commande de vente" +msgstr "Étapes pour livrer une Commande de Vente" #. module: sale #: wizard_field:sale.advance_payment_inv,init,qtty:0 @@ -74,7 +74,7 @@ msgstr "Quantité" #. module: sale #: wizard_view:sale.advance_payment_inv,create:0 msgid "You invoice has been successfully created !" -msgstr "Votre facture a été créée avec succès !" +msgstr "Votre facture a été créé avec succès !" #. module: sale #: view:sale.order:0 @@ -121,7 +121,7 @@ msgstr "Valider" #. module: sale #: view:sale.order:0 msgid "Make Invoice" -msgstr "Créer une facture" +msgstr "Créer facture" #. module: sale #: field:sale.order.line,price_subtotal:0 @@ -131,7 +131,7 @@ msgstr "Montant" #. module: sale #: model:process.transition,note:sale.process_transition_confirmquotation0 msgid "Whenever confirm button is clicked, the draft state is moved to manual. that is, quotation is moved to sale order." -msgstr "Lorsque le bouton confirmer est actionné, l'état brouillon devient manuel. Ce qui fait que ce devis devient une commande." +msgstr "Lorsque le bouton 'Confirmer' est cliqué, l'état 'Brouillon' est déplacé vers 'Manuel'. C'est-à-dire que le Devis est déplacé vers une Commande de Vente." #. module: sale #: model:process.transition.action,name:sale.process_transition_action_cancelorder0 @@ -182,12 +182,12 @@ msgstr "Méthode d'expédition" #: selection:sale.order,state:0 #: selection:sale.order.line,state:0 msgid "Cancelled" -msgstr "Annulée" +msgstr "" #. module: sale #: selection:sale.order,state:0 msgid "Shipping Exception" -msgstr "En exception de livraison" +msgstr "Exception d'envoi" #. module: sale #: field:sale.order,amount_total:0 @@ -222,7 +222,7 @@ msgstr "Tout d'un coup" #. module: sale #: model:process.transition,note:sale.process_transition_saleprocurement0 msgid "Procurement is created after confirmation of sale order." -msgstr "L'approvisionnement est crée après confirmation de commande" +msgstr "Un approvisionnement est créé après confirmation de la commande de vente." #. module: sale #: field:sale.order,project_id:0 @@ -243,7 +243,7 @@ msgstr "Méthode d'appro." #. module: sale #: view:sale.order:0 msgid "Extra Info" -msgstr "Info complémentaire" +msgstr "Info supplémentaires" #. module: sale #: rml:sale.order:0 @@ -269,7 +269,7 @@ msgstr "Quantité (US)" #. module: sale #: help:sale.order,invoice_quantity:0 msgid "The sale order will automatically create the invoice proposition (draft invoice). Ordered and delivered quantities may not be the same. You have to choose if you invoice based on ordered or shipped quantities. If the product is a service, shipped quantities means hours spent on the associated tasks." -msgstr "La commande créera une proposition de facturation (facture brouillon). Les quantités commandées et facturées peuvent ne pas être les mêmes. Vous devez choisir si vous facturez sur base des quantités commandées ou expédiées. Si le produit est un service, les quantitées expédiées signifies les heures dépensées aux tâches associées." +msgstr "La commande créera automatiquement une proposition de facturation (facture brouillon). Les quantités commandées et expédiées peuvent ne pas être les mêmes. Vous devez choisir si vous facturez sur base des quantités commandées ou expédiées. Si le produit est un service, les quantités expédiées représentent les heures passées aux tâches correspondantes." #. module: sale #: selection:sale.order.line,state:0 @@ -321,7 +321,7 @@ msgstr "Entrepôt disponible" #. module: sale #: rml:sale.order:0 msgid "Order N°" -msgstr "Commande N°" +msgstr "N° de commande" #. module: sale #: field:sale.order,order_line:0 @@ -370,7 +370,7 @@ msgstr "Adresse de livraison :" #. module: sale #: model:process.transition,note:sale.process_transition_invoiceafterdelivery0 msgid "When you select Shipping Ploicy = 'Automatic Invoice after delivery' , it will automatic create after delivery." -msgstr "Quand vous sélectionnez la politique de livraison = 'Facture automatique après livraison', elle sera crée automatiquement après la livraison." +msgstr "Lorsque vous sélectionnez 'Politique de Livraison = Facture Automatique après Livraison', cela créera automatiquement une facture après livraison." #. module: sale #: selection:sale.order,picking_policy:0 @@ -385,7 +385,7 @@ msgstr "Description manuelle" #. module: sale #: field:sale.order.line,product_uom_qty:0 msgid "Quantity (UoM)" -msgstr "Quantité (UP)" +msgstr "Quantité (UdM)" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_line_tree1 @@ -402,7 +402,7 @@ msgstr "Quantités commandées" #. module: sale #: model:process.node,name:sale.process_node_saleorderprocurement0 msgid "Sale Order Procurement" -msgstr "Approvisionnement de commande" +msgstr "Approvisionnement de la Commande de Vente" #. module: sale #: model:process.transition,name:sale.process_transition_packing0 @@ -429,7 +429,7 @@ msgstr "Référence commande" #: view:sale.order.line:0 #: selection:sale.order.line,state:0 msgid "Done" -msgstr "Terminée" +msgstr "Facturée" #. module: sale #: field:sale.order,pricelist_id:0 @@ -445,7 +445,7 @@ msgstr "Configuration" #. module: sale #: selection:sale.order,order_policy:0 msgid "Invoice on Order After Delivery" -msgstr "Facture sur commande après livraison" +msgstr "Facture basée sur la commande après livraison" #. module: sale #: constraint:ir.ui.view:0 @@ -465,12 +465,12 @@ msgstr "Comptes de Paiement" #. module: sale #: constraint:product.template:0 msgid "Error: UOS must be in a different category than the UOM" -msgstr "Erreur: l'unité de vente doit appartenir à une catégorie différente que l'unité de mesure" +msgstr "Erreur : l'Unité Secondaire doit appartenir à une autre catégorie que l'Unité de Mesure." #. module: sale #: field:sale.order,client_order_ref:0 msgid "Customer Ref" -msgstr "Réf Client" +msgstr "Réf. Client" #. module: sale #: view:sale.order:0 @@ -525,7 +525,7 @@ msgstr "Facture client en brouillon, doit être vérifier par le comptable" #: model:ir.actions.act_window,name:sale.action_order_tree3 #: model:ir.ui.menu,name:sale.menu_action_order_tree3 msgid "Sales Order To Be Invoiced" -msgstr "Commandes de ventes Facturables" +msgstr "Commandes de ventes à facturer" #. module: sale #: model:process.node,note:sale.process_node_saleorderprocurement0 @@ -546,12 +546,12 @@ msgstr "Factures" #. module: sale #: view:sale.order:0 msgid "Order Line" -msgstr "Ligne de commande" +msgstr "Commande client" #. module: sale #: field:sale.config.picking_policy,picking_policy:0 msgid "Packing Default Policy" -msgstr "Politique de colisage par défaut" +msgstr "Politique par défaut du Colisage" #. module: sale #: model:process.node,note:sale.process_node_saleorder0 @@ -561,7 +561,7 @@ msgstr "Gerer le suivi des livraisons et des factures" #. module: sale #: field:sale.config.picking_policy,order_policy:0 msgid "Shipping Default Policy" -msgstr "Politique de livraison par défaut" +msgstr "Politique par défaut de la Livraison" #. module: sale #: field:sale.order.line,product_packaging:0 @@ -592,7 +592,7 @@ msgstr "Vendeur" #. module: sale #: model:process.transition,note:sale.process_transition_saleorderprocurement0 msgid "In sale order , procuerement for each line and it comes into the procurement order" -msgstr "Dans la commande, réapprovisionner chaque ligne et cela devient un commande de réappro. " +msgstr "Dans la commande de vente, approvisionnement pour chaque ligne et il viens dans la commande d'approvisionnement" #. module: sale #: rml:sale.order:0 @@ -603,7 +603,7 @@ msgstr "Taxes :" #: field:sale.order,invoiced_rate:0 #: field:sale.order.line,invoiced:0 msgid "Invoiced" -msgstr "Facturée" +msgstr "Facturé" #. module: sale #: model:ir.actions.wizard,name:sale.advance_payment @@ -629,7 +629,7 @@ msgstr "Cette configuration utilise la politique de colisage par défaut quand v #. module: sale #: model:process.process,name:sale.process_process_salesprocess0 msgid "Sales Process" -msgstr "Processus de vente" +msgstr "Processus de Vente" #. module: sale #: wizard_view:sale.order.line.make_invoice,init:0 @@ -642,7 +642,7 @@ msgstr "Créer les factures" #. module: sale #: constraint:product.template:0 msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "Erreur: l'unité de mesure par défaut et l'unité de mesure d'achat doivent faire partie de la même catégorie" +msgstr "Erreur: l'UdM par défaut et l'UdM d'achat doivent appartenir à la même catégorie." #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree7 @@ -664,7 +664,7 @@ msgstr "Commandes en Exception" #. module: sale #: selection:sale.order.line,type:0 msgid "on order" -msgstr "sur commande" +msgstr "Sur commande" #. module: sale #: selection:sale.order.line,state:0 @@ -690,12 +690,12 @@ msgstr "Livraison et facture manuelle" #: model:process.transition,name:sale.process_transition_saleorderprocurement0 #: model:process.transition,name:sale.process_transition_saleprocurement0 msgid "Sale Procurement" -msgstr "Commande d'appro" +msgstr "Approvisionnement de la Vente" #. module: sale #: view:sale.config.picking_policy:0 msgid "Configure Sale Order Logistic" -msgstr "Configurer la logistique des commandes" +msgstr "Configurer la Logistique des Commandes de Vente" #. module: sale #: field:sale.order,amount_untaxed:0 @@ -720,7 +720,7 @@ msgstr "Ventes de produit" #. module: sale #: rml:sale.order:0 msgid "Our Salesman" -msgstr "Notre vendeur" +msgstr "Notre Vendeur" #. module: sale #: wizard_button:sale.advance_payment_inv,init,create:0 @@ -769,7 +769,7 @@ msgstr "Produit avancé" #. module: sale #: model:process.transition,note:sale.process_transition_invoice0 msgid "Invoice is created when 'Create Invoice' is being clicked after confirming the sale order. This transaction moves the sale order to invoices." -msgstr "La facture est crée lorsque 'Créer la facture' est cliqué après une confirmation de commande. cette opération transforme la commande en facture." +msgstr "Une Facture est créée lorsque 'Créer une Facture' est cliqué après confirmation de la Commande de Vente. Cette transaction déplacera la Commande de Vente vers les Factures." #. module: sale #: view:sale.order:0 @@ -816,18 +816,18 @@ msgstr "" #. module: sale #: rml:sale.order:0 msgid "Your Reference" -msgstr "Votre référence" +msgstr "Votre Référence" #. module: sale #: selection:sale.config.picking_policy,step:0 msgid "Delivery Order Only" -msgstr "Ordre de livraison seul" +msgstr "Ordre de livraison seulement" #. module: sale #: view:sale.order:0 #: view:sale.order.line:0 msgid "Sales order lines" -msgstr "Lignes de commandes" +msgstr "Ligne de commande" #. module: sale #: field:sale.order.line,sequence:0 @@ -848,12 +848,12 @@ msgstr "Qté" #. module: sale #: model:process.node,note:sale.process_node_packinglist0 msgid "Packing OUT is created for stockable products." -msgstr "Un bon de préparation est crée pour les produits stockables" +msgstr "Un colisage sortant est créé pour les produits stockables" #. module: sale #: view:sale.order:0 msgid "Other data" -msgstr "Autre donnée" +msgstr "Autres informations" #. module: sale #: wizard_field:sale.advance_payment_inv,init,amount:0 @@ -865,7 +865,7 @@ msgstr "Prix U." #. module: sale #: field:sale.order,fiscal_position:0 msgid "Fiscal Position" -msgstr "Position fiscale" +msgstr "Position Fiscale" #. module: sale #: rml:sale.order:0 @@ -893,13 +893,13 @@ msgstr "Annuler" #. module: sale #: help:sale.order,state:0 msgid "Gives the state of the quotation or sale order. The exception state is automatically set when a cancel operation occurs in the invoice validation (Invoice Exception) or in the packing list process (Shipping Exception). The 'Waiting Schedule' state is set when the invoice is confirmed but waiting for the scheduler to run on the date 'Date Ordered'." -msgstr "Donne l'état du devis ou de la commande. L'état en exception est mis automatiquement lorsqu'une opération d'annulation intervient en validation de facture (Facture en exception), ou dans le processus de colisage (Exception de livraisons). L'état en 'Attente de planification' est mis lorsque la facture est confirmée mais en attente du lancement du planificateur à la 'Date de commande'." +msgstr "Donne l'état du devis ou de la commande de vente. L'état 'en Exception' est automatiquement placé lorsqu'une opération d'annulation apparaît dans la validation de la facture (Exception de Facturation) ou dans le processus de colisage (Exception de Livraison). L'état 'en Attente d'exécution' est placé lorsque la facture est confirmée mais attend que le Planificateur soit lancé à la Date de la Commande." #. module: sale #: view:sale.order:0 #: view:sale.order.line:0 msgid "UoM" -msgstr "UP" +msgstr "UdM" #. module: sale #: field:sale.order.line,number_packages:0 @@ -909,7 +909,7 @@ msgstr "Nombre de colis" #. module: sale #: model:process.transition,note:sale.process_transition_deliver0 msgid "Confirming the packing list moves them to delivery order. This can be done by clicking on 'Validate' button." -msgstr "Confirmer les mouvements de colisage sur les ordres de livraisons. Ceci peut être effectuer en cliquant sur le bouton 'Valider'. " +msgstr "Confirmer la liste de colisage les déplacent vers la commande de livraison. Cela peut être fait en cliquant sur le bouton 'Valider'." #. module: sale #: selection:sale.order,state:0 @@ -934,7 +934,7 @@ msgstr "Confirmer la commande de vente et créer la facture" #. module: sale #: selection:sale.config.picking_policy,step:0 msgid "Packing List & Delivery Order" -msgstr "Ordre de préparation et livraison" +msgstr "Liste de colisage & Ordre de livraison" #. module: sale #: selection:sale.order.line,state:0 @@ -956,7 +956,7 @@ msgstr "Créer facture" #: wizard_view:sale.order.line.make_invoice,init:0 #: wizard_view:sale.order.make_invoice,init:0 msgid "Do you really want to create the invoices ?" -msgstr "Voulez vous réellement créer ces factures ?" +msgstr "Voulez-vous vraiment créer les factures ?" #. module: sale #: model:process.node,note:sale.process_node_invoiceafterdelivery0 @@ -966,7 +966,7 @@ msgstr "Facture basée sur les colisages" #. module: sale #: view:sale.config.picking_policy:0 msgid "Set Default" -msgstr "Mettre par défaut" +msgstr "Définir comme valeur par défaut" #. module: sale #: view:sale.order:0 @@ -1033,7 +1033,7 @@ msgstr "Tél. :" #. module: sale #: rml:sale.order:0 msgid "Quotation N°" -msgstr "Devis N°" +msgstr "N° de devis" #. module: sale #: field:stock.move,sale_line_id:0 @@ -1048,7 +1048,7 @@ msgstr "Annuler l'assignation" #. module: sale #: selection:sale.order,order_policy:0 msgid "Invoice from the Packing" -msgstr "Facture depuis le colisage" +msgstr "Facture basée sur le Colisage" #. module: sale #: model:ir.actions.wizard,name:sale.wizard_sale_order_line_invoice @@ -1111,22 +1111,22 @@ msgstr "Date de commande" #. module: sale #: field:sale.order.line,product_uos:0 msgid "Product UoS" -msgstr "US Produit" +msgstr "US produit" #. module: sale #: selection:sale.order,state:0 msgid "Manual In Progress" -msgstr "Manuel en cours" +msgstr "Manuelle en cours" #. module: sale #: field:sale.order.line,product_uom:0 msgid "Product UoM" -msgstr "UP du produit" +msgstr "UdM produit" #. module: sale #: help:sale.config.picking_policy,step:0 msgid "By default, Open ERP is able to manage complex routing and paths of products in your warehouse and partner locations. This will configure the most common and simple methods to deliver products to the customer in one or two operations by the worker." -msgstr "Par défaut, OpenERP est capable de gérér des routages complexes et des rotations produits dans votre entrepôt ainsi que des emplacements partenaires. Ceci configurera le plus courant et les méthode simple pour livrer les produits aux clients en une ou 2 opérations par le gestionnaire." +msgstr "Par défaut, Open ERP est capable de gérer des routages et des acheminements complexes de produits dans vos entrepôts et emplacements partenaire. Cela configurera les méthodes les plus communes et les plus simples pour livrer des produits vers le client en une ou deux opérations par travailleur." #. module: sale #: model:ir.actions.act_window,name:sale.action_config_picking_policy @@ -1141,7 +1141,7 @@ msgstr "Commande" #. module: sale #: rml:sale.order:0 msgid "Payment Terms" -msgstr "Modes de paiement" +msgstr "Conditions de Paiement" #. module: sale #: view:sale.order:0 @@ -1161,7 +1161,7 @@ msgstr "Factures liées" #. module: sale #: field:sale.shop,name:0 msgid "Shop Name" -msgstr "Nom du magasin" +msgstr "Nom du Magasin" #. module: sale #: field:sale.order,payment_term:0 @@ -1176,7 +1176,7 @@ msgstr "Paiement avant livraison" #. module: sale #: help:sale.order,invoice_ids:0 msgid "This is the list of invoices that have been generated for this sale order. The same sale order may have been invoiced in several times (by line for example)." -msgstr "C'est la liste des factures qui ont été générées pour cette commande. La même commande peut avoir été facturé en plusieurs fois (par lignes par example)." +msgstr "C'est la liste des factures qui ont été générées pour cette commande. La même commande peut avoir été facturée en plusieurs fois (par lignes par exemple)." #. module: sale #: view:sale.order:0 @@ -1203,7 +1203,7 @@ msgstr "Erreur: code EAN invalide" #: field:sale.order,picked_rate:0 #: field:sale.order,shipped:0 msgid "Picked" -msgstr "Livrée" +msgstr "Réceptionné" #. module: sale #: view:sale.shop:0 @@ -1213,12 +1213,12 @@ msgstr "Comptabilité" #. module: sale #: selection:sale.config.picking_policy,order_policy:0 msgid "Invoice Based on Deliveries" -msgstr "Facture basée sur les livraisons" +msgstr "Facture basé sur les livraisons" #. module: sale #: view:sale.order:0 msgid "Stock Moves" -msgstr "Mouvements de stock" +msgstr "Mouvements de stocks" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree diff --git a/addons/sale/i18n/hr_HR.po b/addons/sale/i18n/hr_HR.po index 4820fa67c52..f5f8131c520 100644 --- a/addons/sale/i18n/hr_HR.po +++ b/addons/sale/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/hu_HU.po b/addons/sale/i18n/hu_HU.po index dde4a3480b5..95c5f9fc791 100644 --- a/addons/sale/i18n/hu_HU.po +++ b/addons/sale/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/id_ID.po b/addons/sale/i18n/id_ID.po index 7980c9d13bf..0c3ce545e4c 100644 --- a/addons/sale/i18n/id_ID.po +++ b/addons/sale/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/it_IT.po b/addons/sale/i18n/it_IT.po index a603bb7bbc7..4bc2d81073c 100644 --- a/addons/sale/i18n/it_IT.po +++ b/addons/sale/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/lt_LT.po b/addons/sale/i18n/lt_LT.po index 8a537c5455b..edbbbbe7aef 100644 --- a/addons/sale/i18n/lt_LT.po +++ b/addons/sale/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:28+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/nl_BE.po b/addons/sale/i18n/nl_BE.po index 84888117920..3646ed58f49 100644 --- a/addons/sale/i18n/nl_BE.po +++ b/addons/sale/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/nl_NL.po b/addons/sale/i18n/nl_NL.po index 62e9ea9c7b6..c20738d9e2f 100644 --- a/addons/sale/i18n/nl_NL.po +++ b/addons/sale/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/pl_PL.po b/addons/sale/i18n/pl_PL.po index b9834af4147..a193000510a 100644 --- a/addons/sale/i18n/pl_PL.po +++ b/addons/sale/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/pt_BR.po b/addons/sale/i18n/pt_BR.po index 45d16812d8c..903ec32b27c 100644 --- a/addons/sale/i18n/pt_BR.po +++ b/addons/sale/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/pt_PT.po b/addons/sale/i18n/pt_PT.po index 220dfc9890c..93a06504f15 100644 --- a/addons/sale/i18n/pt_PT.po +++ b/addons/sale/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/ro_RO.po b/addons/sale/i18n/ro_RO.po index ab4a3e9067c..2c93cb8405d 100644 --- a/addons/sale/i18n/ro_RO.po +++ b/addons/sale/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/ru_RU.po b/addons/sale/i18n/ru_RU.po index 6ad777915c7..a5ef7d9599a 100644 --- a/addons/sale/i18n/ru_RU.po +++ b/addons/sale/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+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 126af4bacd4..8737a423875 100644 --- a/addons/sale/i18n/sale.pot +++ b/addons/sale/i18n/sale.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/sl_SL.po b/addons/sale/i18n/sl_SL.po index 13198455dfd..1be471e2648 100644 --- a/addons/sale/i18n/sl_SL.po +++ b/addons/sale/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/cs_CS.po b/addons/sale/i18n/sq_AL.po similarity index 98% rename from addons/sale/i18n/cs_CS.po rename to addons/sale/i18n/sq_AL.po index 976b3a4a876..3190f28c352 100644 --- a/addons/sale/i18n/cs_CS.po +++ b/addons/sale/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -440,7 +440,7 @@ msgstr "" #. module: sale #: model:ir.ui.menu,name:sale.menu_shop_configuration msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: sale #: selection:sale.order,order_policy:0 @@ -503,7 +503,7 @@ msgstr "" #: wizard_field:sale.order.line.make_invoice,init,grouped:0 #: wizard_field:sale.order.make_invoice,init,grouped:0 msgid "Group the invoices" -msgstr "Seskupit faktury(Group the invoices)" +msgstr "" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree5 @@ -637,7 +637,7 @@ msgstr "" #: wizard_view:sale.order.make_invoice,init:0 #: wizard_button:sale.order.make_invoice,init,invoice:0 msgid "Create invoices" -msgstr "Vytvořit faktury(Create invoices)" +msgstr "" #. module: sale #: constraint:product.template:0 @@ -888,7 +888,7 @@ msgstr "" #: wizard_button:sale.order.line.make_invoice,init,end:0 #: wizard_button:sale.order.make_invoice,init,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: sale #: help:sale.order,state:0 @@ -956,7 +956,7 @@ msgstr "" #: wizard_view:sale.order.line.make_invoice,init:0 #: wizard_view:sale.order.make_invoice,init:0 msgid "Do you really want to create the invoices ?" -msgstr "Opravdu chcete vytvořit faktury?(Do you really want to create the invoices ?)" +msgstr "" #. module: sale #: model:process.node,note:sale.process_node_invoiceafterdelivery0 diff --git a/addons/sale/i18n/sv_SE.po b/addons/sale/i18n/sv_SE.po index 4005996075f..a418f86e586 100644 --- a/addons/sale/i18n/sv_SE.po +++ b/addons/sale/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/tr_TR.po b/addons/sale/i18n/tr_TR.po index 7f4dbac8136..4b4d461e9f4 100644 --- a/addons/sale/i18n/tr_TR.po +++ b/addons/sale/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/uk_UK.po b/addons/sale/i18n/uk_UA.po similarity index 99% rename from addons/sale/i18n/uk_UK.po rename to addons/sale/i18n/uk_UA.po index f5b2871f8a0..1ecadca3b8c 100644 --- a/addons/sale/i18n/uk_UK.po +++ b/addons/sale/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/sv_SV.po b/addons/sale/i18n/vi_VN.po similarity index 97% rename from addons/sale/i18n/sv_SV.po rename to addons/sale/i18n/vi_VN.po index 5afa65510a7..6d38084e781 100644 --- a/addons/sale/i18n/sv_SV.po +++ b/addons/sale/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: sale #: view:sale.order:0 msgid "Recreate Procurement" -msgstr "Återskapa inköp" +msgstr "" #. module: sale #: model:process.transition,name:sale.process_transition_confirmquotation0 @@ -137,7 +137,7 @@ msgstr "" #: model:process.transition.action,name:sale.process_transition_action_cancelorder0 #: view:sale.order:0 msgid "Cancel Order" -msgstr "Avbryt order" +msgstr "" #. module: sale #: field:sale.order.line,move_ids:0 @@ -155,7 +155,7 @@ msgstr "" #: view:sale.order.line:0 #: field:sale.order.line,notes:0 msgid "Notes" -msgstr "Anteckningar" +msgstr "" #. module: sale #: model:process.transition,name:sale.process_transition_invoiceafterdelivery0 @@ -166,7 +166,7 @@ msgstr "" #: field:sale.order,amount_tax:0 #: field:sale.order.line,tax_id:0 msgid "Taxes" -msgstr "Skatter" +msgstr "" #. module: sale #: rml:sale.order:0 @@ -197,7 +197,7 @@ msgstr "" #. module: sale #: field:sale.order,origin:0 msgid "Origin" -msgstr "Ursprung" +msgstr "" #. module: sale #: field:sale.order,partner_invoice_id:0 @@ -274,7 +274,7 @@ msgstr "" #. module: sale #: selection:sale.order.line,state:0 msgid "Confirmed" -msgstr "Bekräftad" +msgstr "" #. module: sale #: field:sale.shop,payment_default_id:0 @@ -417,7 +417,7 @@ msgstr "" #. module: sale #: view:sale.order:0 msgid "Confirm Order" -msgstr "Bekräfta order" +msgstr "" #. module: sale #: field:sale.order,name:0 @@ -429,18 +429,18 @@ msgstr "" #: view:sale.order.line:0 #: selection:sale.order.line,state:0 msgid "Done" -msgstr "Klar" +msgstr "" #. module: sale #: field:sale.order,pricelist_id:0 #: field:sale.shop,pricelist_id:0 msgid "Pricelist" -msgstr "Prislista" +msgstr "" #. module: sale #: model:ir.ui.menu,name:sale.menu_shop_configuration msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: sale #: selection:sale.order,order_policy:0 @@ -546,7 +546,7 @@ msgstr "" #. module: sale #: view:sale.order:0 msgid "Order Line" -msgstr "Orderrad" +msgstr "" #. module: sale #: field:sale.config.picking_policy,picking_policy:0 @@ -572,7 +572,7 @@ msgstr "" #: model:ir.module.module,shortdesc:sale.module_meta_information #: model:ir.ui.menu,name:sale.menu_sale_root msgid "Sales Management" -msgstr "Säljhantering" +msgstr "" #. module: sale #: field:sale.order.line,order_id:0 @@ -582,12 +582,12 @@ msgstr "" #. module: sale #: view:sale.order:0 msgid "Recreate Invoice" -msgstr "Återskapa faktura" +msgstr "" #. module: sale #: field:sale.order,user_id:0 msgid "Salesman" -msgstr "Säljare" +msgstr "" #. module: sale #: model:process.transition,note:sale.process_transition_saleorderprocurement0 @@ -669,12 +669,12 @@ msgstr "" #. module: sale #: selection:sale.order.line,state:0 msgid "Draft" -msgstr "Utdrag" +msgstr "" #. module: sale #: field:sale.order,invoiced:0 msgid "Paid" -msgstr "Fakturerad" +msgstr "" #. module: sale #: view:sale.order:0 @@ -753,7 +753,7 @@ msgstr "" #: view:sale.order.line:0 #: field:sale.order.line,property_ids:0 msgid "Properties" -msgstr "Egenskaper" +msgstr "" #. module: sale #: model:process.node,name:sale.process_node_quotation0 @@ -774,7 +774,7 @@ msgstr "" #. module: sale #: view:sale.order:0 msgid "Compute" -msgstr "Beräkna" +msgstr "" #. module: sale #: model:ir.actions.act_window,name:sale.action_shop_form @@ -802,7 +802,7 @@ msgstr "" #. module: sale #: view:sale.order:0 msgid "History" -msgstr "Historik" +msgstr "" #. module: sale #: help:sale.order,order_policy:0 @@ -832,7 +832,7 @@ msgstr "" #. module: sale #: field:sale.order.line,sequence:0 msgid "Sequence" -msgstr "Sekvens" +msgstr "" #. module: sale #: model:ir.actions.act_window,name:sale.act_res_partner_2_sale_order @@ -876,7 +876,7 @@ msgstr "" #: model:process.transition,name:sale.process_transition_invoice0 #: field:sale.order,invoice_ids:0 msgid "Invoice" -msgstr "Faktura" +msgstr "" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_cancel0 @@ -924,7 +924,7 @@ msgstr "" #. module: sale #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: sale #: model:process.transition,note:sale.process_transition_saleinvoice0 @@ -950,7 +950,7 @@ msgstr "" #: model:process.transition.action,name:sale.process_transition_action_createinvoice0 #: view:sale.order:0 msgid "Create Invoice" -msgstr "Skapa faktura" +msgstr "" #. module: sale #: wizard_view:sale.order.line.make_invoice,init:0 @@ -992,7 +992,7 @@ msgstr "" #: wizard_field:sale.advance_payment_inv,init,product_id:0 #: field:sale.order.line,product_id:0 msgid "Product" -msgstr "Produkt" +msgstr "" #. module: sale #: wizard_button:sale.advance_payment_inv,create,open:0 diff --git a/addons/sale/i18n/zh_CN.po b/addons/sale/i18n/zh_CN.po index 21fe9754fcf..2f2f58db191 100644 --- a/addons/sale/i18n/zh_CN.po +++ b/addons/sale/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/zh_TW.po b/addons/sale/i18n/zh_TW.po index 4a730fa415a..ff51727fe44 100644 --- a/addons/sale/i18n/zh_TW.po +++ b/addons/sale/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/ar_AR.po b/addons/sale_analytic_plans/i18n/ar_AR.po index ec97bd1bf23..13fa421fd8a 100644 --- a/addons/sale_analytic_plans/i18n/ar_AR.po +++ b/addons/sale_analytic_plans/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/bg_BG.po b/addons/sale_analytic_plans/i18n/bg_BG.po index 27a150cc847..a1daf2f5623 100644 --- a/addons/sale_analytic_plans/i18n/bg_BG.po +++ b/addons/sale_analytic_plans/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/bs_BS.po b/addons/sale_analytic_plans/i18n/bs_BS.po index 86189650e5f..7038c1f9bfb 100644 --- a/addons/sale_analytic_plans/i18n/bs_BS.po +++ b/addons/sale_analytic_plans/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/ca_ES.po b/addons/sale_analytic_plans/i18n/ca_ES.po index f30a262c75f..39654d42d6e 100644 --- a/addons/sale_analytic_plans/i18n/ca_ES.po +++ b/addons/sale_analytic_plans/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/cs_CZ.po b/addons/sale_analytic_plans/i18n/cs_CZ.po index 046df6c21de..a145f651e79 100644 --- a/addons/sale_analytic_plans/i18n/cs_CZ.po +++ b/addons/sale_analytic_plans/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/de_DE.po b/addons/sale_analytic_plans/i18n/de_DE.po index d20be119ac2..ac9eb38d800 100644 --- a/addons/sale_analytic_plans/i18n/de_DE.po +++ b/addons/sale_analytic_plans/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/es_AR.po b/addons/sale_analytic_plans/i18n/es_AR.po index 510265db152..6e096390e03 100644 --- a/addons/sale_analytic_plans/i18n/es_AR.po +++ b/addons/sale_analytic_plans/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/es_ES.po b/addons/sale_analytic_plans/i18n/es_ES.po index 5c46a8b4414..562a976c8b3 100644 --- a/addons/sale_analytic_plans/i18n/es_ES.po +++ b/addons/sale_analytic_plans/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/et_EE.po b/addons/sale_analytic_plans/i18n/et_EE.po index 6d28222e76c..3f40b425e3e 100644 --- a/addons/sale_analytic_plans/i18n/et_EE.po +++ b/addons/sale_analytic_plans/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/fi_FI.po b/addons/sale_analytic_plans/i18n/fi_FI.po index e0162c0b412..394d5e54ead 100644 --- a/addons/sale_analytic_plans/i18n/fi_FI.po +++ b/addons/sale_analytic_plans/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/fr_FR.po b/addons/sale_analytic_plans/i18n/fr_FR.po index df456a1e15d..139e027de5f 100644 --- a/addons/sale_analytic_plans/i18n/fr_FR.po +++ b/addons/sale_analytic_plans/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/hr_HR.po b/addons/sale_analytic_plans/i18n/hr_HR.po index 26f498178a6..44c75628469 100644 --- a/addons/sale_analytic_plans/i18n/hr_HR.po +++ b/addons/sale_analytic_plans/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/hu_HU.po b/addons/sale_analytic_plans/i18n/hu_HU.po index 39f1822bcae..481d6aa880a 100644 --- a/addons/sale_analytic_plans/i18n/hu_HU.po +++ b/addons/sale_analytic_plans/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/id_ID.po b/addons/sale_analytic_plans/i18n/id_ID.po index 7fbf950ecb0..671fcad9f04 100644 --- a/addons/sale_analytic_plans/i18n/id_ID.po +++ b/addons/sale_analytic_plans/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/it_IT.po b/addons/sale_analytic_plans/i18n/it_IT.po index 846506058e3..b93c5a15987 100644 --- a/addons/sale_analytic_plans/i18n/it_IT.po +++ b/addons/sale_analytic_plans/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/lt_LT.po b/addons/sale_analytic_plans/i18n/lt_LT.po index 4317fa20172..f4e9f213eb7 100644 --- a/addons/sale_analytic_plans/i18n/lt_LT.po +++ b/addons/sale_analytic_plans/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/nl_BE.po b/addons/sale_analytic_plans/i18n/nl_BE.po index c0ae9484ab9..d0ab55f4f1f 100644 --- a/addons/sale_analytic_plans/i18n/nl_BE.po +++ b/addons/sale_analytic_plans/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/nl_NL.po b/addons/sale_analytic_plans/i18n/nl_NL.po index e97185d1d10..0963c526a99 100644 --- a/addons/sale_analytic_plans/i18n/nl_NL.po +++ b/addons/sale_analytic_plans/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/pl_PL.po b/addons/sale_analytic_plans/i18n/pl_PL.po index 6a2d9a7dd46..60c92182f9d 100644 --- a/addons/sale_analytic_plans/i18n/pl_PL.po +++ b/addons/sale_analytic_plans/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/pt_BR.po b/addons/sale_analytic_plans/i18n/pt_BR.po index 94b5cea2710..99b20e469f4 100644 --- a/addons/sale_analytic_plans/i18n/pt_BR.po +++ b/addons/sale_analytic_plans/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/pt_PT.po b/addons/sale_analytic_plans/i18n/pt_PT.po index dbed69bfb1e..0b763253716 100644 --- a/addons/sale_analytic_plans/i18n/pt_PT.po +++ b/addons/sale_analytic_plans/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/ro_RO.po b/addons/sale_analytic_plans/i18n/ro_RO.po index 33168e81e52..0f75aae512e 100644 --- a/addons/sale_analytic_plans/i18n/ro_RO.po +++ b/addons/sale_analytic_plans/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/ru_RU.po b/addons/sale_analytic_plans/i18n/ru_RU.po index 7361cb11d6f..72dac0965f9 100644 --- a/addons/sale_analytic_plans/i18n/ru_RU.po +++ b/addons/sale_analytic_plans/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot b/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot index ca632d2b8b8..aa442c92b4d 100644 --- a/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot +++ b/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/sl_SL.po b/addons/sale_analytic_plans/i18n/sl_SL.po index 9f1fb469d56..267128f6dbb 100644 --- a/addons/sale_analytic_plans/i18n/sl_SL.po +++ b/addons/sale_analytic_plans/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/cs_CS.po b/addons/sale_analytic_plans/i18n/sq_AL.po similarity index 84% rename from addons/sale_analytic_plans/i18n/cs_CS.po rename to addons/sale_analytic_plans/i18n/sq_AL.po index 03d9b304509..d529e21f9b5 100644 --- a/addons/sale_analytic_plans/i18n/cs_CS.po +++ b/addons/sale_analytic_plans/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/sv_SE.po b/addons/sale_analytic_plans/i18n/sv_SE.po index 586b2e073a7..ac5b77067b0 100644 --- a/addons/sale_analytic_plans/i18n/sv_SE.po +++ b/addons/sale_analytic_plans/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/tr_TR.po b/addons/sale_analytic_plans/i18n/tr_TR.po index 6b2886fcfa1..56462145c0e 100644 --- a/addons/sale_analytic_plans/i18n/tr_TR.po +++ b/addons/sale_analytic_plans/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/uk_UK.po b/addons/sale_analytic_plans/i18n/uk_UA.po similarity index 85% rename from addons/sale_analytic_plans/i18n/uk_UK.po rename to addons/sale_analytic_plans/i18n/uk_UA.po index 2b337bc9c96..220c7b399cd 100644 --- a/addons/sale_analytic_plans/i18n/uk_UK.po +++ b/addons/sale_analytic_plans/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/sv_SV.po b/addons/sale_analytic_plans/i18n/vi_VN.po similarity index 84% rename from addons/sale_analytic_plans/i18n/sv_SV.po rename to addons/sale_analytic_plans/i18n/vi_VN.po index 12454e9ba96..c617d228aeb 100644 --- a/addons/sale_analytic_plans/i18n/sv_SV.po +++ b/addons/sale_analytic_plans/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/zh_CN.po b/addons/sale_analytic_plans/i18n/zh_CN.po index e286c1f6334..5dbe20ef19d 100644 --- a/addons/sale_analytic_plans/i18n/zh_CN.po +++ b/addons/sale_analytic_plans/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_analytic_plans/i18n/zh_TW.po b/addons/sale_analytic_plans/i18n/zh_TW.po index 39e0cfff641..4d3dfc783b3 100644 --- a/addons/sale_analytic_plans/i18n/zh_TW.po +++ b/addons/sale_analytic_plans/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/ar_AR.po b/addons/sale_crm/i18n/ar_AR.po index f753eef7664..dc372ecf407 100644 --- a/addons/sale_crm/i18n/ar_AR.po +++ b/addons/sale_crm/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/bg_BG.po b/addons/sale_crm/i18n/bg_BG.po index 0f8cff5a240..ab2a3489e2b 100644 --- a/addons/sale_crm/i18n/bg_BG.po +++ b/addons/sale_crm/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/bs_BS.po b/addons/sale_crm/i18n/bs_BS.po index e03197cff01..45bebcca3e8 100644 --- a/addons/sale_crm/i18n/bs_BS.po +++ b/addons/sale_crm/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/ca_ES.po b/addons/sale_crm/i18n/ca_ES.po index f8296c2b674..74a824945f3 100644 --- a/addons/sale_crm/i18n/ca_ES.po +++ b/addons/sale_crm/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/cs_CZ.po b/addons/sale_crm/i18n/cs_CZ.po index 4fc4c5514a8..16a55105d74 100644 --- a/addons/sale_crm/i18n/cs_CZ.po +++ b/addons/sale_crm/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/de_DE.po b/addons/sale_crm/i18n/de_DE.po index 41ecec8e6ce..6406e24101f 100644 --- a/addons/sale_crm/i18n/de_DE.po +++ b/addons/sale_crm/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/es_AR.po b/addons/sale_crm/i18n/es_AR.po index 9414bf45460..d8eb6c29ab9 100644 --- a/addons/sale_crm/i18n/es_AR.po +++ b/addons/sale_crm/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/es_ES.po b/addons/sale_crm/i18n/es_ES.po index 207aeb33a12..838058d35fa 100644 --- a/addons/sale_crm/i18n/es_ES.po +++ b/addons/sale_crm/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/et_EE.po b/addons/sale_crm/i18n/et_EE.po index 6bd3ee24cc3..ad8da501d01 100644 --- a/addons/sale_crm/i18n/et_EE.po +++ b/addons/sale_crm/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/fi_FI.po b/addons/sale_crm/i18n/fi_FI.po index 37a12c2f840..cc2a44c45f2 100644 --- a/addons/sale_crm/i18n/fi_FI.po +++ b/addons/sale_crm/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/fr_FR.po b/addons/sale_crm/i18n/fr_FR.po index efe3fcd0bbe..d20c3ffc108 100644 --- a/addons/sale_crm/i18n/fr_FR.po +++ b/addons/sale_crm/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/hr_HR.po b/addons/sale_crm/i18n/hr_HR.po index 252f31b061b..923ff214f56 100644 --- a/addons/sale_crm/i18n/hr_HR.po +++ b/addons/sale_crm/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/hu_HU.po b/addons/sale_crm/i18n/hu_HU.po index b0f76ebf39f..daad831c9fc 100644 --- a/addons/sale_crm/i18n/hu_HU.po +++ b/addons/sale_crm/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/id_ID.po b/addons/sale_crm/i18n/id_ID.po index 1dded4ab15f..d851afaf12b 100644 --- a/addons/sale_crm/i18n/id_ID.po +++ b/addons/sale_crm/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/it_IT.po b/addons/sale_crm/i18n/it_IT.po index bf998b86f16..c43cbc7ac60 100644 --- a/addons/sale_crm/i18n/it_IT.po +++ b/addons/sale_crm/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/lt_LT.po b/addons/sale_crm/i18n/lt_LT.po index c21ad6a7048..d6a708f17f4 100644 --- a/addons/sale_crm/i18n/lt_LT.po +++ b/addons/sale_crm/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/nl_BE.po b/addons/sale_crm/i18n/nl_BE.po index ea7fd4c6520..68cbb2379b6 100644 --- a/addons/sale_crm/i18n/nl_BE.po +++ b/addons/sale_crm/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/nl_NL.po b/addons/sale_crm/i18n/nl_NL.po index 8d2c50f3c97..95b3ba1363e 100644 --- a/addons/sale_crm/i18n/nl_NL.po +++ b/addons/sale_crm/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/pl_PL.po b/addons/sale_crm/i18n/pl_PL.po index 7298a771fe6..de59d3ed5d3 100644 --- a/addons/sale_crm/i18n/pl_PL.po +++ b/addons/sale_crm/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/pt_BR.po b/addons/sale_crm/i18n/pt_BR.po index 8b57cc8db05..9fd2c650706 100644 --- a/addons/sale_crm/i18n/pt_BR.po +++ b/addons/sale_crm/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/pt_PT.po b/addons/sale_crm/i18n/pt_PT.po index 10eb61c879a..3a9f987df4f 100644 --- a/addons/sale_crm/i18n/pt_PT.po +++ b/addons/sale_crm/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/ro_RO.po b/addons/sale_crm/i18n/ro_RO.po index ba620f2fec2..f969ceab303 100644 --- a/addons/sale_crm/i18n/ro_RO.po +++ b/addons/sale_crm/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/ru_RU.po b/addons/sale_crm/i18n/ru_RU.po index 0bca57c170d..55cb2a67df9 100644 --- a/addons/sale_crm/i18n/ru_RU.po +++ b/addons/sale_crm/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+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 6d02215a776..817b015a858 100644 --- a/addons/sale_crm/i18n/sale_crm.pot +++ b/addons/sale_crm/i18n/sale_crm.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/sl_SL.po b/addons/sale_crm/i18n/sl_SL.po index 57bb8bcfca8..639d1ac7067 100644 --- a/addons/sale_crm/i18n/sl_SL.po +++ b/addons/sale_crm/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/cs_CS.po b/addons/sale_crm/i18n/sq_AL.po similarity index 97% rename from addons/sale_crm/i18n/cs_CS.po rename to addons/sale_crm/i18n/sq_AL.po index bba8221aef1..5d5a9437ab1 100644 --- a/addons/sale_crm/i18n/cs_CS.po +++ b/addons/sale_crm/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/sv_SE.po b/addons/sale_crm/i18n/sv_SE.po index 355af585f3e..b60570e128b 100644 --- a/addons/sale_crm/i18n/sv_SE.po +++ b/addons/sale_crm/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/tr_TR.po b/addons/sale_crm/i18n/tr_TR.po index 9f56a299856..cd32ae5f737 100644 --- a/addons/sale_crm/i18n/tr_TR.po +++ b/addons/sale_crm/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/uk_UK.po b/addons/sale_crm/i18n/uk_UA.po similarity index 97% rename from addons/sale_crm/i18n/uk_UK.po rename to addons/sale_crm/i18n/uk_UA.po index 586514e35c2..bb1ee4f067c 100644 --- a/addons/sale_crm/i18n/uk_UK.po +++ b/addons/sale_crm/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/sv_SV.po b/addons/sale_crm/i18n/vi_VN.po similarity index 97% rename from addons/sale_crm/i18n/sv_SV.po rename to addons/sale_crm/i18n/vi_VN.po index daf1b2cae80..6146859ba84 100644 --- a/addons/sale_crm/i18n/sv_SV.po +++ b/addons/sale_crm/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/zh_CN.po b/addons/sale_crm/i18n/zh_CN.po index 47f7d146945..f1e6f7bbb1a 100644 --- a/addons/sale_crm/i18n/zh_CN.po +++ b/addons/sale_crm/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/zh_TW.po b/addons/sale_crm/i18n/zh_TW.po index df1e46e0165..cd89e17f966 100644 --- a/addons/sale_crm/i18n/zh_TW.po +++ b/addons/sale_crm/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/ar_AR.po b/addons/sale_delivery_report/i18n/ar_AR.po index 429d6b28182..45ea5f217a2 100644 --- a/addons/sale_delivery_report/i18n/ar_AR.po +++ b/addons/sale_delivery_report/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/bg_BG.po b/addons/sale_delivery_report/i18n/bg_BG.po index a931740c9ec..033964dcca8 100644 --- a/addons/sale_delivery_report/i18n/bg_BG.po +++ b/addons/sale_delivery_report/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/bs_BS.po b/addons/sale_delivery_report/i18n/bs_BS.po index eb17639db22..4fcccf5fba3 100644 --- a/addons/sale_delivery_report/i18n/bs_BS.po +++ b/addons/sale_delivery_report/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/ca_ES.po b/addons/sale_delivery_report/i18n/ca_ES.po index 843a1dd44c5..c3f678dbb07 100644 --- a/addons/sale_delivery_report/i18n/ca_ES.po +++ b/addons/sale_delivery_report/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/cs_CZ.po b/addons/sale_delivery_report/i18n/cs_CZ.po index 18d4806e8d1..0f06de517ab 100644 --- a/addons/sale_delivery_report/i18n/cs_CZ.po +++ b/addons/sale_delivery_report/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/de_DE.po b/addons/sale_delivery_report/i18n/de_DE.po index d6221a256d2..4f7eed01c06 100644 --- a/addons/sale_delivery_report/i18n/de_DE.po +++ b/addons/sale_delivery_report/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/es_AR.po b/addons/sale_delivery_report/i18n/es_AR.po index acb22805b87..69247457aa6 100644 --- a/addons/sale_delivery_report/i18n/es_AR.po +++ b/addons/sale_delivery_report/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/es_ES.po b/addons/sale_delivery_report/i18n/es_ES.po index b4ee28179db..4277bd6ea46 100644 --- a/addons/sale_delivery_report/i18n/es_ES.po +++ b/addons/sale_delivery_report/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/et_EE.po b/addons/sale_delivery_report/i18n/et_EE.po index 1847d6fb30a..185b8d1b52e 100644 --- a/addons/sale_delivery_report/i18n/et_EE.po +++ b/addons/sale_delivery_report/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/fi_FI.po b/addons/sale_delivery_report/i18n/fi_FI.po index 59eb73bff80..34a70282c56 100644 --- a/addons/sale_delivery_report/i18n/fi_FI.po +++ b/addons/sale_delivery_report/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/fr_FR.po b/addons/sale_delivery_report/i18n/fr_FR.po index a88011af320..15f6b964a76 100644 --- a/addons/sale_delivery_report/i18n/fr_FR.po +++ b/addons/sale_delivery_report/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/hr_HR.po b/addons/sale_delivery_report/i18n/hr_HR.po index 8a519ca5a2a..868be246862 100644 --- a/addons/sale_delivery_report/i18n/hr_HR.po +++ b/addons/sale_delivery_report/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/hu_HU.po b/addons/sale_delivery_report/i18n/hu_HU.po index 832b4eb7114..0f6c79ca9e2 100644 --- a/addons/sale_delivery_report/i18n/hu_HU.po +++ b/addons/sale_delivery_report/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/id_ID.po b/addons/sale_delivery_report/i18n/id_ID.po index 9d0aafa8a3b..53ea1c58c46 100644 --- a/addons/sale_delivery_report/i18n/id_ID.po +++ b/addons/sale_delivery_report/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/it_IT.po b/addons/sale_delivery_report/i18n/it_IT.po index e243f5d6f78..73f1b15ab47 100644 --- a/addons/sale_delivery_report/i18n/it_IT.po +++ b/addons/sale_delivery_report/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/lt_LT.po b/addons/sale_delivery_report/i18n/lt_LT.po index 4ed84ce9697..9e1d064b141 100644 --- a/addons/sale_delivery_report/i18n/lt_LT.po +++ b/addons/sale_delivery_report/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/nl_BE.po b/addons/sale_delivery_report/i18n/nl_BE.po index 1224e6a2890..a106e423922 100644 --- a/addons/sale_delivery_report/i18n/nl_BE.po +++ b/addons/sale_delivery_report/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/nl_NL.po b/addons/sale_delivery_report/i18n/nl_NL.po index e84ed7d946d..c6d856937f2 100644 --- a/addons/sale_delivery_report/i18n/nl_NL.po +++ b/addons/sale_delivery_report/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/pl_PL.po b/addons/sale_delivery_report/i18n/pl_PL.po index 42303666a0b..fc2bf4f555e 100644 --- a/addons/sale_delivery_report/i18n/pl_PL.po +++ b/addons/sale_delivery_report/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/pt_BR.po b/addons/sale_delivery_report/i18n/pt_BR.po index bccd6278fa6..7397adb5a21 100644 --- a/addons/sale_delivery_report/i18n/pt_BR.po +++ b/addons/sale_delivery_report/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/pt_PT.po b/addons/sale_delivery_report/i18n/pt_PT.po index 0f230bcf4d2..d81022debd6 100644 --- a/addons/sale_delivery_report/i18n/pt_PT.po +++ b/addons/sale_delivery_report/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/ro_RO.po b/addons/sale_delivery_report/i18n/ro_RO.po index bbb732815d5..bd80ebfe727 100644 --- a/addons/sale_delivery_report/i18n/ro_RO.po +++ b/addons/sale_delivery_report/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/ru_RU.po b/addons/sale_delivery_report/i18n/ru_RU.po index e4e9d60224f..3e2afe3dc34 100644 --- a/addons/sale_delivery_report/i18n/ru_RU.po +++ b/addons/sale_delivery_report/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/sale_delivery_report.pot b/addons/sale_delivery_report/i18n/sale_delivery_report.pot index 71fdc04b4ea..625f36a66a3 100644 --- a/addons/sale_delivery_report/i18n/sale_delivery_report.pot +++ b/addons/sale_delivery_report/i18n/sale_delivery_report.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/sl_SL.po b/addons/sale_delivery_report/i18n/sl_SL.po index 90622514ef7..4e8794d8e2b 100644 --- a/addons/sale_delivery_report/i18n/sl_SL.po +++ b/addons/sale_delivery_report/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/cs_CS.po b/addons/sale_delivery_report/i18n/sq_AL.po similarity index 91% rename from addons/sale_delivery_report/i18n/cs_CS.po rename to addons/sale_delivery_report/i18n/sq_AL.po index 8f17b4b4173..f2a4d53a236 100644 --- a/addons/sale_delivery_report/i18n/cs_CS.po +++ b/addons/sale_delivery_report/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/sv_SE.po b/addons/sale_delivery_report/i18n/sv_SE.po index 213efafcc0f..d9364eb0d43 100644 --- a/addons/sale_delivery_report/i18n/sv_SE.po +++ b/addons/sale_delivery_report/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/tr_TR.po b/addons/sale_delivery_report/i18n/tr_TR.po index b7b4f057c23..a00e5913e15 100644 --- a/addons/sale_delivery_report/i18n/tr_TR.po +++ b/addons/sale_delivery_report/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/uk_UK.po b/addons/sale_delivery_report/i18n/uk_UA.po similarity index 91% rename from addons/sale_delivery_report/i18n/uk_UK.po rename to addons/sale_delivery_report/i18n/uk_UA.po index 1abd2582b82..97ca4712dba 100644 --- a/addons/sale_delivery_report/i18n/uk_UK.po +++ b/addons/sale_delivery_report/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/sv_SV.po b/addons/sale_delivery_report/i18n/vi_VN.po similarity index 91% rename from addons/sale_delivery_report/i18n/sv_SV.po rename to addons/sale_delivery_report/i18n/vi_VN.po index 8b00fa38bb3..820370506b3 100644 --- a/addons/sale_delivery_report/i18n/sv_SV.po +++ b/addons/sale_delivery_report/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/zh_CN.po b/addons/sale_delivery_report/i18n/zh_CN.po index 529f85995a8..19371dfea68 100644 --- a/addons/sale_delivery_report/i18n/zh_CN.po +++ b/addons/sale_delivery_report/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_delivery_report/i18n/zh_TW.po b/addons/sale_delivery_report/i18n/zh_TW.po index f334e95c84e..74be4367200 100644 --- a/addons/sale_delivery_report/i18n/zh_TW.po +++ b/addons/sale_delivery_report/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/ar_AR.po b/addons/sale_journal/i18n/ar_AR.po index e9b7a8b033d..3d04755bde6 100644 --- a/addons/sale_journal/i18n/ar_AR.po +++ b/addons/sale_journal/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/bg_BG.po b/addons/sale_journal/i18n/bg_BG.po index 45a9701b53d..a7f4d1953e7 100644 --- a/addons/sale_journal/i18n/bg_BG.po +++ b/addons/sale_journal/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/bs_BS.po b/addons/sale_journal/i18n/bs_BS.po index 20c1b4b542c..91683047fde 100644 --- a/addons/sale_journal/i18n/bs_BS.po +++ b/addons/sale_journal/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/ca_ES.po b/addons/sale_journal/i18n/ca_ES.po index 4f84eb06872..78cea0f8917 100644 --- a/addons/sale_journal/i18n/ca_ES.po +++ b/addons/sale_journal/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/cs_CZ.po b/addons/sale_journal/i18n/cs_CZ.po index 59f00b7ae64..d240f587e02 100644 --- a/addons/sale_journal/i18n/cs_CZ.po +++ b/addons/sale_journal/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/de_DE.po b/addons/sale_journal/i18n/de_DE.po index 00ed087f05c..5bff4525a3b 100644 --- a/addons/sale_journal/i18n/de_DE.po +++ b/addons/sale_journal/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/es_AR.po b/addons/sale_journal/i18n/es_AR.po index ff38d27f448..0bdba5e3901 100644 --- a/addons/sale_journal/i18n/es_AR.po +++ b/addons/sale_journal/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/es_ES.po b/addons/sale_journal/i18n/es_ES.po index 65a71b13750..9d61c424869 100644 --- a/addons/sale_journal/i18n/es_ES.po +++ b/addons/sale_journal/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/et_EE.po b/addons/sale_journal/i18n/et_EE.po index e40ab28b385..c6897f244ad 100644 --- a/addons/sale_journal/i18n/et_EE.po +++ b/addons/sale_journal/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/fi_FI.po b/addons/sale_journal/i18n/fi_FI.po index 5ccce227d54..90f68bb2f3f 100644 --- a/addons/sale_journal/i18n/fi_FI.po +++ b/addons/sale_journal/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/fr_FR.po b/addons/sale_journal/i18n/fr_FR.po index 37bfa350004..19bd53c4148 100644 --- a/addons/sale_journal/i18n/fr_FR.po +++ b/addons/sale_journal/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "Attribué" #. module: sale_journal #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: sale_journal #: selection:sale_journal.sale.stats,state:0 diff --git a/addons/sale_journal/i18n/hr_HR.po b/addons/sale_journal/i18n/hr_HR.po index ea3aaf56672..529970fdfec 100644 --- a/addons/sale_journal/i18n/hr_HR.po +++ b/addons/sale_journal/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/hu_HU.po b/addons/sale_journal/i18n/hu_HU.po index 2d1574288b0..e563e17b548 100644 --- a/addons/sale_journal/i18n/hu_HU.po +++ b/addons/sale_journal/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/id_ID.po b/addons/sale_journal/i18n/id_ID.po index 6ed4082c6d1..b9277773702 100644 --- a/addons/sale_journal/i18n/id_ID.po +++ b/addons/sale_journal/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/it_IT.po b/addons/sale_journal/i18n/it_IT.po index 15abe725ebc..960a41c8201 100644 --- a/addons/sale_journal/i18n/it_IT.po +++ b/addons/sale_journal/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/lt_LT.po b/addons/sale_journal/i18n/lt_LT.po index 1913c34cb97..51ab00e3884 100644 --- a/addons/sale_journal/i18n/lt_LT.po +++ b/addons/sale_journal/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/nl_BE.po b/addons/sale_journal/i18n/nl_BE.po index 9376a2afd4a..9834f46074e 100644 --- a/addons/sale_journal/i18n/nl_BE.po +++ b/addons/sale_journal/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/nl_NL.po b/addons/sale_journal/i18n/nl_NL.po index b94111f0656..7428d0f6435 100644 --- a/addons/sale_journal/i18n/nl_NL.po +++ b/addons/sale_journal/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/pl_PL.po b/addons/sale_journal/i18n/pl_PL.po index 775ee3c9b8f..572d43db4b0 100644 --- a/addons/sale_journal/i18n/pl_PL.po +++ b/addons/sale_journal/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/pt_BR.po b/addons/sale_journal/i18n/pt_BR.po index b7c28b57b15..3de0628dd2c 100644 --- a/addons/sale_journal/i18n/pt_BR.po +++ b/addons/sale_journal/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/pt_PT.po b/addons/sale_journal/i18n/pt_PT.po index ea42802f767..a6ac7206f11 100644 --- a/addons/sale_journal/i18n/pt_PT.po +++ b/addons/sale_journal/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/ro_RO.po b/addons/sale_journal/i18n/ro_RO.po index f302c64fade..e495733db14 100644 --- a/addons/sale_journal/i18n/ro_RO.po +++ b/addons/sale_journal/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/ru_RU.po b/addons/sale_journal/i18n/ru_RU.po index dd1f5269b3f..a5cb26b8d18 100644 --- a/addons/sale_journal/i18n/ru_RU.po +++ b/addons/sale_journal/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+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 0235b58e24f..2459941386c 100644 --- a/addons/sale_journal/i18n/sale_journal.pot +++ b/addons/sale_journal/i18n/sale_journal.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/sl_SL.po b/addons/sale_journal/i18n/sl_SL.po index 943199ea46c..cc625004da3 100644 --- a/addons/sale_journal/i18n/sl_SL.po +++ b/addons/sale_journal/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/cs_CS.po b/addons/sale_journal/i18n/sq_AL.po similarity index 99% rename from addons/sale_journal/i18n/cs_CS.po rename to addons/sale_journal/i18n/sq_AL.po index d6d075191de..137502eaa54 100644 --- a/addons/sale_journal/i18n/cs_CS.po +++ b/addons/sale_journal/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/sv_SE.po b/addons/sale_journal/i18n/sv_SE.po index 727d99c8037..0fa83b16417 100644 --- a/addons/sale_journal/i18n/sv_SE.po +++ b/addons/sale_journal/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/tr_TR.po b/addons/sale_journal/i18n/tr_TR.po index 39f29a53c47..9a201f0fa7b 100644 --- a/addons/sale_journal/i18n/tr_TR.po +++ b/addons/sale_journal/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/uk_UK.po b/addons/sale_journal/i18n/uk_UA.po similarity index 99% rename from addons/sale_journal/i18n/uk_UK.po rename to addons/sale_journal/i18n/uk_UA.po index b181e0e756d..cd54757a80d 100644 --- a/addons/sale_journal/i18n/uk_UK.po +++ b/addons/sale_journal/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/sv_SV.po b/addons/sale_journal/i18n/vi_VN.po similarity index 98% rename from addons/sale_journal/i18n/sv_SV.po rename to addons/sale_journal/i18n/vi_VN.po index 69810827b4e..d27b3b0d620 100644 --- a/addons/sale_journal/i18n/sv_SV.po +++ b/addons/sale_journal/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -397,7 +397,7 @@ msgstr "" #. module: sale_journal #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: sale_journal #: view:res.partner:0 diff --git a/addons/sale_journal/i18n/zh_CN.po b/addons/sale_journal/i18n/zh_CN.po index 5d66c917de2..1c5ef54c11c 100644 --- a/addons/sale_journal/i18n/zh_CN.po +++ b/addons/sale_journal/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/zh_TW.po b/addons/sale_journal/i18n/zh_TW.po index 6e3502339ec..66825559118 100644 --- a/addons/sale_journal/i18n/zh_TW.po +++ b/addons/sale_journal/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/ar_AR.po b/addons/scrum/i18n/ar_AR.po index a710e6fd058..a2498d6ee28 100644 --- a/addons/scrum/i18n/ar_AR.po +++ b/addons/scrum/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/bg_BG.po b/addons/scrum/i18n/bg_BG.po index 2db427746fb..a738098fb29 100644 --- a/addons/scrum/i18n/bg_BG.po +++ b/addons/scrum/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:42+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/bs_BS.po b/addons/scrum/i18n/bs_BS.po index 3b102055eda..f9c7c297d76 100644 --- a/addons/scrum/i18n/bs_BS.po +++ b/addons/scrum/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/ca_ES.po b/addons/scrum/i18n/ca_ES.po index 12662a0bc17..22e19528f15 100644 --- a/addons/scrum/i18n/ca_ES.po +++ b/addons/scrum/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/cs_CZ.po b/addons/scrum/i18n/cs_CZ.po index 59beab35f4f..dce731bfc97 100644 --- a/addons/scrum/i18n/cs_CZ.po +++ b/addons/scrum/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/de_DE.po b/addons/scrum/i18n/de_DE.po index ace57a76f52..79568b8a0e2 100644 --- a/addons/scrum/i18n/de_DE.po +++ b/addons/scrum/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/es_AR.po b/addons/scrum/i18n/es_AR.po index 41231498ff6..4fbc8ba6221 100644 --- a/addons/scrum/i18n/es_AR.po +++ b/addons/scrum/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/es_ES.po b/addons/scrum/i18n/es_ES.po index e010b050b2d..5ea9bc97948 100644 --- a/addons/scrum/i18n/es_ES.po +++ b/addons/scrum/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/et_EE.po b/addons/scrum/i18n/et_EE.po index 5d32d008dce..782ec069e81 100644 --- a/addons/scrum/i18n/et_EE.po +++ b/addons/scrum/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/fi_FI.po b/addons/scrum/i18n/fi_FI.po index d7bb778fca7..fd6ee92c9e0 100644 --- a/addons/scrum/i18n/fi_FI.po +++ b/addons/scrum/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/fr_FR.po b/addons/scrum/i18n/fr_FR.po index bbca91093de..c14d488fb4d 100644 --- a/addons/scrum/i18n/fr_FR.po +++ b/addons/scrum/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -50,7 +50,7 @@ msgstr "" #. module: scrum #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: scrum #: model:ir.module.module,shortdesc:scrum.module_meta_information diff --git a/addons/scrum/i18n/hr_HR.po b/addons/scrum/i18n/hr_HR.po index 09fcaa68a91..72b1b0a9a86 100644 --- a/addons/scrum/i18n/hr_HR.po +++ b/addons/scrum/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/hu_HU.po b/addons/scrum/i18n/hu_HU.po index 8a5c45efd2a..00365082255 100644 --- a/addons/scrum/i18n/hu_HU.po +++ b/addons/scrum/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/id_ID.po b/addons/scrum/i18n/id_ID.po index cd989c3d4f8..e692590098b 100644 --- a/addons/scrum/i18n/id_ID.po +++ b/addons/scrum/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/it_IT.po b/addons/scrum/i18n/it_IT.po index 95107a07671..d6ebc1445ed 100644 --- a/addons/scrum/i18n/it_IT.po +++ b/addons/scrum/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/lt_LT.po b/addons/scrum/i18n/lt_LT.po index d8983732885..ed19d27c049 100644 --- a/addons/scrum/i18n/lt_LT.po +++ b/addons/scrum/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/nl_BE.po b/addons/scrum/i18n/nl_BE.po index 5a3848c659a..857e9712689 100644 --- a/addons/scrum/i18n/nl_BE.po +++ b/addons/scrum/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/nl_NL.po b/addons/scrum/i18n/nl_NL.po index e7c4ae3c144..26e411c181c 100644 --- a/addons/scrum/i18n/nl_NL.po +++ b/addons/scrum/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/pl_PL.po b/addons/scrum/i18n/pl_PL.po index 6353f4eb897..5bca5aec77f 100644 --- a/addons/scrum/i18n/pl_PL.po +++ b/addons/scrum/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/pt_BR.po b/addons/scrum/i18n/pt_BR.po index 7ff4defd1eb..54ec0f8912d 100644 --- a/addons/scrum/i18n/pt_BR.po +++ b/addons/scrum/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/pt_PT.po b/addons/scrum/i18n/pt_PT.po index b153649b26e..9a2ed483f28 100644 --- a/addons/scrum/i18n/pt_PT.po +++ b/addons/scrum/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/ro_RO.po b/addons/scrum/i18n/ro_RO.po index ca5512bed96..ad0754875da 100644 --- a/addons/scrum/i18n/ro_RO.po +++ b/addons/scrum/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/ru_RU.po b/addons/scrum/i18n/ru_RU.po index 0af5e2d02d3..a85860be037 100644 --- a/addons/scrum/i18n/ru_RU.po +++ b/addons/scrum/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+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 7fa767f745e..140d3e7fdfa 100644 --- a/addons/scrum/i18n/scrum.pot +++ b/addons/scrum/i18n/scrum.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/sl_SL.po b/addons/scrum/i18n/sl_SL.po index 99877c7da59..f11df901381 100644 --- a/addons/scrum/i18n/sl_SL.po +++ b/addons/scrum/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/cs_CS.po b/addons/scrum/i18n/sq_AL.po similarity index 99% rename from addons/scrum/i18n/cs_CS.po rename to addons/scrum/i18n/sq_AL.po index 6307700a272..00dd44a4606 100644 --- a/addons/scrum/i18n/cs_CS.po +++ b/addons/scrum/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -641,7 +641,7 @@ msgstr "" #. module: scrum #: wizard_button:scrum.product.backlog.task.create,init,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: scrum #: selection:scrum.product.backlog,state:0 diff --git a/addons/scrum/i18n/sv_SE.po b/addons/scrum/i18n/sv_SE.po index 4d9133f5edc..ff7b4489c2a 100644 --- a/addons/scrum/i18n/sv_SE.po +++ b/addons/scrum/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/tr_TR.po b/addons/scrum/i18n/tr_TR.po index 3d9ed3efab7..e64e1a29efc 100644 --- a/addons/scrum/i18n/tr_TR.po +++ b/addons/scrum/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/uk_UK.po b/addons/scrum/i18n/uk_UA.po similarity index 99% rename from addons/scrum/i18n/uk_UK.po rename to addons/scrum/i18n/uk_UA.po index 500f05ee33c..ce3445475e2 100644 --- a/addons/scrum/i18n/uk_UK.po +++ b/addons/scrum/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/sv_SV.po b/addons/scrum/i18n/vi_VN.po similarity index 96% rename from addons/scrum/i18n/sv_SV.po rename to addons/scrum/i18n/vi_VN.po index b28bcd555ec..301b9157f87 100644 --- a/addons/scrum/i18n/sv_SV.po +++ b/addons/scrum/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -147,7 +147,7 @@ msgstr "" #: field:scrum.project,notes:0 #: field:scrum.task,notes:0 msgid "Notes" -msgstr "Anteckningar" +msgstr "" #. module: scrum #: model:ir.model,name:scrum.model_scrum_product_backlog @@ -159,7 +159,7 @@ msgstr "" #: field:scrum.sprint,project_id:0 #: field:scrum.task,project_id:0 msgid "Project" -msgstr "Projekt" +msgstr "" #. module: scrum #: help:scrum.project,warn_manager:0 @@ -216,7 +216,7 @@ msgstr "" #: model:ir.actions.act_window,name:scrum.action_view_task #: model:ir.ui.menu,name:scrum.menu_action_view_task msgid "All Tasks" -msgstr "Alla uppgifter" +msgstr "" #. module: scrum #: field:scrum.task,date_deadline:0 @@ -244,13 +244,13 @@ msgstr "" #. module: scrum #: field:scrum.product.backlog,priority:0 msgid "Priority" -msgstr "Prioritet" +msgstr "" #. module: scrum #: field:scrum.project,state:0 #: view:scrum.sprint:0 msgid "State" -msgstr "Status" +msgstr "" #. module: scrum #: help:scrum.project,progress_rate:0 @@ -275,7 +275,7 @@ msgstr "" #. module: scrum #: field:scrum.task,type:0 msgid "Type" -msgstr "Typ" +msgstr "" #. module: scrum #: view:scrum.project:0 @@ -349,7 +349,7 @@ msgstr "" #. module: scrum #: field:scrum.project,contact_id:0 msgid "Contact" -msgstr "Kontakt" +msgstr "" #. module: scrum #: field:scrum.project,tasks:0 @@ -364,7 +364,7 @@ msgstr "" #. module: scrum #: view:scrum.product.backlog:0 msgid "Tasks" -msgstr "Uppgifter" +msgstr "" #. module: scrum #: view:scrum.sprint:0 @@ -435,7 +435,7 @@ msgstr "" #. module: scrum #: view:scrum.sprint:0 msgid "Review" -msgstr "Granska" +msgstr "" #. module: scrum #: model:ir.actions.act_window,name:scrum.action_sprint_open_tree7 @@ -446,7 +446,7 @@ msgstr "" #. module: scrum #: field:scrum.product.backlog,note:0 msgid "Note" -msgstr "Anteckning" +msgstr "" #. module: scrum #: selection:scrum.product.backlog,state:0 @@ -459,7 +459,7 @@ msgstr "" #: selection:scrum.product.backlog,priority:0 #: selection:scrum.task,priority:0 msgid "Low" -msgstr "Låg" +msgstr "" #. module: scrum #: model:ir.actions.act_window,name:scrum.action_view_task5 @@ -534,14 +534,14 @@ msgstr "" #. module: scrum #: field:scrum.product.backlog,user_id:0 msgid "User" -msgstr "Användare" +msgstr "" #. module: scrum #: field:scrum.product.backlog,active:0 #: field:scrum.project,active:0 #: field:scrum.task,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: scrum #: help:scrum.task,delay_hours:0 @@ -587,7 +587,7 @@ msgstr "" #. module: scrum #: field:scrum.task,user_id:0 msgid "Assigned to" -msgstr "Tilldelad till" +msgstr "" #. module: scrum #: field:scrum.meeting,question_backlog:0 @@ -676,7 +676,7 @@ msgstr "" #. module: scrum #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: scrum #: field:scrum.task,remaining_hours:0 @@ -739,7 +739,7 @@ msgstr "" #. module: scrum #: field:scrum.task,description:0 msgid "Description" -msgstr "Beskrivning" +msgstr "" #. module: scrum #: selection:scrum.product.backlog,priority:0 @@ -750,7 +750,7 @@ msgstr "" #. module: scrum #: view:scrum.sprint:0 msgid "Daily Meetings" -msgstr "Dagliga möten" +msgstr "" #. module: scrum #: view:scrum.meeting:0 @@ -766,7 +766,7 @@ msgstr "" #: field:scrum.product.backlog,progress:0 #: field:scrum.sprint,progress:0 msgid "Progress (0-100)" -msgstr "Förlopp (0-100)" +msgstr "" #. module: scrum #: model:ir.model,name:scrum.model_scrum_team @@ -817,7 +817,7 @@ msgstr "" #. module: scrum #: field:scrum.team,users_id:0 msgid "Users" -msgstr "Användare" +msgstr "" #. module: scrum #: field:scrum.product.backlog,sequence:0 diff --git a/addons/scrum/i18n/zh_CN.po b/addons/scrum/i18n/zh_CN.po index 19798a7b11f..772f5b604e7 100644 --- a/addons/scrum/i18n/zh_CN.po +++ b/addons/scrum/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/zh_TW.po b/addons/scrum/i18n/zh_TW.po index 84ea657b690..0ef0c367836 100644 --- a/addons/scrum/i18n/zh_TW.po +++ b/addons/scrum/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/ar_AR.po b/addons/stock/i18n/ar_AR.po index ea82a68f146..eb3c8919bec 100644 --- a/addons/stock/i18n/ar_AR.po +++ b/addons/stock/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/bg_BG.po b/addons/stock/i18n/bg_BG.po index 1b4ef9d4829..e50482f468d 100644 --- a/addons/stock/i18n/bg_BG.po +++ b/addons/stock/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/bs_BS.po b/addons/stock/i18n/bs_BS.po index 3f08ee5ea49..133e612eb84 100644 --- a/addons/stock/i18n/bs_BS.po +++ b/addons/stock/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/ca_ES.po b/addons/stock/i18n/ca_ES.po index 54459a78cf5..41d26c8ae28 100644 --- a/addons/stock/i18n/ca_ES.po +++ b/addons/stock/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/cs_CZ.po b/addons/stock/i18n/cs_CZ.po index 3738e9c8030..e83832ca6ac 100644 --- a/addons/stock/i18n/cs_CZ.po +++ b/addons/stock/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/de_DE.po b/addons/stock/i18n/de_DE.po index 098dafde592..7fbdee98828 100644 --- a/addons/stock/i18n/de_DE.po +++ b/addons/stock/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/es_AR.po b/addons/stock/i18n/es_AR.po index f04044ad9cd..f2c959ce683 100644 --- a/addons/stock/i18n/es_AR.po +++ b/addons/stock/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/es_ES.po b/addons/stock/i18n/es_ES.po index 3dc0f558629..69ca4697421 100644 --- a/addons/stock/i18n/es_ES.po +++ b/addons/stock/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/et_EE.po b/addons/stock/i18n/et_EE.po index 1ad0c04021d..9b9d9a9019a 100644 --- a/addons/stock/i18n/et_EE.po +++ b/addons/stock/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -130,7 +130,7 @@ msgstr "Viide" #. module: stock #: wizard_field:stock.invoice_onshipping,init,group:0 msgid "Group by partner" -msgstr "Grupeeri partnerijärgi" +msgstr "Grupeeri partneri järgi" #. module: stock #: field:stock.picking,address_id:0 @@ -530,7 +530,7 @@ msgstr "Jälgi saabuvaid partiisid" #. module: stock #: model:ir.actions.act_window,name:stock.act_stock_product_location_open msgid "Stock by Location" -msgstr "Ladu asukohajärgi" +msgstr "Ladu asukoha järgi" #. module: stock #: selection:stock.location,icon:0 diff --git a/addons/stock/i18n/fi_FI.po b/addons/stock/i18n/fi_FI.po index 08f698e29f4..ba703d154db 100644 --- a/addons/stock/i18n/fi_FI.po +++ b/addons/stock/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/fr_FR.po b/addons/stock/i18n/fr_FR.po index 43376f8e911..7a522d0ae68 100644 --- a/addons/stock/i18n/fr_FR.po +++ b/addons/stock/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "terp-account" #. module: stock #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: stock #: model:ir.module.module,shortdesc:stock.module_meta_information @@ -1547,7 +1547,7 @@ msgstr "Mettre le stock à zéro" #. module: stock #: field:stock.move,product_uos_qty:0 msgid "Quantity (UOS)" -msgstr "Quantité (UdV)" +msgstr "Quantité US" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree5 @@ -1756,7 +1756,7 @@ msgstr "Auto-colisage" #. module: stock #: field:stock.move,product_uos:0 msgid "Product UOS" -msgstr "UdV du produit" +msgstr "US produit" #. module: stock #: field:stock.location,posz:0 @@ -1767,7 +1767,7 @@ msgstr "Hauteur (Z)" #: field:stock.inventory.line,product_uom:0 #: field:stock.move,product_uom:0 msgid "Product UOM" -msgstr "UdM du produit" +msgstr "UdM produit" #. module: stock #: rml:lot.stock.overview:0 diff --git a/addons/stock/i18n/hr_HR.po b/addons/stock/i18n/hr_HR.po index ac7054e1e29..d8ee31240f2 100644 --- a/addons/stock/i18n/hr_HR.po +++ b/addons/stock/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/hu_HU.po b/addons/stock/i18n/hu_HU.po index 8e51e109238..b206a5d559a 100644 --- a/addons/stock/i18n/hu_HU.po +++ b/addons/stock/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/id_ID.po b/addons/stock/i18n/id_ID.po index b2497c1c5a8..0bdff529333 100644 --- a/addons/stock/i18n/id_ID.po +++ b/addons/stock/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/it_IT.po b/addons/stock/i18n/it_IT.po index 56e2d165b94..9951ab7f4c8 100644 --- a/addons/stock/i18n/it_IT.po +++ b/addons/stock/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/lt_LT.po b/addons/stock/i18n/lt_LT.po index 35d09585b55..f8188ae56a1 100644 --- a/addons/stock/i18n/lt_LT.po +++ b/addons/stock/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/nl_BE.po b/addons/stock/i18n/nl_BE.po index 071d87b178e..8c19a9cac10 100644 --- a/addons/stock/i18n/nl_BE.po +++ b/addons/stock/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/nl_NL.po b/addons/stock/i18n/nl_NL.po index 39228bc0b4a..d449d632ae7 100644 --- a/addons/stock/i18n/nl_NL.po +++ b/addons/stock/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/pl_PL.po b/addons/stock/i18n/pl_PL.po index 7329cd09e01..6a0b8165c36 100644 --- a/addons/stock/i18n/pl_PL.po +++ b/addons/stock/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/pt_BR.po b/addons/stock/i18n/pt_BR.po index 5e306e310e0..9f9479cb990 100644 --- a/addons/stock/i18n/pt_BR.po +++ b/addons/stock/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/pt_PT.po b/addons/stock/i18n/pt_PT.po index 8739951c3c0..e2de861b9ad 100644 --- a/addons/stock/i18n/pt_PT.po +++ b/addons/stock/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/ro_RO.po b/addons/stock/i18n/ro_RO.po index bc9a9a48c4f..d08f1a89ff5 100644 --- a/addons/stock/i18n/ro_RO.po +++ b/addons/stock/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/ru_RU.po b/addons/stock/i18n/ru_RU.po index bab11c5beb7..466b46bd443 100644 --- a/addons/stock/i18n/ru_RU.po +++ b/addons/stock/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/sl_SL.po b/addons/stock/i18n/sl_SL.po index f640c4d0bba..8b3b7d4bb6e 100644 --- a/addons/stock/i18n/sl_SL.po +++ b/addons/stock/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/cs_CS.po b/addons/stock/i18n/sq_AL.po similarity index 99% rename from addons/stock/i18n/cs_CS.po rename to addons/stock/i18n/sq_AL.po index 74c51d2632d..d2e226ce0ae 100644 --- a/addons/stock/i18n/cs_CS.po +++ b/addons/stock/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -1025,7 +1025,7 @@ msgstr "" #: view:stock.picking.move.wizard:0 #: wizard_button:stock.return.picking,init,end:0 msgid "Cancel" -msgstr "Storno" +msgstr "" #. module: stock #: view:stock.move:0 @@ -1044,7 +1044,7 @@ msgstr "" #. module: stock #: view:product.template:0 msgid "Information" -msgstr "Informace" +msgstr "" #. module: stock #: selection:stock.location,icon:0 @@ -1212,7 +1212,7 @@ msgstr "" #. module: stock #: wizard_view:stock.move.track,init:0 msgid "Tracking a move" -msgstr "Sledovat pohyb" +msgstr "" #. module: stock #: selection:stock.location,icon:0 @@ -1587,7 +1587,7 @@ msgstr "" #. module: stock #: view:product.template:0 msgid "Properties" -msgstr "Vlastnosti" +msgstr "" #. module: stock #: model:ir.actions.act_window,name:stock.action_incoterms_tree @@ -1736,7 +1736,7 @@ msgstr "" #. module: stock #: wizard_button:stock.return.picking,init,return:0 msgid "Return" -msgstr "Návrat" +msgstr "" #. module: stock #: field:stock.picking,auto_picking:0 @@ -2033,7 +2033,7 @@ msgstr "" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_configuration msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: stock #: selection:stock.location,icon:0 @@ -2244,7 +2244,7 @@ msgstr "" #. module: stock #: wizard_button:stock.move.split,init,split:0 msgid "Split" -msgstr "Rozdělit(Split)" +msgstr "" #. module: stock #: field:stock.location,account_id:0 @@ -2265,7 +2265,7 @@ msgstr "" #. module: stock #: model:ir.ui.menu,name:stock.menu_traceability_low msgid "Low Level" -msgstr "Nízkoúrovňové" +msgstr "" #. module: stock #: rml:stock.picking.list:0 diff --git a/addons/stock/i18n/stock.pot b/addons/stock/i18n/stock.pot index ed262fb25b7..f7efc219bb1 100644 --- a/addons/stock/i18n/stock.pot +++ b/addons/stock/i18n/stock.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/sv_SE.po b/addons/stock/i18n/sv_SE.po index d5595dd5896..171988df99b 100644 --- a/addons/stock/i18n/sv_SE.po +++ b/addons/stock/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/th_TH.po b/addons/stock/i18n/th_TH.po index 8cdc9b457a6..e112ac264ea 100644 --- a/addons/stock/i18n/th_TH.po +++ b/addons/stock/i18n/th_TH.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-08-06 09:04+0000\n" +"X-Launchpad-Export-Date: 2009-08-28 10:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock diff --git a/addons/stock/i18n/tr_TR.po b/addons/stock/i18n/tr_TR.po index b3062f86b10..31a5f4754d3 100644 --- a/addons/stock/i18n/tr_TR.po +++ b/addons/stock/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/uk_UK.po b/addons/stock/i18n/uk_UA.po similarity index 99% rename from addons/stock/i18n/uk_UK.po rename to addons/stock/i18n/uk_UA.po index f16793f6c30..83cce5249c3 100644 --- a/addons/stock/i18n/uk_UK.po +++ b/addons/stock/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/sv_SV.po b/addons/stock/i18n/vi_VN.po similarity index 98% rename from addons/stock/i18n/sv_SV.po rename to addons/stock/i18n/vi_VN.po index a3e58fcf6da..017a2744f13 100644 --- a/addons/stock/i18n/sv_SV.po +++ b/addons/stock/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -735,7 +735,7 @@ msgstr "" #: selection:stock.move,state:0 #: selection:stock.picking,state:0 msgid "Waiting" -msgstr "Väntar" +msgstr "" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree2 @@ -881,7 +881,7 @@ msgstr "" #. module: stock #: selection:stock.move,priority:0 msgid "Urgent" -msgstr "Bråttom" +msgstr "" #. module: stock #: help:product.category,property_stock_account_input_categ:0 @@ -1115,7 +1115,7 @@ msgstr "" #: field:stock.picking.move.wizard,name:0 #: field:stock.warehouse,name:0 msgid "Name" -msgstr "Namn" +msgstr "" #. module: stock #: view:stock.inventory.line:0 @@ -1328,7 +1328,7 @@ msgstr "" #. module: stock #: field:stock.move,priority:0 msgid "Priority" -msgstr "Prioritet" +msgstr "" #. module: stock #: wizard_field:inventory.merge.stock.zero,init,location_id:0 @@ -1392,7 +1392,7 @@ msgstr "" #. module: stock #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: stock #: field:stock.picking,min_date:0 @@ -1582,7 +1582,7 @@ msgstr "" #: field:stock.picking,active:0 #: field:stock.tracking,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: stock #: view:product.template:0 @@ -1663,7 +1663,7 @@ msgstr "" #: selection:stock.move,state:0 #: selection:stock.picking,state:0 msgid "Done" -msgstr "Klar" +msgstr "" #. module: stock #: model:stock.location,name:stock.stock_location_locations_virtual @@ -1731,7 +1731,7 @@ msgstr "" #: field:stock.production.lot,product_id:0 #: field:stock.report.prodlots,product_id:0 msgid "Product" -msgstr "Produkt" +msgstr "" #. module: stock #: wizard_button:stock.return.picking,init,return:0 @@ -1828,7 +1828,7 @@ msgstr "" #. module: stock #: field:stock.move,location_id:0 msgid "Source Location" -msgstr "Plats" +msgstr "" #. module: stock #: view:product.template:0 @@ -1965,7 +1965,7 @@ msgstr "" #: selection:stock.move,state:0 #: selection:stock.picking,state:0 msgid "Confirmed" -msgstr "Bekräftad" +msgstr "" #. module: stock #: selection:stock.location,icon:0 @@ -1975,7 +1975,7 @@ msgstr "" #. module: stock #: view:stock.move:0 msgid "Confirm" -msgstr "Bekräfta" +msgstr "" #. module: stock #: view:stock.picking:0 @@ -2033,7 +2033,7 @@ msgstr "" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_configuration msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: stock #: selection:stock.location,icon:0 @@ -2099,14 +2099,14 @@ msgstr "" #. module: stock #: selection:stock.picking,type:0 msgid "Internal" -msgstr "Intern" +msgstr "" #. module: stock #: selection:stock.inventory,state:0 #: selection:stock.move,state:0 #: selection:stock.picking,state:0 msgid "Draft" -msgstr "Utdrag" +msgstr "" #. module: stock #: selection:stock.location,icon:0 @@ -2187,7 +2187,7 @@ msgstr "" #: model:ir.ui.menu,name:stock.menu_traceability #: model:ir.ui.menu,name:stock.next_id_62 msgid "Traceability" -msgstr "Spårbarhet" +msgstr "" #. module: stock #: field:stock.picking,date:0 @@ -2265,13 +2265,13 @@ msgstr "" #. module: stock #: model:ir.ui.menu,name:stock.menu_traceability_low msgid "Low Level" -msgstr "Lågnivå" +msgstr "" #. module: stock #: rml:stock.picking.list:0 #: field:stock.production.lot.revision,description:0 msgid "Description" -msgstr "Beskrivning" +msgstr "" #. module: stock #: selection:stock.location,icon:0 diff --git a/addons/stock/i18n/zh_CN.po b/addons/stock/i18n/zh_CN.po index 6aa7b1e4120..3b66bb64456 100644 --- a/addons/stock/i18n/zh_CN.po +++ b/addons/stock/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/zh_TW.po b/addons/stock/i18n/zh_TW.po index 7f268173c96..7884f3d790e 100644 --- a/addons/stock/i18n/zh_TW.po +++ b/addons/stock/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/ar_AR.po b/addons/stock_invoice_directly/i18n/ar_AR.po index 04dbf249f35..e4640b748b5 100644 --- a/addons/stock_invoice_directly/i18n/ar_AR.po +++ b/addons/stock_invoice_directly/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/bg_BG.po b/addons/stock_invoice_directly/i18n/bg_BG.po index 12a3fbee6ae..05b21410f8a 100644 --- a/addons/stock_invoice_directly/i18n/bg_BG.po +++ b/addons/stock_invoice_directly/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/bs_BS.po b/addons/stock_invoice_directly/i18n/bs_BS.po index d2f4b033479..732569b930c 100644 --- a/addons/stock_invoice_directly/i18n/bs_BS.po +++ b/addons/stock_invoice_directly/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/ca_ES.po b/addons/stock_invoice_directly/i18n/ca_ES.po index 1ed6b7fe4f7..e9be92e29b9 100644 --- a/addons/stock_invoice_directly/i18n/ca_ES.po +++ b/addons/stock_invoice_directly/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/cs_CZ.po b/addons/stock_invoice_directly/i18n/cs_CZ.po index 82e6cb8e2f8..88eba017edf 100644 --- a/addons/stock_invoice_directly/i18n/cs_CZ.po +++ b/addons/stock_invoice_directly/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/de_DE.po b/addons/stock_invoice_directly/i18n/de_DE.po index 275b5c7588d..1d5d04cf6ed 100644 --- a/addons/stock_invoice_directly/i18n/de_DE.po +++ b/addons/stock_invoice_directly/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/es_AR.po b/addons/stock_invoice_directly/i18n/es_AR.po index 0a9ce075660..3d96f568e5d 100644 --- a/addons/stock_invoice_directly/i18n/es_AR.po +++ b/addons/stock_invoice_directly/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/es_ES.po b/addons/stock_invoice_directly/i18n/es_ES.po index a01952908f0..0d9c8bd8554 100644 --- a/addons/stock_invoice_directly/i18n/es_ES.po +++ b/addons/stock_invoice_directly/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/et_EE.po b/addons/stock_invoice_directly/i18n/et_EE.po index 33081515a8e..f37e500a5bb 100644 --- a/addons/stock_invoice_directly/i18n/et_EE.po +++ b/addons/stock_invoice_directly/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/fi_FI.po b/addons/stock_invoice_directly/i18n/fi_FI.po index f51ac471a51..9634201edf8 100644 --- a/addons/stock_invoice_directly/i18n/fi_FI.po +++ b/addons/stock_invoice_directly/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/fr_FR.po b/addons/stock_invoice_directly/i18n/fr_FR.po index 89d4122ba54..21126975268 100644 --- a/addons/stock_invoice_directly/i18n/fr_FR.po +++ b/addons/stock_invoice_directly/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/hr_HR.po b/addons/stock_invoice_directly/i18n/hr_HR.po index 846bee0178c..da19c200c5d 100644 --- a/addons/stock_invoice_directly/i18n/hr_HR.po +++ b/addons/stock_invoice_directly/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/hu_HU.po b/addons/stock_invoice_directly/i18n/hu_HU.po index 2a4f71129d5..0cddd115748 100644 --- a/addons/stock_invoice_directly/i18n/hu_HU.po +++ b/addons/stock_invoice_directly/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/id_ID.po b/addons/stock_invoice_directly/i18n/id_ID.po index b26291809b8..53fff6eac97 100644 --- a/addons/stock_invoice_directly/i18n/id_ID.po +++ b/addons/stock_invoice_directly/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/it_IT.po b/addons/stock_invoice_directly/i18n/it_IT.po index ca34abac39a..a337ae8d29a 100644 --- a/addons/stock_invoice_directly/i18n/it_IT.po +++ b/addons/stock_invoice_directly/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/lt_LT.po b/addons/stock_invoice_directly/i18n/lt_LT.po index 762f5cf00ac..480714f71d5 100644 --- a/addons/stock_invoice_directly/i18n/lt_LT.po +++ b/addons/stock_invoice_directly/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/nl_BE.po b/addons/stock_invoice_directly/i18n/nl_BE.po index b603f3baed6..3f881c1bcd3 100644 --- a/addons/stock_invoice_directly/i18n/nl_BE.po +++ b/addons/stock_invoice_directly/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/nl_NL.po b/addons/stock_invoice_directly/i18n/nl_NL.po index 8bafa132513..998eb0b9fc2 100644 --- a/addons/stock_invoice_directly/i18n/nl_NL.po +++ b/addons/stock_invoice_directly/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/pl_PL.po b/addons/stock_invoice_directly/i18n/pl_PL.po index 8fd563fbbc5..8c26d855d59 100644 --- a/addons/stock_invoice_directly/i18n/pl_PL.po +++ b/addons/stock_invoice_directly/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/pt_BR.po b/addons/stock_invoice_directly/i18n/pt_BR.po index 7fee1009b02..cb4617af0b0 100644 --- a/addons/stock_invoice_directly/i18n/pt_BR.po +++ b/addons/stock_invoice_directly/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/pt_PT.po b/addons/stock_invoice_directly/i18n/pt_PT.po index bd27e2729f5..8e04d5d2655 100644 --- a/addons/stock_invoice_directly/i18n/pt_PT.po +++ b/addons/stock_invoice_directly/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/ro_RO.po b/addons/stock_invoice_directly/i18n/ro_RO.po index 91df68bf9b3..c625c9db349 100644 --- a/addons/stock_invoice_directly/i18n/ro_RO.po +++ b/addons/stock_invoice_directly/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/ru_RU.po b/addons/stock_invoice_directly/i18n/ru_RU.po index aef2cf54ef6..90408dd3eea 100644 --- a/addons/stock_invoice_directly/i18n/ru_RU.po +++ b/addons/stock_invoice_directly/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/sl_SL.po b/addons/stock_invoice_directly/i18n/sl_SL.po index e01c3087499..b626afddfd3 100644 --- a/addons/stock_invoice_directly/i18n/sl_SL.po +++ b/addons/stock_invoice_directly/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/sv_SV.po b/addons/stock_invoice_directly/i18n/sq_AL.po similarity index 78% rename from addons/stock_invoice_directly/i18n/sv_SV.po rename to addons/stock_invoice_directly/i18n/sq_AL.po index e46603ba1d9..8d62c64b4be 100644 --- a/addons/stock_invoice_directly/i18n/sv_SV.po +++ b/addons/stock_invoice_directly/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot b/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot index a2820fab9a1..0165a7e5076 100644 --- a/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot +++ b/addons/stock_invoice_directly/i18n/stock_invoice_directly.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/sv_SE.po b/addons/stock_invoice_directly/i18n/sv_SE.po index cc51dfffb74..13b62783cde 100644 --- a/addons/stock_invoice_directly/i18n/sv_SE.po +++ b/addons/stock_invoice_directly/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/tr_TR.po b/addons/stock_invoice_directly/i18n/tr_TR.po index 35050151411..ac98ff8e1db 100644 --- a/addons/stock_invoice_directly/i18n/tr_TR.po +++ b/addons/stock_invoice_directly/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/uk_UK.po b/addons/stock_invoice_directly/i18n/uk_UA.po similarity index 78% rename from addons/stock_invoice_directly/i18n/uk_UK.po rename to addons/stock_invoice_directly/i18n/uk_UA.po index f7b32e78b65..f7a39e55bdd 100644 --- a/addons/stock_invoice_directly/i18n/uk_UK.po +++ b/addons/stock_invoice_directly/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/cs_CS.po b/addons/stock_invoice_directly/i18n/vi_VN.po similarity index 78% rename from addons/stock_invoice_directly/i18n/cs_CS.po rename to addons/stock_invoice_directly/i18n/vi_VN.po index 9e0f3f63f1a..3d566961e61 100644 --- a/addons/stock_invoice_directly/i18n/cs_CS.po +++ b/addons/stock_invoice_directly/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/zh_CN.po b/addons/stock_invoice_directly/i18n/zh_CN.po index 637b43bd804..a8347d683f8 100644 --- a/addons/stock_invoice_directly/i18n/zh_CN.po +++ b/addons/stock_invoice_directly/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_invoice_directly/i18n/zh_TW.po b/addons/stock_invoice_directly/i18n/zh_TW.po index 40a936bd850..36a6317a0d1 100644 --- a/addons/stock_invoice_directly/i18n/zh_TW.po +++ b/addons/stock_invoice_directly/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/ar_AR.po b/addons/stock_location/i18n/ar_AR.po index 54e2458242d..accf4c3c035 100644 --- a/addons/stock_location/i18n/ar_AR.po +++ b/addons/stock_location/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/bg_BG.po b/addons/stock_location/i18n/bg_BG.po index 7e234289c2b..4680c8610e1 100644 --- a/addons/stock_location/i18n/bg_BG.po +++ b/addons/stock_location/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:42+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:42+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/bs_BS.po b/addons/stock_location/i18n/bs_BS.po index 8b253600409..8c6ae381612 100644 --- a/addons/stock_location/i18n/bs_BS.po +++ b/addons/stock_location/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/ca_ES.po b/addons/stock_location/i18n/ca_ES.po index 5c9f1a0e766..e75a3fc9b91 100644 --- a/addons/stock_location/i18n/ca_ES.po +++ b/addons/stock_location/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/cs_CZ.po b/addons/stock_location/i18n/cs_CZ.po index 17d12d03399..1e6717a1f3f 100644 --- a/addons/stock_location/i18n/cs_CZ.po +++ b/addons/stock_location/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/de_DE.po b/addons/stock_location/i18n/de_DE.po index 7371c08003d..3ddc456e1e4 100644 --- a/addons/stock_location/i18n/de_DE.po +++ b/addons/stock_location/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/es_AR.po b/addons/stock_location/i18n/es_AR.po index d636181c1f9..b48e1c31b80 100644 --- a/addons/stock_location/i18n/es_AR.po +++ b/addons/stock_location/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/es_ES.po b/addons/stock_location/i18n/es_ES.po index aae46ce4e4e..2a8fb7511f0 100644 --- a/addons/stock_location/i18n/es_ES.po +++ b/addons/stock_location/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/et_EE.po b/addons/stock_location/i18n/et_EE.po index 7c2c727ba99..ee77abd16e2 100644 --- a/addons/stock_location/i18n/et_EE.po +++ b/addons/stock_location/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/fi_FI.po b/addons/stock_location/i18n/fi_FI.po index 86f9d2ffcc6..81a9bb4746d 100644 --- a/addons/stock_location/i18n/fi_FI.po +++ b/addons/stock_location/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/fr_FR.po b/addons/stock_location/i18n/fr_FR.po index 6703d905eb0..57876ba915d 100644 --- a/addons/stock_location/i18n/fr_FR.po +++ b/addons/stock_location/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:08+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/hr_HR.po b/addons/stock_location/i18n/hr_HR.po index 821eef4f329..d0cd61ae725 100644 --- a/addons/stock_location/i18n/hr_HR.po +++ b/addons/stock_location/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/hu_HU.po b/addons/stock_location/i18n/hu_HU.po index aa148e1f561..fdcde7c972d 100644 --- a/addons/stock_location/i18n/hu_HU.po +++ b/addons/stock_location/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/id_ID.po b/addons/stock_location/i18n/id_ID.po index fdfbd0dbcec..6e6a94c13bc 100644 --- a/addons/stock_location/i18n/id_ID.po +++ b/addons/stock_location/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/it_IT.po b/addons/stock_location/i18n/it_IT.po index d8d686c44c9..d4b97c69dac 100644 --- a/addons/stock_location/i18n/it_IT.po +++ b/addons/stock_location/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/lt_LT.po b/addons/stock_location/i18n/lt_LT.po index 38abcb05f9e..515afbde5c0 100644 --- a/addons/stock_location/i18n/lt_LT.po +++ b/addons/stock_location/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:28+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/nl_BE.po b/addons/stock_location/i18n/nl_BE.po index febf0e2afc4..1f67ff338a0 100644 --- a/addons/stock_location/i18n/nl_BE.po +++ b/addons/stock_location/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/nl_NL.po b/addons/stock_location/i18n/nl_NL.po index 1054f384e64..013e8c63535 100644 --- a/addons/stock_location/i18n/nl_NL.po +++ b/addons/stock_location/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/pl_PL.po b/addons/stock_location/i18n/pl_PL.po index 48fcb8fe376..d7eff0f42fc 100644 --- a/addons/stock_location/i18n/pl_PL.po +++ b/addons/stock_location/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/pt_BR.po b/addons/stock_location/i18n/pt_BR.po index 8ed617f7ab5..3ee1ade1f5b 100644 --- a/addons/stock_location/i18n/pt_BR.po +++ b/addons/stock_location/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:18+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:18+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/pt_PT.po b/addons/stock_location/i18n/pt_PT.po index f34730e0259..1f1d9e8efc6 100644 --- a/addons/stock_location/i18n/pt_PT.po +++ b/addons/stock_location/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/ro_RO.po b/addons/stock_location/i18n/ro_RO.po index b3f17f86f5e..fe9a64d0e14 100644 --- a/addons/stock_location/i18n/ro_RO.po +++ b/addons/stock_location/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/ru_RU.po b/addons/stock_location/i18n/ru_RU.po index 248b08563a0..91aaf0b7edd 100644 --- a/addons/stock_location/i18n/ru_RU.po +++ b/addons/stock_location/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/sl_SL.po b/addons/stock_location/i18n/sl_SL.po index 71ed0bef6ac..b8da9c812f1 100644 --- a/addons/stock_location/i18n/sl_SL.po +++ b/addons/stock_location/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/cs_CS.po b/addons/stock_location/i18n/sq_AL.po similarity index 95% rename from addons/stock_location/i18n/cs_CS.po rename to addons/stock_location/i18n/sq_AL.po index 71d71545df2..849a074986e 100644 --- a/addons/stock_location/i18n/cs_CS.po +++ b/addons/stock_location/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/stock_location.pot b/addons/stock_location/i18n/stock_location.pot index e61f4a79097..ca38ce19e44 100644 --- a/addons/stock_location/i18n/stock_location.pot +++ b/addons/stock_location/i18n/stock_location.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:52+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:52+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/sv_SE.po b/addons/stock_location/i18n/sv_SE.po index 995ad844e0b..42f913b3be1 100644 --- a/addons/stock_location/i18n/sv_SE.po +++ b/addons/stock_location/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/tr_TR.po b/addons/stock_location/i18n/tr_TR.po index 07d8f80fd86..845650123b2 100644 --- a/addons/stock_location/i18n/tr_TR.po +++ b/addons/stock_location/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/uk_UK.po b/addons/stock_location/i18n/uk_UA.po similarity index 95% rename from addons/stock_location/i18n/uk_UK.po rename to addons/stock_location/i18n/uk_UA.po index ad1100ca886..aedb2ffc97e 100644 --- a/addons/stock_location/i18n/uk_UK.po +++ b/addons/stock_location/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/sv_SV.po b/addons/stock_location/i18n/vi_VN.po similarity index 92% rename from addons/stock_location/i18n/sv_SV.po rename to addons/stock_location/i18n/vi_VN.po index ac363dca29f..17c278b03ba 100644 --- a/addons/stock_location/i18n/sv_SV.po +++ b/addons/stock_location/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #. module: stock_location #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: stock_location #: selection:stock.location.path,auto:0 diff --git a/addons/stock_location/i18n/zh_CN.po b/addons/stock_location/i18n/zh_CN.po index 7250f6fd3e2..df814ff6c20 100644 --- a/addons/stock_location/i18n/zh_CN.po +++ b/addons/stock_location/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:33+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:33+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_location/i18n/zh_TW.po b/addons/stock_location/i18n/zh_TW.po index 76b802431fc..48eb1e1ed2a 100644 --- a/addons/stock_location/i18n/zh_TW.po +++ b/addons/stock_location/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/ar_AR.po b/addons/stock_no_autopicking/i18n/ar_AR.po index 77a7e172527..3c7ab1ca395 100644 --- a/addons/stock_no_autopicking/i18n/ar_AR.po +++ b/addons/stock_no_autopicking/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/bg_BG.po b/addons/stock_no_autopicking/i18n/bg_BG.po index a9655c63333..552544a6d07 100644 --- a/addons/stock_no_autopicking/i18n/bg_BG.po +++ b/addons/stock_no_autopicking/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/bs_BS.po b/addons/stock_no_autopicking/i18n/bs_BS.po index fa1c626bd52..38e0a7bc16b 100644 --- a/addons/stock_no_autopicking/i18n/bs_BS.po +++ b/addons/stock_no_autopicking/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/ca_ES.po b/addons/stock_no_autopicking/i18n/ca_ES.po index 2759cd9b138..c27adb9b6da 100644 --- a/addons/stock_no_autopicking/i18n/ca_ES.po +++ b/addons/stock_no_autopicking/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/cs_CZ.po b/addons/stock_no_autopicking/i18n/cs_CZ.po index 0ad946b9402..45c7eb742ae 100644 --- a/addons/stock_no_autopicking/i18n/cs_CZ.po +++ b/addons/stock_no_autopicking/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/de_DE.po b/addons/stock_no_autopicking/i18n/de_DE.po index 150aa1c11ea..d401ffb87b1 100644 --- a/addons/stock_no_autopicking/i18n/de_DE.po +++ b/addons/stock_no_autopicking/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/es_AR.po b/addons/stock_no_autopicking/i18n/es_AR.po index 6157c6aabe3..319e8b1a374 100644 --- a/addons/stock_no_autopicking/i18n/es_AR.po +++ b/addons/stock_no_autopicking/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/es_ES.po b/addons/stock_no_autopicking/i18n/es_ES.po index cd02b101ede..ee71b3a9119 100644 --- a/addons/stock_no_autopicking/i18n/es_ES.po +++ b/addons/stock_no_autopicking/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/et_EE.po b/addons/stock_no_autopicking/i18n/et_EE.po index fc399a4a357..5a2d8e7812b 100644 --- a/addons/stock_no_autopicking/i18n/et_EE.po +++ b/addons/stock_no_autopicking/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/fi_FI.po b/addons/stock_no_autopicking/i18n/fi_FI.po index daafeda7218..b54fdd0d96b 100644 --- a/addons/stock_no_autopicking/i18n/fi_FI.po +++ b/addons/stock_no_autopicking/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/fr_FR.po b/addons/stock_no_autopicking/i18n/fr_FR.po index 7e74ff70a1b..c73b36df566 100644 --- a/addons/stock_no_autopicking/i18n/fr_FR.po +++ b/addons/stock_no_autopicking/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/hr_HR.po b/addons/stock_no_autopicking/i18n/hr_HR.po index 4c7620466bc..e44fffd7584 100644 --- a/addons/stock_no_autopicking/i18n/hr_HR.po +++ b/addons/stock_no_autopicking/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/hu_HU.po b/addons/stock_no_autopicking/i18n/hu_HU.po index 694b641ff85..0de24aa7a19 100644 --- a/addons/stock_no_autopicking/i18n/hu_HU.po +++ b/addons/stock_no_autopicking/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/id_ID.po b/addons/stock_no_autopicking/i18n/id_ID.po index 3a7d639e5fa..4d143add2e0 100644 --- a/addons/stock_no_autopicking/i18n/id_ID.po +++ b/addons/stock_no_autopicking/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/it_IT.po b/addons/stock_no_autopicking/i18n/it_IT.po index 4a15976c4fb..3d5399f13ee 100644 --- a/addons/stock_no_autopicking/i18n/it_IT.po +++ b/addons/stock_no_autopicking/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/lt_LT.po b/addons/stock_no_autopicking/i18n/lt_LT.po index 486c705620c..2bf9bb9f0a7 100644 --- a/addons/stock_no_autopicking/i18n/lt_LT.po +++ b/addons/stock_no_autopicking/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/nl_BE.po b/addons/stock_no_autopicking/i18n/nl_BE.po index e85b6449fa7..6f293e96ad7 100644 --- a/addons/stock_no_autopicking/i18n/nl_BE.po +++ b/addons/stock_no_autopicking/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/nl_NL.po b/addons/stock_no_autopicking/i18n/nl_NL.po index 2316710294c..498ad22eeea 100644 --- a/addons/stock_no_autopicking/i18n/nl_NL.po +++ b/addons/stock_no_autopicking/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/pl_PL.po b/addons/stock_no_autopicking/i18n/pl_PL.po index 6524eb30fcf..dc898b4c512 100644 --- a/addons/stock_no_autopicking/i18n/pl_PL.po +++ b/addons/stock_no_autopicking/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/pt_BR.po b/addons/stock_no_autopicking/i18n/pt_BR.po index caa79f1d7e2..ed7e8f0cfa5 100644 --- a/addons/stock_no_autopicking/i18n/pt_BR.po +++ b/addons/stock_no_autopicking/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/pt_PT.po b/addons/stock_no_autopicking/i18n/pt_PT.po index d30317d9544..7943dc48f2d 100644 --- a/addons/stock_no_autopicking/i18n/pt_PT.po +++ b/addons/stock_no_autopicking/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/ro_RO.po b/addons/stock_no_autopicking/i18n/ro_RO.po index c7388d620c4..6f1e8e78b0c 100644 --- a/addons/stock_no_autopicking/i18n/ro_RO.po +++ b/addons/stock_no_autopicking/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/ru_RU.po b/addons/stock_no_autopicking/i18n/ru_RU.po index b3598daef37..e24871d4ae6 100644 --- a/addons/stock_no_autopicking/i18n/ru_RU.po +++ b/addons/stock_no_autopicking/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/sl_SL.po b/addons/stock_no_autopicking/i18n/sl_SL.po index 76fe04275b6..ba057e232e8 100644 --- a/addons/stock_no_autopicking/i18n/sl_SL.po +++ b/addons/stock_no_autopicking/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/cs_CS.po b/addons/stock_no_autopicking/i18n/sq_AL.po similarity index 85% rename from addons/stock_no_autopicking/i18n/cs_CS.po rename to addons/stock_no_autopicking/i18n/sq_AL.po index 970ea44ac8d..3837e4a81fc 100644 --- a/addons/stock_no_autopicking/i18n/cs_CS.po +++ b/addons/stock_no_autopicking/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+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 6b7afd45078..239d70183e9 100644 --- a/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot +++ b/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/sv_SE.po b/addons/stock_no_autopicking/i18n/sv_SE.po index 990b86675ee..15e03119277 100644 --- a/addons/stock_no_autopicking/i18n/sv_SE.po +++ b/addons/stock_no_autopicking/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/tr_TR.po b/addons/stock_no_autopicking/i18n/tr_TR.po index e56793e4dfb..07f06d4b8ed 100644 --- a/addons/stock_no_autopicking/i18n/tr_TR.po +++ b/addons/stock_no_autopicking/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/uk_UK.po b/addons/stock_no_autopicking/i18n/uk_UA.po similarity index 86% rename from addons/stock_no_autopicking/i18n/uk_UK.po rename to addons/stock_no_autopicking/i18n/uk_UA.po index 2fe3883de91..46bb738e632 100644 --- a/addons/stock_no_autopicking/i18n/uk_UK.po +++ b/addons/stock_no_autopicking/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/sv_SV.po b/addons/stock_no_autopicking/i18n/vi_VN.po similarity index 85% rename from addons/stock_no_autopicking/i18n/sv_SV.po rename to addons/stock_no_autopicking/i18n/vi_VN.po index cb7a404f6cf..eede8256844 100644 --- a/addons/stock_no_autopicking/i18n/sv_SV.po +++ b/addons/stock_no_autopicking/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/zh_CN.po b/addons/stock_no_autopicking/i18n/zh_CN.po index 9c10939283c..c0ac22b0700 100644 --- a/addons/stock_no_autopicking/i18n/zh_CN.po +++ b/addons/stock_no_autopicking/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/zh_TW.po b/addons/stock_no_autopicking/i18n/zh_TW.po index b10e0c5cf2b..733472e4c77 100644 --- a/addons/stock_no_autopicking/i18n/zh_TW.po +++ b/addons/stock_no_autopicking/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/ar_AR.po b/addons/subscription/i18n/ar_AR.po index 8036157a490..4d587d3f702 100644 --- a/addons/subscription/i18n/ar_AR.po +++ b/addons/subscription/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/bg_BG.po b/addons/subscription/i18n/bg_BG.po index 7d9a4a754c4..da7fa490645 100644 --- a/addons/subscription/i18n/bg_BG.po +++ b/addons/subscription/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/bs_BS.po b/addons/subscription/i18n/bs_BS.po index 2e982145d32..da43f9df405 100644 --- a/addons/subscription/i18n/bs_BS.po +++ b/addons/subscription/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/ca_ES.po b/addons/subscription/i18n/ca_ES.po index 0f6651fc7aa..d2e14f8aec2 100644 --- a/addons/subscription/i18n/ca_ES.po +++ b/addons/subscription/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/cs_CZ.po b/addons/subscription/i18n/cs_CZ.po index 67f9ab87ee7..9e60949a391 100644 --- a/addons/subscription/i18n/cs_CZ.po +++ b/addons/subscription/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/de_DE.po b/addons/subscription/i18n/de_DE.po index 886421d2504..afaf1a62780 100644 --- a/addons/subscription/i18n/de_DE.po +++ b/addons/subscription/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/es_AR.po b/addons/subscription/i18n/es_AR.po index 531177c7299..5a207a61897 100644 --- a/addons/subscription/i18n/es_AR.po +++ b/addons/subscription/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/es_ES.po b/addons/subscription/i18n/es_ES.po index c4fc5d827a0..4f3aaaef63a 100644 --- a/addons/subscription/i18n/es_ES.po +++ b/addons/subscription/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/et_EE.po b/addons/subscription/i18n/et_EE.po index 04d77730ff1..4e006911396 100644 --- a/addons/subscription/i18n/et_EE.po +++ b/addons/subscription/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/fi_FI.po b/addons/subscription/i18n/fi_FI.po index ff9d6e114e5..485aa7b3cc7 100644 --- a/addons/subscription/i18n/fi_FI.po +++ b/addons/subscription/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/fr_FR.po b/addons/subscription/i18n/fr_FR.po index bc967967b8a..9efbc88a778 100644 --- a/addons/subscription/i18n/fr_FR.po +++ b/addons/subscription/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ msgstr "Date du jour" #. module: subscription #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: subscription #: selection:subscription.subscription,interval_type:0 diff --git a/addons/subscription/i18n/hr_HR.po b/addons/subscription/i18n/hr_HR.po index bed9488a32d..83c14d7a030 100644 --- a/addons/subscription/i18n/hr_HR.po +++ b/addons/subscription/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/hu_HU.po b/addons/subscription/i18n/hu_HU.po index 14fd068c451..0dcd1b90091 100644 --- a/addons/subscription/i18n/hu_HU.po +++ b/addons/subscription/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/id_ID.po b/addons/subscription/i18n/id_ID.po index 59267be40e8..0598be70e8a 100644 --- a/addons/subscription/i18n/id_ID.po +++ b/addons/subscription/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/it_IT.po b/addons/subscription/i18n/it_IT.po index a0cc79f536c..53b2ce45387 100644 --- a/addons/subscription/i18n/it_IT.po +++ b/addons/subscription/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/lt_LT.po b/addons/subscription/i18n/lt_LT.po index 048ffef6814..39de50e6a51 100644 --- a/addons/subscription/i18n/lt_LT.po +++ b/addons/subscription/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/nl_BE.po b/addons/subscription/i18n/nl_BE.po index b50f0207399..152226aee36 100644 --- a/addons/subscription/i18n/nl_BE.po +++ b/addons/subscription/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/nl_NL.po b/addons/subscription/i18n/nl_NL.po index c710fde315c..fab07e2dce8 100644 --- a/addons/subscription/i18n/nl_NL.po +++ b/addons/subscription/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/pl_PL.po b/addons/subscription/i18n/pl_PL.po index cdff46da615..cd99c2bd154 100644 --- a/addons/subscription/i18n/pl_PL.po +++ b/addons/subscription/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/pt_BR.po b/addons/subscription/i18n/pt_BR.po index f5ff62c7bcc..951a7194a4c 100644 --- a/addons/subscription/i18n/pt_BR.po +++ b/addons/subscription/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/pt_PT.po b/addons/subscription/i18n/pt_PT.po index a9b4ab0e459..66e3e9d37f9 100644 --- a/addons/subscription/i18n/pt_PT.po +++ b/addons/subscription/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/ro_RO.po b/addons/subscription/i18n/ro_RO.po index fe9b52f8f76..790f0d0faed 100644 --- a/addons/subscription/i18n/ro_RO.po +++ b/addons/subscription/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/ru_RU.po b/addons/subscription/i18n/ru_RU.po index c0dc756e604..cd713bb061f 100644 --- a/addons/subscription/i18n/ru_RU.po +++ b/addons/subscription/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/sl_SL.po b/addons/subscription/i18n/sl_SL.po index 6615e351d7f..69a199bc482 100644 --- a/addons/subscription/i18n/sl_SL.po +++ b/addons/subscription/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/cs_CS.po b/addons/subscription/i18n/sq_AL.po similarity index 97% rename from addons/subscription/i18n/cs_CS.po rename to addons/subscription/i18n/sq_AL.po index f1e86a5d84e..af7b4bf29e6 100644 --- a/addons/subscription/i18n/cs_CS.po +++ b/addons/subscription/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "" #. module: subscription #: model:ir.ui.menu,name:subscription.menu_subscription_config msgid "Configuration" -msgstr "Konfigurace" +msgstr "" #. module: subscription #: field:subscription.subscription,exec_init:0 diff --git a/addons/subscription/i18n/subscription.pot b/addons/subscription/i18n/subscription.pot index 83960ba5bd5..80bb5e581bb 100644 --- a/addons/subscription/i18n/subscription.pot +++ b/addons/subscription/i18n/subscription.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/sv_SE.po b/addons/subscription/i18n/sv_SE.po index 4a9030ad329..d6665006d38 100644 --- a/addons/subscription/i18n/sv_SE.po +++ b/addons/subscription/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/tr_TR.po b/addons/subscription/i18n/tr_TR.po index 05f41ec5c6a..4de334c24a4 100644 --- a/addons/subscription/i18n/tr_TR.po +++ b/addons/subscription/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/uk_UK.po b/addons/subscription/i18n/uk_UA.po similarity index 97% rename from addons/subscription/i18n/uk_UK.po rename to addons/subscription/i18n/uk_UA.po index ead1602fa04..695f2f1c724 100644 --- a/addons/subscription/i18n/uk_UK.po +++ b/addons/subscription/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/sv_SV.po b/addons/subscription/i18n/vi_VN.po similarity index 92% rename from addons/subscription/i18n/sv_SV.po rename to addons/subscription/i18n/vi_VN.po index 3d53091f4b2..2eb0e30a9f8 100644 --- a/addons/subscription/i18n/sv_SV.po +++ b/addons/subscription/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" #. module: subscription #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: subscription #: field:subscription.subscription,date_init:0 @@ -49,7 +49,7 @@ msgstr "" #. module: subscription #: selection:subscription.subscription,state:0 msgid "Draft" -msgstr "Utdrag" +msgstr "" #. module: subscription #: selection:subscription.document.fields,value:0 @@ -84,7 +84,7 @@ msgstr "" #. module: subscription #: view:subscription.subscription:0 msgid "Stop" -msgstr "Stopp" +msgstr "" #. module: subscription #: view:subscription.subscription:0 @@ -109,7 +109,7 @@ msgstr "" #. module: subscription #: field:subscription.subscription,user_id:0 msgid "User" -msgstr "Användare" +msgstr "" #. module: subscription #: field:subscription.subscription,interval_type:0 @@ -119,12 +119,12 @@ msgstr "" #. module: subscription #: field:subscription.subscription.history,date:0 msgid "Date" -msgstr "Datum" +msgstr "" #. module: subscription #: model:ir.ui.menu,name:subscription.menu_subscription_config msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #. module: subscription #: field:subscription.subscription,exec_init:0 @@ -145,7 +145,7 @@ msgstr "" #: field:subscription.document,name:0 #: field:subscription.subscription,name:0 msgid "Name" -msgstr "Namn" +msgstr "" #. module: subscription #: field:subscription.document,field_ids:0 @@ -155,7 +155,7 @@ msgstr "" #. module: subscription #: field:subscription.subscription,notes:0 msgid "Notes" -msgstr "Anteckningar" +msgstr "" #. module: subscription #: selection:subscription.subscription,interval_type:0 @@ -175,7 +175,7 @@ msgstr "" #. module: subscription #: field:subscription.subscription,active:0 msgid "Active" -msgstr "Aktiv" +msgstr "" #. module: subscription #: model:ir.model,name:subscription.model_subscription_document @@ -191,12 +191,12 @@ msgstr "" #: model:ir.model,name:subscription.model_subscription_subscription #: field:subscription.subscription.history,subscription_id:0 msgid "Subscription" -msgstr "Prenumeration" +msgstr "" #. module: subscription #: field:subscription.subscription,partner_id:0 msgid "Partner" -msgstr "Partner" +msgstr "" #. module: subscription #: view:subscription.subscription:0 @@ -229,13 +229,13 @@ msgstr "" #: model:ir.ui.menu,name:subscription.next_id_45 #: view:subscription.subscription:0 msgid "Subscriptions" -msgstr "Prenumerationer" +msgstr "" #. module: subscription #: model:ir.actions.act_window,name:subscription.action_document_form #: model:ir.ui.menu,name:subscription.menu_action_document_form msgid "Document Types" -msgstr "Dokumenttyper" +msgstr "" #. module: subscription #: view:subscription.document.fields:0 @@ -245,12 +245,12 @@ msgstr "" #. module: subscription #: selection:subscription.subscription,state:0 msgid "Done" -msgstr "Klar" +msgstr "" #. module: subscription #: selection:subscription.subscription.history,document_id:0 msgid "Invoice" -msgstr "Faktura" +msgstr "" #. module: subscription #: field:subscription.document.fields,value:0 @@ -266,5 +266,5 @@ msgstr "" #. module: subscription #: model:ir.ui.menu,name:subscription.menu_tools msgid "Tools" -msgstr "Verktyg" +msgstr "" diff --git a/addons/subscription/i18n/zh_CN.po b/addons/subscription/i18n/zh_CN.po index af40786e3db..dee8d715600 100644 --- a/addons/subscription/i18n/zh_CN.po +++ b/addons/subscription/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/zh_TW.po b/addons/subscription/i18n/zh_TW.po index b662e5df101..e4b435a5ca7 100644 --- a/addons/subscription/i18n/zh_TW.po +++ b/addons/subscription/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/ar_AR.po b/addons/warning/i18n/ar_AR.po index 5aec351f8a4..3e880f2792d 100644 --- a/addons/warning/i18n/ar_AR.po +++ b/addons/warning/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/bg_BG.po b/addons/warning/i18n/bg_BG.po index 4859242cc11..f323da5d36c 100644 --- a/addons/warning/i18n/bg_BG.po +++ b/addons/warning/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "" #. module: warning #: view:product.product:0 msgid "Warning when Purchasing this Product" -msgstr "" +msgstr "Предупреждение когато поръчвате този продукт" #. module: warning #: view:product.product:0 @@ -58,7 +58,7 @@ msgstr "" #. module: warning #: view:res.partner:0 msgid "Warning on the Invoice" -msgstr "" +msgstr "Предупреждение към фактурата" #. module: warning #: selection:product.product,purchase_line_warn:0 @@ -68,7 +68,7 @@ msgstr "" #: selection:res.partner,purchase_warn:0 #: selection:res.partner,sale_warn:0 msgid "No Message" -msgstr "" +msgstr "Без съобщение" #. module: warning #: constraint:ir.ui.view:0 @@ -143,12 +143,12 @@ msgstr "" #. module: warning #: view:res.partner:0 msgid "Warning on the Purchase Order" -msgstr "" +msgstr "Предупреждение при поръчка за снабдяване" #. module: warning #: view:res.partner:0 msgid "Warning on the Sale Order" -msgstr "" +msgstr "Предупреждение при поръчка за продажба" #. module: warning #: selection:product.product,purchase_line_warn:0 @@ -158,7 +158,7 @@ msgstr "" #: selection:res.partner,purchase_warn:0 #: selection:res.partner,sale_warn:0 msgid "Warning" -msgstr "" +msgstr "Предупреждение" #. module: warning #: field:res.partner,picking_warn_msg:0 diff --git a/addons/warning/i18n/bs_BS.po b/addons/warning/i18n/bs_BS.po index 73238d40f67..fd9eb7101f1 100644 --- a/addons/warning/i18n/bs_BS.po +++ b/addons/warning/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/ca_ES.po b/addons/warning/i18n/ca_ES.po index 286d501908c..f057cc2ced8 100644 --- a/addons/warning/i18n/ca_ES.po +++ b/addons/warning/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/cs_CZ.po b/addons/warning/i18n/cs_CZ.po index 5ba10079e72..c6a4eb14d2e 100644 --- a/addons/warning/i18n/cs_CZ.po +++ b/addons/warning/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/de_DE.po b/addons/warning/i18n/de_DE.po index fc801cff3ad..476d9615352 100644 --- a/addons/warning/i18n/de_DE.po +++ b/addons/warning/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/es_AR.po b/addons/warning/i18n/es_AR.po index f2245a91fcd..abd9ad6165e 100644 --- a/addons/warning/i18n/es_AR.po +++ b/addons/warning/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:19+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:19+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/es_ES.po b/addons/warning/i18n/es_ES.po index 8ae18177bd1..d3c0a90ec38 100644 --- a/addons/warning/i18n/es_ES.po +++ b/addons/warning/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:35+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/et_EE.po b/addons/warning/i18n/et_EE.po index 62bba53fb36..72d859cecb2 100644 --- a/addons/warning/i18n/et_EE.po +++ b/addons/warning/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/fi_FI.po b/addons/warning/i18n/fi_FI.po index 7c4d5cba75f..c5f57e842a8 100644 --- a/addons/warning/i18n/fi_FI.po +++ b/addons/warning/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:23+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:23+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/fr_FR.po b/addons/warning/i18n/fr_FR.po index 8c76ebe0cd0..59c8353249d 100644 --- a/addons/warning/i18n/fr_FR.po +++ b/addons/warning/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:25+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:25+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/hr_HR.po b/addons/warning/i18n/hr_HR.po index 50e801fcd6d..fe325f53168 100644 --- a/addons/warning/i18n/hr_HR.po +++ b/addons/warning/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:27+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:27+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:55+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/hu_HU.po b/addons/warning/i18n/hu_HU.po index 074f7edccdc..ff82608f02c 100644 --- a/addons/warning/i18n/hu_HU.po +++ b/addons/warning/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/id_ID.po b/addons/warning/i18n/id_ID.po index fce932ef31f..09815529192 100644 --- a/addons/warning/i18n/id_ID.po +++ b/addons/warning/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/it_IT.po b/addons/warning/i18n/it_IT.po index 35ff5a27e00..298e44e8964 100644 --- a/addons/warning/i18n/it_IT.po +++ b/addons/warning/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/lt_LT.po b/addons/warning/i18n/lt_LT.po index 985f0073c6f..81e89fc62d3 100644 --- a/addons/warning/i18n/lt_LT.po +++ b/addons/warning/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/nl_BE.po b/addons/warning/i18n/nl_BE.po index faad8a6c04b..804ff8ca18e 100644 --- a/addons/warning/i18n/nl_BE.po +++ b/addons/warning/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/nl_NL.po b/addons/warning/i18n/nl_NL.po index 2649e6fd922..be10c9faff7 100644 --- a/addons/warning/i18n/nl_NL.po +++ b/addons/warning/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/pl_PL.po b/addons/warning/i18n/pl_PL.po index 6b3c8ca9da5..66e12ccc625 100644 --- a/addons/warning/i18n/pl_PL.po +++ b/addons/warning/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:41+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:41+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/pt_BR.po b/addons/warning/i18n/pt_BR.po index cf993915e18..b5a824d90fa 100644 --- a/addons/warning/i18n/pt_BR.po +++ b/addons/warning/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/pt_PT.po b/addons/warning/i18n/pt_PT.po index 36bb7c24464..2c24ad9ec18 100644 --- a/addons/warning/i18n/pt_PT.po +++ b/addons/warning/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:15+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/ro_RO.po b/addons/warning/i18n/ro_RO.po index 724a5d61f15..42d48167249 100644 --- a/addons/warning/i18n/ro_RO.po +++ b/addons/warning/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/ru_RU.po b/addons/warning/i18n/ru_RU.po index a8f1af3ce6d..d37d5ba5e64 100644 --- a/addons/warning/i18n/ru_RU.po +++ b/addons/warning/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:11+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:11+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/sl_SL.po b/addons/warning/i18n/sl_SL.po index 7efd66e8bdc..f159f347c9d 100644 --- a/addons/warning/i18n/sl_SL.po +++ b/addons/warning/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:34+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:34+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/cs_CS.po b/addons/warning/i18n/sq_AL.po similarity index 96% rename from addons/warning/i18n/cs_CS.po rename to addons/warning/i18n/sq_AL.po index 598610e701e..b77fafeb8e7 100644 --- a/addons/warning/i18n/cs_CS.po +++ b/addons/warning/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/sv_SE.po b/addons/warning/i18n/sv_SE.po index 953076df3d1..c00147cd158 100644 --- a/addons/warning/i18n/sv_SE.po +++ b/addons/warning/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/tr_TR.po b/addons/warning/i18n/tr_TR.po index 8403c5a0b2c..753122a3bdd 100644 --- a/addons/warning/i18n/tr_TR.po +++ b/addons/warning/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:05+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:05+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/uk_UK.po b/addons/warning/i18n/uk_UA.po similarity index 96% rename from addons/warning/i18n/uk_UK.po rename to addons/warning/i18n/uk_UA.po index c9fffd1a609..52e0459d8fa 100644 --- a/addons/warning/i18n/uk_UK.po +++ b/addons/warning/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:21+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/sv_SV.po b/addons/warning/i18n/vi_VN.po similarity index 96% rename from addons/warning/i18n/sv_SV.po rename to addons/warning/i18n/vi_VN.po index e2c16ca915c..faf5b2e20e9 100644 --- a/addons/warning/i18n/sv_SV.po +++ b/addons/warning/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+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 fe03c0dd324..c0c8a5949ab 100644 --- a/addons/warning/i18n/warning.pot +++ b/addons/warning/i18n/warning.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:33+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:33+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/zh_CN.po b/addons/warning/i18n/zh_CN.po index a3e5f390c49..1c3d0d8ce88 100644 --- a/addons/warning/i18n/zh_CN.po +++ b/addons/warning/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/zh_TW.po b/addons/warning/i18n/zh_TW.po index 3fbf448996e..3f0e34ead06 100644 --- a/addons/warning/i18n/zh_TW.po +++ b/addons/warning/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/ar_AR.po b/addons/wiki/i18n/ar_AR.po index 170761d6897..4803a522ced 100644 --- a/addons/wiki/i18n/ar_AR.po +++ b/addons/wiki/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:07:21+0000\n" -"PO-Revision-Date: 2009-08-06 15:07:21+0000\n" +"POT-Creation-Date: 2009-08-28 15:24:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:24:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/bg_BG.po b/addons/wiki/i18n/bg_BG.po index 3962859536b..3df64c08c43 100644 --- a/addons/wiki/i18n/bg_BG.po +++ b/addons/wiki/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:09:41+0000\n" -"PO-Revision-Date: 2009-08-06 15:09:41+0000\n" +"POT-Creation-Date: 2009-08-28 15:27:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:27:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/bs_BS.po b/addons/wiki/i18n/bs_BS.po index a0c1d777678..8a0faff8dfb 100644 --- a/addons/wiki/i18n/bs_BS.po +++ b/addons/wiki/i18n/bs_BS.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:08:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:08:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:26:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:26:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/ca_ES.po b/addons/wiki/i18n/ca_ES.po index aada1bf3ec7..791545bc170 100644 --- a/addons/wiki/i18n/ca_ES.po +++ b/addons/wiki/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:10:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:10:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:28:23+0000\n" +"PO-Revision-Date: 2009-08-28 15:28:23+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/cs_CZ.po b/addons/wiki/i18n/cs_CZ.po index 12420d35a35..2238c609ed3 100644 --- a/addons/wiki/i18n/cs_CZ.po +++ b/addons/wiki/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:15:39+0000\n" -"PO-Revision-Date: 2009-08-06 15:15:39+0000\n" +"POT-Creation-Date: 2009-08-28 15:33:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:33:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/de_DE.po b/addons/wiki/i18n/de_DE.po index b56cf913a85..62173c0d81c 100644 --- a/addons/wiki/i18n/de_DE.po +++ b/addons/wiki/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:21:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:21:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:40:25+0000\n" +"PO-Revision-Date: 2009-08-28 15:40:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/es_AR.po b/addons/wiki/i18n/es_AR.po index 4b7bcf7bf57..19a7008fd5b 100644 --- a/addons/wiki/i18n/es_AR.po +++ b/addons/wiki/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:35:51+0000\n" -"PO-Revision-Date: 2009-08-06 15:35:51+0000\n" +"POT-Creation-Date: 2009-08-28 15:54:18+0000\n" +"PO-Revision-Date: 2009-08-28 15:54:18+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/es_ES.po b/addons/wiki/i18n/es_ES.po index 519ae713002..ab0915d5949 100644 --- a/addons/wiki/i18n/es_ES.po +++ b/addons/wiki/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:37:12+0000\n" -"PO-Revision-Date: 2009-08-06 15:37:12+0000\n" +"POT-Creation-Date: 2009-08-28 15:55:34+0000\n" +"PO-Revision-Date: 2009-08-28 15:55:34+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/et_EE.po b/addons/wiki/i18n/et_EE.po index 47b0a6d6ba1..9cd77043e4c 100644 --- a/addons/wiki/i18n/et_EE.po +++ b/addons/wiki/i18n/et_EE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:19:24+0000\n" -"PO-Revision-Date: 2009-08-06 15:19:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:36:36+0000\n" +"PO-Revision-Date: 2009-08-28 15:36:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/fi_FI.po b/addons/wiki/i18n/fi_FI.po index 6687d28a623..d9f550d7f1e 100644 --- a/addons/wiki/i18n/fi_FI.po +++ b/addons/wiki/i18n/fi_FI.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:42:22+0000\n" -"PO-Revision-Date: 2009-08-06 15:42:22+0000\n" +"POT-Creation-Date: 2009-08-28 15:37:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:37:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/fr_FR.po b/addons/wiki/i18n/fr_FR.po index e7e5789fba9..df24923a4e2 100644 --- a/addons/wiki/i18n/fr_FR.po +++ b/addons/wiki/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:38:24+0000\n" -"PO-Revision-Date: 2009-08-07 13:38:24+0000\n" +"POT-Creation-Date: 2009-08-28 15:39:07+0000\n" +"PO-Revision-Date: 2009-08-28 15:39:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "Configuration du wiki" #. module: wiki #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nom de modèle invalide pour la définition de l'action" +msgstr "" #. module: wiki #: field:wiki.groups,name:0 diff --git a/addons/wiki/i18n/hr_HR.po b/addons/wiki/i18n/hr_HR.po index b0293465999..10c26888450 100644 --- a/addons/wiki/i18n/hr_HR.po +++ b/addons/wiki/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:14:26+0000\n" -"PO-Revision-Date: 2009-08-06 15:14:26+0000\n" +"POT-Creation-Date: 2009-08-28 15:31:54+0000\n" +"PO-Revision-Date: 2009-08-28 15:31:54+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/hu_HU.po b/addons/wiki/i18n/hu_HU.po index 2aa7cace132..26f54e3fa36 100644 --- a/addons/wiki/i18n/hu_HU.po +++ b/addons/wiki/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:23:07+0000\n" -"PO-Revision-Date: 2009-08-06 15:23:07+0000\n" +"POT-Creation-Date: 2009-08-28 15:41:42+0000\n" +"PO-Revision-Date: 2009-08-28 15:41:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/id_ID.po b/addons/wiki/i18n/id_ID.po index 60637dd7539..8817e1aa06d 100644 --- a/addons/wiki/i18n/id_ID.po +++ b/addons/wiki/i18n/id_ID.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:24:20+0000\n" -"PO-Revision-Date: 2009-08-06 15:24:20+0000\n" +"POT-Creation-Date: 2009-08-28 15:42:56+0000\n" +"PO-Revision-Date: 2009-08-28 15:42:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/it_IT.po b/addons/wiki/i18n/it_IT.po index 3fcffe4f97e..d7d09bfc4ca 100644 --- a/addons/wiki/i18n/it_IT.po +++ b/addons/wiki/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:25:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:25:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:44:13+0000\n" +"PO-Revision-Date: 2009-08-28 15:44:13+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/lt_LT.po b/addons/wiki/i18n/lt_LT.po index ce7b5c305b9..acaf61a817f 100644 --- a/addons/wiki/i18n/lt_LT.po +++ b/addons/wiki/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:26:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:26:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:45:27+0000\n" +"PO-Revision-Date: 2009-08-28 15:45:27+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/nl_BE.po b/addons/wiki/i18n/nl_BE.po index 136f4ebdade..1e4c4244987 100644 --- a/addons/wiki/i18n/nl_BE.po +++ b/addons/wiki/i18n/nl_BE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:16:52+0000\n" -"PO-Revision-Date: 2009-08-06 15:16:52+0000\n" +"POT-Creation-Date: 2009-08-28 15:34:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:34:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/nl_NL.po b/addons/wiki/i18n/nl_NL.po index 37187b5ab9d..604eb02b103 100644 --- a/addons/wiki/i18n/nl_NL.po +++ b/addons/wiki/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:18:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:18:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:35:24+0000\n" +"PO-Revision-Date: 2009-08-28 15:35:24+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/pl_PL.po b/addons/wiki/i18n/pl_PL.po index 0d46570c66a..1698397cd50 100644 --- a/addons/wiki/i18n/pl_PL.po +++ b/addons/wiki/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:28:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:28:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:46:40+0000\n" +"PO-Revision-Date: 2009-08-28 15:46:40+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/pt_BR.po b/addons/wiki/i18n/pt_BR.po index 964b6167669..a1e84ff1540 100644 --- a/addons/wiki/i18n/pt_BR.po +++ b/addons/wiki/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:29:17+0000\n" -"PO-Revision-Date: 2009-08-06 15:29:17+0000\n" +"POT-Creation-Date: 2009-08-28 15:47:59+0000\n" +"PO-Revision-Date: 2009-08-28 15:47:59+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/pt_PT.po b/addons/wiki/i18n/pt_PT.po index 771659393f0..d63c10298df 100644 --- a/addons/wiki/i18n/pt_PT.po +++ b/addons/wiki/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:30:35+0000\n" -"PO-Revision-Date: 2009-08-06 15:30:35+0000\n" +"POT-Creation-Date: 2009-08-28 15:49:14+0000\n" +"PO-Revision-Date: 2009-08-28 15:49:14+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/ro_RO.po b/addons/wiki/i18n/ro_RO.po index 5f8c2cde2ce..e66abd58241 100644 --- a/addons/wiki/i18n/ro_RO.po +++ b/addons/wiki/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:31:50+0000\n" -"PO-Revision-Date: 2009-08-06 15:31:50+0000\n" +"POT-Creation-Date: 2009-08-28 15:50:29+0000\n" +"PO-Revision-Date: 2009-08-28 15:50:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/ru_RU.po b/addons/wiki/i18n/ru_RU.po index e34ac5c2392..20325d120f1 100644 --- a/addons/wiki/i18n/ru_RU.po +++ b/addons/wiki/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:33:10+0000\n" -"PO-Revision-Date: 2009-08-06 15:33:10+0000\n" +"POT-Creation-Date: 2009-08-28 15:51:44+0000\n" +"PO-Revision-Date: 2009-08-28 15:51:44+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/sl_SL.po b/addons/wiki/i18n/sl_SL.po index 15f3a105fba..0e6c8c50001 100644 --- a/addons/wiki/i18n/sl_SL.po +++ b/addons/wiki/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:34:33+0000\n" -"PO-Revision-Date: 2009-08-06 15:34:33+0000\n" +"POT-Creation-Date: 2009-08-28 15:53:01+0000\n" +"PO-Revision-Date: 2009-08-28 15:53:01+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/cs_CS.po b/addons/wiki/i18n/sq_AL.po similarity index 97% rename from addons/wiki/i18n/cs_CS.po rename to addons/wiki/i18n/sq_AL.po index 89c5376b99c..6275683d703 100644 --- a/addons/wiki/i18n/cs_CS.po +++ b/addons/wiki/i18n/sq_AL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:41:09+0000\n" -"PO-Revision-Date: 2009-08-06 15:41:09+0000\n" +"POT-Creation-Date: 2009-08-28 15:23:46+0000\n" +"PO-Revision-Date: 2009-08-28 15:23:46+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/sv_SE.po b/addons/wiki/i18n/sv_SE.po index 37ffcdd2c9a..97676bd103a 100644 --- a/addons/wiki/i18n/sv_SE.po +++ b/addons/wiki/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:38:30+0000\n" -"PO-Revision-Date: 2009-08-06 15:38:30+0000\n" +"POT-Creation-Date: 2009-08-28 15:56:49+0000\n" +"PO-Revision-Date: 2009-08-28 15:56:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/tr_TR.po b/addons/wiki/i18n/tr_TR.po index 936bd2c5d0f..30774fb559b 100644 --- a/addons/wiki/i18n/tr_TR.po +++ b/addons/wiki/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:39:49+0000\n" -"PO-Revision-Date: 2009-08-06 15:39:49+0000\n" +"POT-Creation-Date: 2009-08-28 15:58:04+0000\n" +"PO-Revision-Date: 2009-08-28 15:58:04+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/uk_UK.po b/addons/wiki/i18n/uk_UA.po similarity index 98% rename from addons/wiki/i18n/uk_UK.po rename to addons/wiki/i18n/uk_UA.po index cd11e85c875..a4619f7b30a 100644 --- a/addons/wiki/i18n/uk_UK.po +++ b/addons/wiki/i18n/uk_UA.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:44:53+0000\n" -"PO-Revision-Date: 2009-08-06 15:44:53+0000\n" +"POT-Creation-Date: 2009-08-28 15:59:20+0000\n" +"PO-Revision-Date: 2009-08-28 15:59:20+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/sv_SV.po b/addons/wiki/i18n/vi_VN.po similarity index 96% rename from addons/wiki/i18n/sv_SV.po rename to addons/wiki/i18n/vi_VN.po index 2a9ed128ee4..9e641aee3a6 100644 --- a/addons/wiki/i18n/sv_SV.po +++ b/addons/wiki/i18n/vi_VN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:43:38+0000\n" -"PO-Revision-Date: 2009-08-06 15:43:38+0000\n" +"POT-Creation-Date: 2009-08-28 16:00:38+0000\n" +"PO-Revision-Date: 2009-08-28 16:00:38+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" #. module: wiki #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" +msgstr "" #. module: wiki #: model:ir.model,name:wiki.model_wiki_groups_link diff --git a/addons/wiki/i18n/wiki.pot b/addons/wiki/i18n/wiki.pot index 32b93b5107d..672f97a2488 100644 --- a/addons/wiki/i18n/wiki.pot +++ b/addons/wiki/i18n/wiki.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-07 13:39:32+0000\n" -"PO-Revision-Date: 2009-08-07 13:39:32+0000\n" +"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" +"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/zh_CN.po b/addons/wiki/i18n/zh_CN.po index a6e341165ee..c88aaef6f08 100644 --- a/addons/wiki/i18n/zh_CN.po +++ b/addons/wiki/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:12:04+0000\n" -"PO-Revision-Date: 2009-08-06 15:12:04+0000\n" +"POT-Creation-Date: 2009-08-28 15:29:32+0000\n" +"PO-Revision-Date: 2009-08-28 15:29:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/zh_TW.po b/addons/wiki/i18n/zh_TW.po index 8fcba4e3deb..ebd10cda04b 100644 --- a/addons/wiki/i18n/zh_TW.po +++ b/addons/wiki/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.1\n" +"Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-06 15:13:15+0000\n" -"PO-Revision-Date: 2009-08-06 15:13:15+0000\n" +"POT-Creation-Date: 2009-08-28 15:30:43+0000\n" +"PO-Revision-Date: 2009-08-28 15:30:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" From 82191446b383674e448dab09c92aa5991a7f0f80 Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Fri, 28 Aug 2009 18:45:37 +0200 Subject: [PATCH 29/31] modifs bzr revid: fp@tinyerp.com-20090828164537-jtrz05vgj9zmwyq9 --- bin/netsvc.py | 2 ++ bin/osv/osv.py | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index 5318fc3b284..339219e92ad 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -236,6 +236,8 @@ class OpenERPDispatcher: def dispatch(self, service_name, method, params): try: + if service_name not in GROUPS['web-services']: + raise Exception("%s -- %s\n\n%s"%('AccessDenied', 'Service not available', '')) self.log('service', service_name) self.log('method', method) self.log('params', params) diff --git a/bin/osv/osv.py b/bin/osv/osv.py index f6a364b7891..807ecad566d 100644 --- a/bin/osv/osv.py +++ b/bin/osv/osv.py @@ -86,7 +86,6 @@ class osv_pool(netsvc.Service): self._init = True self._init_parent = {} netsvc.Service.__init__(self, 'object_proxy', audience='') - self.joinGroup('web-services') self.exportMethod(self.obj_list) self.exportMethod(self.exec_workflow) self.exportMethod(self.execute) From 8714d5863f0e669f02d78cf2f73453195d7c82c0 Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Fri, 28 Aug 2009 18:50:27 +0200 Subject: [PATCH 30/31] [FIX] no traceback when access denied bzr revid: fp@tinyerp.com-20090828165027-uh9a77aqbsyecr2r --- bin/netsvc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index 339219e92ad..aadded32d7a 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -235,9 +235,9 @@ class OpenERPDispatcher: Logger().notifyChannel('%s' % title, LOG_DEBUG_RPC, pformat(msg)) def dispatch(self, service_name, method, params): + if service_name not in GROUPS['web-services']: + raise Exception('AccessDenied') try: - if service_name not in GROUPS['web-services']: - raise Exception("%s -- %s\n\n%s"%('AccessDenied', 'Service not available', '')) self.log('service', service_name) self.log('method', method) self.log('params', params) From 36b7806e8fb86da2428b11b3f15dca7e33e7a8bb Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 28 Aug 2009 18:58:55 +0200 Subject: [PATCH 31/31] [REL] 5.0.4 bzr revid: christophe@tinyerp.com-20090828165855-461psr84dugkzvp7 --- bin/PKG-INFO | 2 +- bin/release.py | 2 +- doc/Changelog | 64 ++++++++++++++++++++++++++++++++++++++++++++++---- 3 files changed, 61 insertions(+), 7 deletions(-) diff --git a/bin/PKG-INFO b/bin/PKG-INFO index 9e9d5d4bcb1..b13a196bcff 100644 --- a/bin/PKG-INFO +++ b/bin/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: OpenERP -Version: 5.0.3 +Version: 5.0.4 Author: Tiny.be Author-email: fp at tiny be Maintainer: Tiny.be diff --git a/bin/release.py b/bin/release.py index 27fb87a0fe1..e5d56c92854 100644 --- a/bin/release.py +++ b/bin/release.py @@ -22,7 +22,7 @@ ############################################################################## name = 'openerp-server' -version = '5.0.3' +version = '5.0.4' major_version = '5.0' description = 'OpenERP Server' long_desc = '''\ diff --git a/doc/Changelog b/doc/Changelog index dea6b6ce58e..577dfc5a651 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,4 +1,62 @@ -2009-08-21: 5.0.2 +2009-08-28: 5.0.4 +================= + +Bugfixes (server) +----------------- + + * Not linked to a bug report: + * no traceback when access denied + * Security fix + * remove bad translation files (bad name) + * Pagecount problem while all objects print on same page and printing special character on xsl report + * https://launchpad.net/bugs/415973 + * import: support ":db_id" , better warning message + * https://launchpad.net/bugs/415391 + * Functional fields with M2O relation can be printed on print screen now + * https://launchpad.net/bugs/415334 + * ir_cron :function and its arguements are now editable + + +Improvements (server) +--------------------- + + * replace partner name and address in demo + * add translation names + * update translations files + * new translations + + +Bugfixes (addons) +----------------- + + * Not linked to a bug report: + * Document : error on create if attachment not specified + * report_dcoument : changed the misleading name of action + * point_of_sale: fixed a wrong domain + * sale: bad indentation + * https://launchpad.net/bugs/416807 + * report_document : Dashboard should not display partner with no files + * https://launchpad.net/bugs/401110 + * Audittrail : Logs set in descending order + * https://launchpad.net/bugs/418541 + * Project : Delegated tasks from O2M didnt have project_id + * https://launchpad.net/bugs/416767 + * Account_tax_include : onchange of product on invoice line price type issue + + +Improvements (addons) +--------------------- + + * update translations + * base_module_quality: make minimal score for all test, add message if the score is below limit,varible for whether to activate the test or not + * process view node now links to parent document directory if no record selected. + * purchase: Merge purchases wizard: added keyword='client_action_multi' + * Auction : improved code + * Auction : improved auction reports + * Age Partner Balance report executed 7 queries per partner, reduced this a total of 7 queries in total. + + +2009-08-21: 5.0.3 ================= Bugfixes (server) @@ -15,7 +73,6 @@ Bugfixes (server) * security issue: avoid access to inactive users * security issue: avoid access with 'None' password (Thanks to P. Christeas for the bug report) * avoid a bug when look in stack when translate code strings - * https://launchpad.net/bugs/415257 * import of boolean fields in csv files. * https://launchpad.net/bugs/415014 @@ -55,7 +112,6 @@ Bugfixes (addons) * Module:account Fix keyerror in general_ledger report * Access rules stock / worker * mrp: fr_FR.po file had a duplicate message definition - * https://launchpad.net/bugs/413699 * https://launchpad.net/bugs/415014 * report_task: regenerate translations files @@ -123,7 +179,6 @@ Bugfixes (server) * expression: correct the generated sql in case of _inherits * the tag doesn't crash if the referenced id does not exists * closed file pointer - * https://launchpad.net/bugs/380221 * https://launchpad.net/bugs/403652 * https://launchpad.net/bugs/369947 @@ -288,7 +343,6 @@ Bugfixes (addons) * account_balance Module : Fix the Total problem and Put Indentation in Reports.C * onchange of product_id on stock move corrected * correct display of pyflakes result quality module - * https://launchpad.net/bugs/310458 * Simplify Migrations * https://launchpad.net/bugs/382641