From 310536424921bb276c0bb24cfe31ba831467496d Mon Sep 17 00:00:00 2001 From: husen daudi Date: Mon, 9 Feb 2009 13:17:57 +0530 Subject: [PATCH 03/31] Bugfix by pso lp bug: https://launchpad.net/bugs/326150 fixed bzr revid: hda@hda-20090209074757-hmkjgmvww08iq0e9 --- addons/wiki/wiki_view.xml | 6 ++++++ addons/wiki/wizard/__init__.py | 1 + addons/wiki/wizard/open_page.py | 2 -- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/addons/wiki/wiki_view.xml b/addons/wiki/wiki_view.xml index 7a8d17e47e4..9c6df8b9c17 100644 --- a/addons/wiki/wiki_view.xml +++ b/addons/wiki/wiki_view.xml @@ -11,6 +11,12 @@ menu="True" name="wiki.create.menu"/> + + wiki.groups.tree wiki.groups diff --git a/addons/wiki/wizard/__init__.py b/addons/wiki/wizard/__init__.py index 9781f14bf59..9e1135a08be 100644 --- a/addons/wiki/wizard/__init__.py +++ b/addons/wiki/wizard/__init__.py @@ -1,3 +1,4 @@ +import open_page import create_menu import show_diff import make_index diff --git a/addons/wiki/wizard/open_page.py b/addons/wiki/wizard/open_page.py index a41b1c22462..01987a0a072 100644 --- a/addons/wiki/wizard/open_page.py +++ b/addons/wiki/wizard/open_page.py @@ -31,8 +31,6 @@ from tools.translate import _ class wiz_timesheet_open(wizard.interface): def _open_wiki_page(self, cr, uid, data, context): - print "uid: %r" % (uid,) - print "data: %r" % (data,) pool = pooler.get_pool(cr.dbname) menu_id = data['id'] group_ids = pool.get('wiki.groups.link').search(cr, uid, [('action_id','=',menu_id)]) From d78d88cd72bb9260fe00976ae81de3baf20f8337 Mon Sep 17 00:00:00 2001 From: qdp Date: Mon, 9 Feb 2009 12:45:21 +0100 Subject: [PATCH 04/31] [FIX] unhandled multi selection of entries in wizard hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py lp bug: https://launchpad.net/bugs/327120 fixed bzr revid: qdp@tinyerp.com-20090209114521-723c5n6yykyde79k --- .../wizard/hr_timesheet_invoice_create.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py b/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py index 85d2c0771cd..fd5201b62bc 100644 --- a/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py +++ b/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py @@ -128,7 +128,10 @@ class invoice_create(wizard.interface): # # Compute for lines # - cr.execute("SELECT * FROM account_analytic_line WHERE account_id = %s and id IN (%s) AND product_id=%s and to_invoice=%s", (account.id, ','.join(map(str,data['ids'])), product_id, factor_id)) + str_ids="" + for x in data['ids']: + str_ids += ','.join(str(x)) + cr.execute("SELECT * FROM account_analytic_line WHERE account_id = %s and id IN (%s) AND product_id=%s and to_invoice=%s", (account.id, str_ids, product_id, factor_id)) line_ids = cr.dictfetchall() note = [] for line in line_ids: @@ -195,7 +198,7 @@ class invoice_create(wizard.interface): states = { 'init' : { 'actions' : [_get_accounts], - 'result' : {'type':'form', 'arch':_create_form, 'fields':_create_fields, 'state': [('end','Cancel'),('create','Create invoices')]}, + 'result' : {'type':'form', 'arch':_create_form, 'fields':_create_fields, 'state': [('end','Cancel'),('create','Create Invoices')]}, }, 'create' : { 'actions' : [], From b1b9cb591c54c18f75097649c6aa9873cfdbd33c Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Mon, 9 Feb 2009 15:16:46 +0100 Subject: [PATCH 05/31] [FIX] query lp bug: https://launchpad.net/bugs/327120 fixed bzr revid: christophe@tinyerp.com-20090209141646-0x02see4flirq8zj --- .../wizard/hr_timesheet_invoice_create.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py b/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py index fd5201b62bc..0d2c7120503 100644 --- a/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py +++ b/addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py @@ -128,10 +128,13 @@ class invoice_create(wizard.interface): # # Compute for lines # - str_ids="" - for x in data['ids']: - str_ids += ','.join(str(x)) - cr.execute("SELECT * FROM account_analytic_line WHERE account_id = %s and id IN (%s) AND product_id=%s and to_invoice=%s", (account.id, str_ids, product_id, factor_id)) + cr.execute("SELECT * " # TODO optimize this + " FROM account_analytic_line" + " WHERE account_id=%%s" + " AND id IN (%s)" + " AND product_id=%%s" + " AND to_invoice=%%s" % ','.join(['%s']*len(data['ids'])), + (account.id, data['ids'], product_id, factor_id)) line_ids = cr.dictfetchall() note = [] for line in line_ids: From 3183ed4f48c5976d92b935fe416928fe0838f675 Mon Sep 17 00:00:00 2001 From: "Apa (Open ERP)" Date: Tue, 10 Feb 2009 10:33:17 +0530 Subject: [PATCH 06/31] formated overdue payment with new style bzr revid: apa@tinyerp.com-20090210050317-ag2lzxkgdpfgb59w --- addons/account/report/overdue.rml | 351 +++++++++++++++--------------- 1 file changed, 175 insertions(+), 176 deletions(-) diff --git a/addons/account/report/overdue.rml b/addons/account/report/overdue.rml index 70f5fd09b25..fa949419cb0 100644 --- a/addons/account/report/overdue.rml +++ b/addons/account/report/overdue.rml @@ -17,240 +17,239 @@ - - - - - - - + + + - + - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - [[ repeatIn(objects,'o') ]] - [[ setLang(o.lang) ]] + [[ repeatIn(objects,'o') ]] + [[ setLang(o.lang) ]] - [[ repeatIn(adr_get(o, 'invoice'),'addr') ]] + [[ repeatIn(adr_get(o, 'invoice'),'addr') ]] - [[ o.name ]] - [[ addr['name'] ]] - [[ addr['street'] ]] - [[ addr['zip'] ]] [[ addr['city'] ]] - [[ addr['country_id'] ]] - + [[ o.name ]] + [[ addr['name'] ]] + [[ addr['street'] ]] + [[ addr['zip'] ]] [[ addr['city'] ]] + [[ addr['country_id'] ]] + - VAT: [[ o.vat or removeParentNode('para') ]] + VAT: [[ o.vat or removeParentNode('para') ]] - + - + - Document: Customer account statement - - Date: - [[ time.strftime('%d/%m/%Y') ]] - - Customer Ref: [[ o.id ]] - + Document: Customer account statement + Date: [[ formatLang(time.strftime('%Y-%m-%d'),date=True) ]] + Customer Ref: [[ o.ref ]] + - Dear Sir/Madam, - + Dear Sir/Madam, + - Exception made of a mistake of our side, it seems that the following bills stay unpaid. Please, take appropriate measures in order to carry out this payment in the next 8 days. - + Exception made of a mistake of our side, it seems that the following bills stay unpaid. Please, take appropriate measures in order to carry out this payment in the next 8 days. + - Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting departement at +32 81 81 37 00. - + Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting departement at +32 81 81 37 00. + - Best regards. - + Best regards. + - + - Date + Date - Description + Description - Ref + Ref - Maturity date + Maturity date - Due + Due - Paid + Paid - Maturity + Maturity - Li. - - - - - Sub-Total: - - - - - - [[ '%.2f' % (reduce(lambda x, y: x + (y['debit'] * (y['account_id']['type'] == 'payable' and -1 or 1)), getLines(o), 0)) ]] - - - [[ '%.2f' % (reduce(lambda x ,y: x + (y['credit'] * (y['account_id']['type'] == 'payable' and -1 or 1)), getLines(o), 0)) ]] - - - [[ '%.2f' % (reduce(lambda x, y: x + ((y['debit'] - y['credit']) * (y['account_id']['type'] == 'payable' and -1 or 1)), filter(lambda x: x['date_maturity'] < time.strftime('%Y-%m-%d'), getLines(o)), 0)) ]] - - - - - - - - - - Balance: - - - - - - [[ '%.2f' % (reduce(lambda x, y: x +((y['debit'] - y['credit']) * (y['account_id']['type'] == 'payable' and -1 or 1)), getLines(o), 0)) ]] - - - - - - - - - - - - - - - - - - - - - - [[repeatIn(getLines(o), 'line') ]] - [[ line['date'] ]] - - - - [[ line['name'] ]] - - - [[ line['ref'] ]] - - - [[ line['date_maturity'] ]] - - - [[ line['debit'] and '%.2f' % (line['debit'] * (line['account_id']['type'] == 'payable' and -1 or 1)) or '' ]] - - - [[ line['credit'] and '%.2f' % (line['credit'] * (line['account_id']['type'] == 'payable' and -1 or 1)) or '' ]] - - - [[ (line['date_maturity'] < time.strftime('%Y-%m-%d')) and '%.2f' % ((line['debit'] - line['credit']) * (line['account_id']['type'] == 'payable' and -1 or 1)) or '' ]] - - - [[ line['blocked'] and 'X' or '' ]] + Li. - - - - - Total amount due: - [[ '%.2f' % (reduce(lambda x, y: x + ((y['debit'] - y['credit']) * (y['account_id']['type'] == 'payable' and -1 or 1)), getLines(o), 0)) ]] [[ company.currency_id.name ]] - . - - +
+ [[repeatIn(getLines(o), 'line') ]] + + + + [[ formatLang(line['date'],date=True) ]] + + + [[ line['name'] ]] + + + [[ line['ref'] ]] + + + [[ line['date_maturity'] ]] + + + [[ formatLang(line['debit']) and formatLang(line['debit'] * (line['account_id']['type'] == 'payable' and -1 or 1)) ]] + + + [[ formatLang(line['credit']) and formatLang(line['credit'] * (line['account_id']['type'] == 'payable' and -1 or 1)) ]] + + + [[ formatLang((line['date_maturity'] < time.strftime('%Y-%m-%d')) and ((line['debit'] - line['credit']) * (line['account_id']['type'] == 'payable' and -1 or 1))) ]] + + + [[ line['blocked'] and 'X' or '' ]] + + + +
+ + + + + + + + + Sub-Total : + + + [[ '%.2f' % (reduce(lambda x, y: x + (y['debit'] * (y['account_id']['type'] == 'payable' and -1 or 1)), getLines(o), 0)) ]] + + + [[ '%.2f' % (reduce(lambda x ,y: x + (y['credit'] * (y['account_id']['type'] == 'payable' and -1 or 1)), getLines(o), 0)) ]] + + + [[ '%.2f' % (reduce(lambda x, y: x + ((y['debit'] - y['credit']) * (y['account_id']['type'] == 'payable' and -1 or 1)), filter(lambda x: x['date_maturity'] < time.strftime('%Y-%m-%d'), getLines(o)), 0)) ]] + + + + + + + + + + + + + + + Balance : + + + [[ '%.2f' % (reduce(lambda x, y: x +((y['debit'] - y['credit']) * (y['account_id']['type'] == 'payable' and -1 or 1)), getLines(o), 0)) ]] + + + + + + + + + + + + + + + + + + + Total amount due: [[ '%.2f' % (reduce(lambda x, y: x + ((y['debit'] - y['credit']) * (y['account_id']['type'] == 'payable' and -1 or 1)), getLines(o), 0)) ]] [[ company.currency_id.name ]]. +
From 4ab597d6e798d4e975f3db70fed81e20e131a5ee Mon Sep 17 00:00:00 2001 From: "Apa (Open ERP)" Date: Tue, 10 Feb 2009 11:07:41 +0530 Subject: [PATCH 07/31] formated account followup report with new style(vir) bzr revid: apa@tinyerp.com-20090210053741-wh7hcpbh6lrfavgx --- addons/account_followup/report/rappel.rml | 300 +++++++++++++--------- 1 file changed, 184 insertions(+), 116 deletions(-) diff --git a/addons/account_followup/report/rappel.rml b/addons/account_followup/report/rappel.rml index 3f28abfd206..257365ce807 100644 --- a/addons/account_followup/report/rappel.rml +++ b/addons/account_followup/report/rappel.rml @@ -17,45 +17,46 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - @@ -63,160 +64,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + - [[ repeatIn(ids_to_objects(data['form']['partner_ids']),'o') ]] [[ setLang(o.lang) ]] + [[ repeatIn(ids_to_objects(data['form']['partner_ids']),'o') ]] + [[ setLang(o.lang) ]] - - - + [[ repeatIn(adr_get(o,'invoice'),'a' )]] - [[ o.name ]] - [[ repeatIn(adr_get(o,'invoice'),'a' )]] - [[ a['name'] ]] - [[ a['street'] ]] - [[ a['zip'] ]] - [[ a['city'] ]] - [[( a['country_id'] and a['country_id'][1]) or '']] - + [[ o.name ]] + [[ a['name'] ]] + [[ a['street'] ]] + [[ a['zip'] ]] + [[ a['city'] ]] + [[( a['country_id'] and a['country_id'][1]) or '']] + - VAT: [[ o.vat or removeParentNode('para') ]] + VAT: [[ o.vat or removeParentNode('para') ]] - + - Document: Customer account statement - - Date: - [[ time.strftime('%d/%m/%Y') ]] - - Customer Ref: [[ o.id ]] - + Document : Customer account statement + Date : [[ formatLang(time.strftime('%Y-%m-%d'),date = True) ]] + Customer Ref : [[ o.id ]] + - [[ format(get_text(o,data['form']['followup_id'])) ]] - + [[ format(get_text(o,data['form']['followup_id'])) ]] + - + - Date + Invoice Date - Description + Description - Ref + Ref - Maturity date + Maturity Date - Due + Amount In Currency - Paid + Due - Maturity + Paid - Amount + Maturity - Li. - - - - - - [[repeatIn(getLines(o), 'line') ]] - [[ line['date'] ]] - - - - [[ line['name'] ]] - - - [[ line['ref'] ]] - - - [[ line['date_maturity'] ]] - - - [[ line['debit'] and '%.2f' % line['debit'] or '' ]] [[ company.currency_id.name]] - - - [[ line['credit'] and '%.2f' % line['credit'] or '0.00' ]] [[ company.currency_id.name]] - - - [[ (line['date_maturity'] < time.strftime('%Y-%m-%d')) and (line['debit'] - line['credit']) or '' ]] [[ company.currency_id.name]] - - - [[ '%.2f' % line['amount_currency'] ]] [[ line['currency_id'] and line['currency_id'][1] or '' ]] - - - [[ line['blocked'] and 'X' or '' ]] + Li. - +
+ [[repeatIn(getLines(o), 'line') ]] + + + + [[ formatLang(line['date'],date = True) ]] + + + [[ line['name'] ]] + + + [[ line['ref'] ]] + + + [[ line['date_maturity'] ]] + + + [[ formatLang(line['amount_currency'] )]] [[ line['currency_id'] and line['currency_id'][1] or '' ]] + + + [[ formatLang(line['debit']) ]] [[ company.currency_id.name]] + + + [[ formatLang(line['credit']) ]] [[ company.currency_id.name]] + + + [[ (line['date_maturity'] < time.strftime('%Y-%m-%d')) and (line['debit'] -line['credit']) or '0.00' ]] [[ company.currency_id.name]] + + + [[ line['blocked'] and 'X' or '' ]] + + + +
+ - Sub-Total: + + + - [[ '%.2f' % (reduce(lambda x,y: x+y['debit'], getLines(o), 0)) ]] [[ company.currency_id.name]] + + + - [[ '%.2f' % (reduce(lambda x,y: x+y['credit'], getLines(o), 0)) ]] [[ company.currency_id.name]] + + + - [[ reduce(lambda x,y: x+(y['debit'] - y['credit']), filter(lambda x: x['date_maturity'] < time.strftime('%Y-%m-%d'), getLines(o)), 0) ]] [[ company.currency_id.name]] + + + - + + + + + + Sub-Total: + + + [[formatLang(reduce(lambda x,y: x+y['debit'], getLines(o), 0.00)) ]] [[ company.currency_id.name]] + + + [[formatLang(reduce(lambda x,y: x+y['credit'], getLines(o), 0.00)) ]] [[ company.currency_id.name]] + + + [[ reduce(lambda x,y: x+(y['debit'] - y['credit']), filter(lambda x: x['date_maturity'] < time.strftime('%Y-%m-%d'), getLines(o)), 0) ]] [[ company.currency_id.name]] + + + - Balance: - - - [[ '%.2f' % (reduce(lambda x,y: x+(y['debit'] - y['credit']), getLines(o), 0)) ]] [[ company.currency_id.name]] - - - + - + - + + + + + + + + + + + + + + + + Balance: + + + [[ '%.2f' % (reduce(lambda x,y: x+(y['debit'] - y['credit']), getLines(o), 0.00)) ]] [[ company.currency_id.name]] + + + + + + + + + + + + + - - - - +
- From b13793ea9d2407b608275e865f82946345e72537 Mon Sep 17 00:00:00 2001 From: "Apa (Open ERP)" Date: Tue, 10 Feb 2009 12:29:00 +0530 Subject: [PATCH 08/31] replace date_time with date in req. for qua. bzr revid: apa@tinyerp.com-20090210065900-scrrsy9oxuig758f --- addons/purchase/report/request_quotation.rml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/purchase/report/request_quotation.rml b/addons/purchase/report/request_quotation.rml index b7be6949c1b..c5f083bbf05 100644 --- a/addons/purchase/report/request_quotation.rml +++ b/addons/purchase/report/request_quotation.rml @@ -109,7 +109,7 @@ - + Description @@ -124,13 +124,13 @@
[[repeatIn(order.order_line,'order_line')]] - + [[ order_line.name ]] - [[ formatLang(order_line.date_planned, date = True) ]] + [[ formatLang(order_line.date_planned, date_time = True) ]] [[ formatLang(order_line.product_qty )]] From a0e52e7bee3057664550f69070841ac87c3ca675 Mon Sep 17 00:00:00 2001 From: Numerigraphe - Lionel Sausin Date: Tue, 10 Feb 2009 09:48:00 +0100 Subject: [PATCH 09/31] Fix Bug #327471 "the report name is wrong in hr_attendence module" Also change the name of the wizards in the hr_attendence module bzr revid: ls@numerigraphe.fr-20090210084800-x50c18hmpg6135i6 --- addons/hr_attendance/hr_attendance_wizard.xml | 6 +++--- addons/hr_attendance/report/attendance_errors.py | 2 +- addons/hr_attendance/report/bymonth.py | 2 +- addons/hr_attendance/report/timesheet.py | 2 +- addons/hr_attendance/wizard/print_attendance_error.py | 4 ++-- addons/hr_attendance/wizard/print_bymonth.py | 4 ++-- addons/hr_attendance/wizard/print_byweek.py | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/addons/hr_attendance/hr_attendance_wizard.xml b/addons/hr_attendance/hr_attendance_wizard.xml index 0c9e256ae45..92c28911b40 100644 --- a/addons/hr_attendance/hr_attendance_wizard.xml +++ b/addons/hr_attendance/hr_attendance_wizard.xml @@ -3,10 +3,10 @@ - + - - + + diff --git a/addons/hr_attendance/report/attendance_errors.py b/addons/hr_attendance/report/attendance_errors.py index 762dd194496..d9dd93a0426 100644 --- a/addons/hr_attendance/report/attendance_errors.py +++ b/addons/hr_attendance/report/attendance_errors.py @@ -73,7 +73,7 @@ class attendance_print(report_sxw.rml_parse): return (self._sign(total),total2 and self._sign(total2)) -report_sxw.report_sxw('report.hr.timesheet.attendance.error', 'hr.employee', 'addons/hr_attendance/report/attendance_errors.rml',parser=attendance_print, header=2) +report_sxw.report_sxw('report.hr.attendance.error', 'hr.employee', 'addons/hr_attendance/report/attendance_errors.rml',parser=attendance_print, header=2) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_attendance/report/bymonth.py b/addons/hr_attendance/report/bymonth.py index d0715b4b66d..1da6db83cfd 100644 --- a/addons/hr_attendance/report/bymonth.py +++ b/addons/hr_attendance/report/bymonth.py @@ -96,7 +96,7 @@ class report_custom(report_rml): return xml -report_custom('report.hr.timesheet.bymonth', 'hr.employee', '', 'addons/hr_attendance/report/bymonth.xsl') +report_custom('report.hr.attendance.bymonth', 'hr.employee', '', 'addons/hr_attendance/report/bymonth.xsl') # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_attendance/report/timesheet.py b/addons/hr_attendance/report/timesheet.py index feec7743370..a256e27767b 100644 --- a/addons/hr_attendance/report/timesheet.py +++ b/addons/hr_attendance/report/timesheet.py @@ -115,5 +115,5 @@ class report_custom(report_rml): ''' % '\n'.join(user_xml) return self.post_process_xml_data(cr, uid, xml, context) -report_custom('report.hr.timesheet.allweeks', 'hr.employee', '', 'addons/hr_attendance/report/timesheet.xsl') +report_custom('report.hr.attendance.allweeks', 'hr.employee', '', 'addons/hr_attendance/report/timesheet.xsl') # vim:noexpandtab:tw=0 diff --git a/addons/hr_attendance/wizard/print_attendance_error.py b/addons/hr_attendance/wizard/print_attendance_error.py index 6505b771832..fe88406f331 100644 --- a/addons/hr_attendance/wizard/print_attendance_error.py +++ b/addons/hr_attendance/wizard/print_attendance_error.py @@ -46,10 +46,10 @@ class wiz_attendance(wizard.interface): }, 'print': { 'actions': [], - 'result': {'type': 'print', 'report': 'hr.timesheet.attendance.error', 'state':'end'} + 'result': {'type': 'print', 'report': 'hr.attendance.error', 'state':'end'} } } -wiz_attendance('hr.timesheet.attendance.report') +wiz_attendance('hr.attendance.report') # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_attendance/wizard/print_bymonth.py b/addons/hr_attendance/wizard/print_bymonth.py index 4e28055bcdc..8c83b90cde3 100644 --- a/addons/hr_attendance/wizard/print_bymonth.py +++ b/addons/hr_attendance/wizard/print_bymonth.py @@ -54,10 +54,10 @@ class wiz_bymonth(wizard.interface): }, 'print': { 'actions': [], - 'result': {'type': 'print', 'report': 'hr.timesheet.bymonth', 'state': 'end'} + 'result': {'type': 'print', 'report': 'hr.attendance.bymonth', 'state': 'end'} } } -wiz_bymonth('hr.print_month') +wiz_bymonth('hr.attendance.print_month') # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_attendance/wizard/print_byweek.py b/addons/hr_attendance/wizard/print_byweek.py index ed3dd8f07a8..b5956cb7b48 100644 --- a/addons/hr_attendance/wizard/print_byweek.py +++ b/addons/hr_attendance/wizard/print_byweek.py @@ -44,10 +44,10 @@ class wiz_byweek(wizard.interface): }, 'print': { 'actions': [], - 'result': {'type': 'print', 'report': 'hr.timesheet.allweeks', 'state':'end'} + 'result': {'type': 'print', 'report': 'hr.attendance.allweeks', 'state':'end'} } } -wiz_byweek('hr.print_week') +wiz_byweek('hr.attendance.print_week') # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From 4d3713a0453babd2dd83e802dc39f5e0b1de1525 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 10 Feb 2009 10:48:43 +0100 Subject: [PATCH 10/31] [FIX] gettextAlias: handle the case when context is None lp bug: https://launchpad.net/bugs/327510 fixed bzr revid: christophe@tinyerp.com-20090210094843-khwkfjd83fha8rvl --- bin/tools/translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 7e1a7ca08a8..e8ff793fa4a 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -59,7 +59,7 @@ class GettextAlias(object): def __call__(self, source): frame = inspect.stack()[1][0] cr = frame.f_locals.get('cr') - lang = frame.f_locals.get('context', {}).get('lang', False) + lang = (frame.f_locals.get('context') or {}).get('lang', False) if not (lang and cr): return source From 494187e0b58d077e5ff54cd191dd8a002b3bf715 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Tue, 10 Feb 2009 16:02:34 +0530 Subject: [PATCH 11/31] [FIX]If any account template has no code,no problem bzr revid: jvo@tinyerp.com-20090210103234-z2v07jbj053xnln1 --- addons/account/account.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/addons/account/account.py b/addons/account/account.py index 328cdbe0bb4..0e5a1e425b6 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -2186,10 +2186,13 @@ class wizard_multi_charts_accounts(osv.osv_memory): #create the account_account for this bank journal tmp = self.pool.get('res.partner.bank').name_get(cr, uid, [line.acc_no.id])[0][1] dig = obj_multi.code_digits + new_code = str(current_num) + if ref_acc_bank.code: + new_code = str(ref_acc_bank.code.ljust(dig,'0') + str(current_num)) vals = { 'name': line.acc_no.bank and line.acc_no.bank.name+' '+tmp or tmp, 'currency_id': line.currency_id and line.currency_id.id or False, - 'code': str(ref_acc_bank.code.ljust(dig,'0') + str(current_num)), + 'code': new_code, 'type': 'other', 'user_type': account_template.user_type and account_template.user_type.id or False, 'reconcile': True, From 1d3ec352dd90cfb53a3e1ce50551fee59bfe073c Mon Sep 17 00:00:00 2001 From: "Apa (Open ERP)" Date: Tue, 10 Feb 2009 17:53:53 +0530 Subject: [PATCH 12/31] replace date with date_time in purchase order report bzr revid: apa@tinyerp.com-20090210122353-eslrxoa09i7ockdc --- addons/purchase/report/order.rml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/addons/purchase/report/order.rml b/addons/purchase/report/order.rml index aa8e14367ab..d945dc1802f 100644 --- a/addons/purchase/report/order.rml +++ b/addons/purchase/report/order.rml @@ -133,7 +133,7 @@ - [[ repeatIn(objects,'o') ]] + [[repeatIn(objects,'o')]] [[ setLang(o.partner_id.lang) ]] @@ -237,7 +237,7 @@ - + Description @@ -260,8 +260,8 @@
- [[ repeatIn(o.order_line,'line') ]] - + [[repeatIn(o.order_line,'line')]] + [[ line.name ]] @@ -270,7 +270,7 @@ [[ ', '.join(map(lambda x: x.name, line.taxes_id)) ]] - [[ formatLang( line.date_planned, date=True) ]] + [[ formatLang( line.date_planned, date_time=True) ]] [[ formatLang(line.product_qty ) ]] From c5943171d67e1e648f1e50be60a6c431321e5824 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Wed, 11 Feb 2009 15:05:48 +0530 Subject: [PATCH 13/31] [FIX] Case sections were not able to take parent sections bzr revid: jvo@tinyerp.com-20090211093548-499hgwso566xtuo3 --- addons/crm/crm.py | 2 +- addons/crm/crm_view.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/crm/crm.py b/addons/crm/crm.py index 4364965cce6..f634475d942 100644 --- a/addons/crm/crm.py +++ b/addons/crm/crm.py @@ -80,7 +80,7 @@ class crm_case_section(osv.osv): level -= 1 return True _constraints = [ - (_check_recursion, 'Error ! You can not create recursive sections.', ['parent_id']) + (_check_recursion, 'Error ! You cannot create recursive sections.', ['parent_id']) ] # Mainly used by the wizard diff --git a/addons/crm/crm_view.xml b/addons/crm/crm_view.xml index feb9fd79d23..103682624b9 100644 --- a/addons/crm/crm_view.xml +++ b/addons/crm/crm_view.xml @@ -34,7 +34,7 @@ - + - Total amount due: [[ '%.2f' % (reduce(lambda x, y: x + ((y['debit'] - y['credit']) * (y['account_id']['type'] == 'payable' and -1 or 1)), getLines(o), 0)) ]] [[ company.currency_id.name ]]. + Total amount due: [[ formatLang((reduce(lambda x, y: x + ((y['debit'] - y['credit']) * (y['account_id']['type'] == 'payable' and -1 or 1)), getLines(o), 0))) ]] [[ company.currency_id.name ]]. From 71f82e2ae4ddc43d9aff7c290edd1e5451096232 Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Thu, 12 Feb 2009 12:19:03 +0530 Subject: [PATCH 20/31] fix bug number : 328134 - can't associate a tax to a product if tax has 'Tax Application' set to 'All' - modify Financial Management->invoices also for same problem bzr revid: mra@tinyerp.com-20090212064903-9js22bwgih61prxu --- addons/account/account.py | 6 +++--- addons/account/product.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/addons/account/account.py b/addons/account/account.py index 0e5a1e425b6..7b07167f18f 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -1241,9 +1241,9 @@ class account_tax(osv.osv): context=None, count=False): if context and context.has_key('type'): if context['type'] in ('out_invoice','out_refund'): - args.append(('type_tax_use','=','sale')) + args.append(('type_tax_use','in',['sale','all'])) elif context['type'] in ('in_invoice','in_refund'): - args.append(('type_tax_use','=','purchase')) + args.append(('type_tax_use','in',['purchase','all'])) return super(account_tax, self).search(cr, uid, args, offset, limit, order, context, count) def name_get(self, cr, uid, ids, context={}): @@ -2142,7 +2142,7 @@ class wizard_multi_charts_accounts(osv.osv_memory): vals_journal={} view_id = self.pool.get('account.journal.view').search(cr,uid,[('name','=','Journal View')])[0] seq_id = obj_sequence.search(cr,uid,[('name','=','Account Journal')])[0] - + if obj_multi.seq_journal: seq_id_sale = obj_sequence.search(cr,uid,[('name','=','Sale Journal')])[0] seq_id_purchase = obj_sequence.search(cr,uid,[('name','=','Purchase Journal')])[0] diff --git a/addons/account/product.py b/addons/account/product.py index b26d9b12208..f061e22cb14 100644 --- a/addons/account/product.py +++ b/addons/account/product.py @@ -54,10 +54,10 @@ class product_template(osv.osv): _columns = { 'taxes_id': fields.many2many('account.tax', 'product_taxes_rel', 'prod_id', 'tax_id', 'Customer Taxes', - domain=[('parent_id','=',False),('type_tax_use','=','sale')]), + domain=[('parent_id','=',False),('type_tax_use','in',['sale','all'])]), 'supplier_taxes_id': fields.many2many('account.tax', 'product_supplier_taxes_rel', 'prod_id', 'tax_id', - 'Supplier Taxes', domain=[('parent_id', '=', False),('type_tax_use','=','purchase')]), + 'Supplier Taxes', domain=[('parent_id', '=', False),('type_tax_use','in',['purchase','all'])]), 'property_account_income': fields.property( 'account.account', type='many2one', From 5ca9f20766b44520eb207d2d2cd65186cebfb3cd Mon Sep 17 00:00:00 2001 From: "Apa (Open ERP)" Date: Thu, 12 Feb 2009 12:52:02 +0530 Subject: [PATCH 21/31] Add formatLang function in account followup report bzr revid: apa@tinyerp.com-20090212072202-rg4g1a2l10vdz00u --- addons/account_followup/report/rappel.rml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/account_followup/report/rappel.rml b/addons/account_followup/report/rappel.rml index 257365ce807..97aaa377c1e 100644 --- a/addons/account_followup/report/rappel.rml +++ b/addons/account_followup/report/rappel.rml @@ -157,7 +157,7 @@
[[repeatIn(getLines(o), 'line') ]] - + [[ formatLang(line['date'],date = True) ]] @@ -181,7 +181,7 @@ [[ formatLang(line['credit']) ]] [[ company.currency_id.name]] - [[ (line['date_maturity'] < time.strftime('%Y-%m-%d')) and (line['debit'] -line['credit']) or '0.00' ]] [[ company.currency_id.name]] + [[ (line['date_maturity'] < time.strftime('%Y-%m-%d')) and formatLang(line['debit'] -line['credit']) ]] [[ company.currency_id.name]] [[ line['blocked'] and 'X' or '' ]] @@ -226,7 +226,7 @@ [[formatLang(reduce(lambda x,y: x+y['credit'], getLines(o), 0.00)) ]] [[ company.currency_id.name]] - [[ reduce(lambda x,y: x+(y['debit'] - y['credit']), filter(lambda x: x['date_maturity'] < time.strftime('%Y-%m-%d'), getLines(o)), 0) ]] [[ company.currency_id.name]] + [[ formatLang(reduce(lambda x,y: x+(y['debit'] - y['credit']), filter(lambda x: x['date_maturity'] < time.strftime('%Y-%m-%d'), getLines(o)), 0)) ]] [[ company.currency_id.name]] @@ -264,7 +264,7 @@ Balance: - [[ '%.2f' % (reduce(lambda x,y: x+(y['debit'] - y['credit']), getLines(o), 0.00)) ]] [[ company.currency_id.name]] + [[ formatLang((reduce(lambda x,y: x+(y['debit'] - y['credit']), getLines(o), 0.00))) ]] [[ company.currency_id.name]] From 329c1615f6778d323869c0d76b7cadeb6170abb6 Mon Sep 17 00:00:00 2001 From: "Apa (Open ERP)" Date: Thu, 12 Feb 2009 13:03:40 +0530 Subject: [PATCH 22/31] change date format in overdue payment report bzr revid: apa@tinyerp.com-20090212073340-rv4jnjtn97mobhq2 --- addons/account/report/overdue.rml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/account/report/overdue.rml b/addons/account/report/overdue.rml index 745924f56de..f216136627c 100644 --- a/addons/account/report/overdue.rml +++ b/addons/account/report/overdue.rml @@ -114,7 +114,7 @@ Document: Customer account statement - Date: [[ formatLang(time.strftime('%Y/%m/%d'),date=True) ]] + Date: [[ formatLang(time.strftime('%Y-%m-%d'),date=True) ]] Customer Ref: [[ o.ref ]] From f16f1bcd6e5e7644eccba019f786724dc3a7c950 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Thu, 12 Feb 2009 10:41:47 +0100 Subject: [PATCH 23/31] [FIX] maintenance: pass the module's versions to retrieve_updates bzr revid: christophe@tinyerp.com-20090212094147-ot20d170mve79ema --- bin/service/web_services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/service/web_services.py b/bin/service/web_services.py index b8b5a8e1bee..fff7491653c 100644 --- a/bin/service/web_services.py +++ b/bin/service/web_services.py @@ -414,7 +414,7 @@ GNU Public Licence. l.notifyChannel('migration', netsvc.LOG_INFO, 'starting migration with contract %s' % (rc.name,)) - zips = rc.retrieve_updates(rc.id) + zips = rc.retrieve_updates(rc.id, addons.get_modules_with_version()) from shutil import rmtree, copytree, copy From 411778633e797a80d84be024f08c7bbafb5c645f Mon Sep 17 00:00:00 2001 From: Olivier Laurent Date: Thu, 12 Feb 2009 11:04:03 +0100 Subject: [PATCH 24/31] escape the field name if the field name is a key word (like 'binary' for exemple) bzr revid: olt@tinyerp.com-20090212100403-ukaqh4eflhbs9dg0 --- bin/osv/orm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index bd1fc41f2a5..a70a3ee2083 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -1922,7 +1922,7 @@ class orm(orm_template): return "COALESCE(write_date, create_date, now())::timestamp AS %s" % (f,) return "now()::timestamp AS %s" % (f,) if isinstance(self._columns[f], fields.binary) and context.get('bin_size', False): - return "length(%s) as %s" % (f,f) + return 'length("%s") as "%s"' % (f, f) return '"%s"' % (f,) fields_pre2 = map(convert_field, fields_pre) for i in range(0, len(ids), cr.IN_MAX): From 86fad5a90e866436e974dc4acd1505b74d977acc Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Thu, 12 Feb 2009 12:23:47 +0100 Subject: [PATCH 25/31] [IMP] remove bad files bzr revid: christophe@tinyerp.com-20090212112347-4q6ybxwzcv643vob --- addons/account/i18n/tlh_TLH.po | 6195 ----------------- .../account_analytic_analysis/i18n/tlh_TLH.po | 319 - .../account_analytic_default/i18n/tlh_TLH.po | 106 - addons/account_analytic_plans/i18n/tlh_TLH.po | 359 - addons/account_balance/i18n/tlh_TLH.po | 277 - addons/account_budget/i18n/tlh_TLH.po | 470 -- addons/account_chart/i18n/tlh_TLH.po | 22 - addons/account_date_check/i18n/tlh_TLH.po | 32 - addons/account_followup/i18n/tlh_TLH.po | 498 -- addons/account_invoice_layout/i18n/tlh_TLH.po | 293 - addons/account_payment/i18n/tlh_TLH.po | 617 -- addons/account_report/i18n/tlh_TLH.po | 528 -- addons/account_reporting/i18n/tlh_TLH.po | 236 - addons/account_tax_include/i18n/tlh_TLH.po | 52 - addons/account_voucher/i18n/tlh_TLH.po | 471 -- .../i18n/tlh_TLH.po | 62 - addons/analytic_user_function/i18n/tlh_TLH.po | 63 - addons/auction/i18n/tlh_TLH.po | 2569 ------- addons/audittrail/i18n/tlh_TLH.po | 299 - addons/base_contact/i18n/tlh_TLH.po | 312 - addons/base_iban/i18n/tlh_TLH.po | 63 - addons/base_module_merge/i18n/tlh_TLH.po | 163 - addons/base_module_publish/i18n/tlh_TLH.po | 362 - addons/base_module_record/i18n/tlh_TLH.po | 317 - addons/base_report_creator/i18n/tlh_TLH.po | 469 -- addons/base_report_designer/i18n/tlh_TLH.po | 153 - addons/base_setup/i18n/tlh_TLH.po | 256 - addons/base_vat/i18n/tlh_TLH.po | 37 - addons/board/i18n/tlh_TLH.po | 213 - addons/board_account/i18n/tlh_TLH.po | 90 - addons/board_association/i18n/tlh_TLH.po | 63 - addons/board_auction/i18n/tlh_TLH.po | 117 - .../board_crm_configuration/i18n/tlh_TLH.po | 114 - addons/board_document/i18n/tlh_TLH.po | 84 - addons/board_manufacturing/i18n/tlh_TLH.po | 68 - addons/board_project/i18n/tlh_TLH.po | 134 - addons/board_sale/i18n/tlh_TLH.po | 68 - addons/crm/i18n/tlh_TLH.po | 1535 ---- addons/crm_configuration/i18n/tlh_TLH.po | 2160 ------ addons/crm_profiling/i18n/tlh_TLH.po | 163 - addons/crm_vertical/i18n/tlh_TLH.po | 22 - addons/delivery/i18n/tlh_TLH.po | 388 -- addons/document/i18n/tlh_TLH.po | 461 -- addons/document_ics/i18n/tlh_TLH.po | 157 - addons/event/i18n/tlh_TLH.po | 618 -- addons/event_project/i18n/tlh_TLH.po | 82 - addons/google_map/i18n/tlh_TLH.po | 46 - addons/hr/i18n/tlh_TLH.po | 476 -- addons/hr_attendance/i18n/tlh_TLH.po | 443 -- addons/hr_contract/i18n/tlh_TLH.po | 259 - addons/hr_expense/i18n/tlh_TLH.po | 520 -- addons/hr_holidays/i18n/tlh_TLH.po | 718 -- addons/hr_timesheet/i18n/tlh_TLH.po | 583 -- addons/hr_timesheet_invoice/i18n/tlh_TLH.po | 541 -- addons/hr_timesheet_sheet/i18n/tlh_TLH.po | 655 -- addons/idea/i18n/tlh_TLH.po | 368 - addons/l10n_be/i18n/tlh_TLH.po | 223 - addons/l10n_chart_uk_minimal/i18n/tlh_TLH.po | 83 - addons/l10n_fr/i18n/tlh_TLH.po | 1036 --- addons/l10n_lu/i18n/tlh_TLH.po | 119 - addons/membership/i18n/tlh_TLH.po | 506 -- addons/mrp/i18n/tlh_TLH.po | 2002 ------ addons/mrp_jit/i18n/tlh_TLH.po | 22 - addons/mrp_operations/i18n/tlh_TLH.po | 423 -- addons/mrp_repair/i18n/tlh_TLH.po | 648 -- addons/mrp_subproduct/i18n/tlh_TLH.po | 72 - addons/point_of_sale/i18n/tlh_TLH.po | 1003 --- addons/process/i18n/tlh_TLH.po | 297 - addons/product/i18n/tlh_TLH.po | 1649 ----- addons/product_margin/i18n/tlh_TLH.po | 275 - addons/profile_accounting/i18n/tlh_TLH.po | 127 - addons/profile_association/i18n/tlh_TLH.po | 128 - addons/profile_auction/i18n/tlh_TLH.po | 22 - addons/profile_crm/i18n/tlh_TLH.po | 22 - addons/profile_manufacturing/i18n/tlh_TLH.po | 193 - addons/profile_service/i18n/tlh_TLH.po | 212 - addons/project/i18n/tlh_TLH.po | 1132 --- addons/project_gtd/i18n/tlh_TLH.po | 313 - addons/project_mrp/i18n/tlh_TLH.po | 83 - addons/project_retro_planning/i18n/tlh_TLH.po | 22 - addons/project_timesheet/i18n/tlh_TLH.po | 51 - addons/purchase/i18n/tlh_TLH.po | 907 --- .../purchase_analytic_plans/i18n/tlh_TLH.po | 32 - addons/report_account/i18n/tlh_TLH.po | 73 - addons/report_analytic/i18n/tlh_TLH.po | 79 - addons/report_analytic_line/i18n/tlh_TLH.po | 84 - .../report_analytic_planning/i18n/tlh_TLH.po | 338 - addons/report_crm/i18n/tlh_TLH.po | 214 - addons/report_document/i18n/tlh_TLH.po | 241 - addons/report_intrastat/i18n/tlh_TLH.po | 257 - addons/report_mrp/i18n/tlh_TLH.po | 96 - addons/report_project/i18n/tlh_TLH.po | 134 - addons/report_purchase/i18n/tlh_TLH.po | 192 - addons/report_sale/i18n/tlh_TLH.po | 231 - addons/report_task/i18n/tlh_TLH.po | 0 addons/report_timesheet/i18n/tlh_TLH.po | 213 - addons/sale/i18n/tlh_TLH.po | 1306 ---- addons/sale_analytic_plans/i18n/tlh_TLH.po | 32 - addons/sale_crm/i18n/tlh_TLH.po | 206 - addons/sale_delivery_report/i18n/tlh_TLH.po | 77 - addons/sale_journal/i18n/tlh_TLH.po | 546 -- addons/scrum/i18n/tlh_TLH.po | 861 --- addons/stock/i18n/tlh_TLH.po | 2489 ------- addons/stock_invoice_directly/i18n/tlh_TLH.po | 22 - addons/stock_location/i18n/tlh_TLH.po | 106 - addons/stock_no_autopicking/i18n/tlh_TLH.po | 37 - addons/subscription/i18n/tlh_TLH.po | 277 - addons/warning/i18n/tlh_TLH.po | 123 - addons/wiki/i18n/tlh_TLH.po | 344 - 109 files changed, 46926 deletions(-) delete mode 100644 addons/account/i18n/tlh_TLH.po delete mode 100644 addons/account_analytic_analysis/i18n/tlh_TLH.po delete mode 100644 addons/account_analytic_default/i18n/tlh_TLH.po delete mode 100644 addons/account_analytic_plans/i18n/tlh_TLH.po delete mode 100644 addons/account_balance/i18n/tlh_TLH.po delete mode 100644 addons/account_budget/i18n/tlh_TLH.po delete mode 100644 addons/account_chart/i18n/tlh_TLH.po delete mode 100644 addons/account_date_check/i18n/tlh_TLH.po delete mode 100644 addons/account_followup/i18n/tlh_TLH.po delete mode 100644 addons/account_invoice_layout/i18n/tlh_TLH.po delete mode 100644 addons/account_payment/i18n/tlh_TLH.po delete mode 100644 addons/account_report/i18n/tlh_TLH.po delete mode 100644 addons/account_reporting/i18n/tlh_TLH.po delete mode 100644 addons/account_tax_include/i18n/tlh_TLH.po delete mode 100644 addons/account_voucher/i18n/tlh_TLH.po delete mode 100644 addons/analytic_journal_billing_rate/i18n/tlh_TLH.po delete mode 100644 addons/analytic_user_function/i18n/tlh_TLH.po delete mode 100644 addons/auction/i18n/tlh_TLH.po delete mode 100644 addons/audittrail/i18n/tlh_TLH.po delete mode 100644 addons/base_contact/i18n/tlh_TLH.po delete mode 100644 addons/base_iban/i18n/tlh_TLH.po delete mode 100644 addons/base_module_merge/i18n/tlh_TLH.po delete mode 100644 addons/base_module_publish/i18n/tlh_TLH.po delete mode 100644 addons/base_module_record/i18n/tlh_TLH.po delete mode 100644 addons/base_report_creator/i18n/tlh_TLH.po delete mode 100644 addons/base_report_designer/i18n/tlh_TLH.po delete mode 100644 addons/base_setup/i18n/tlh_TLH.po delete mode 100644 addons/base_vat/i18n/tlh_TLH.po delete mode 100644 addons/board/i18n/tlh_TLH.po delete mode 100644 addons/board_account/i18n/tlh_TLH.po delete mode 100644 addons/board_association/i18n/tlh_TLH.po delete mode 100644 addons/board_auction/i18n/tlh_TLH.po delete mode 100644 addons/board_crm_configuration/i18n/tlh_TLH.po delete mode 100644 addons/board_document/i18n/tlh_TLH.po delete mode 100644 addons/board_manufacturing/i18n/tlh_TLH.po delete mode 100644 addons/board_project/i18n/tlh_TLH.po delete mode 100644 addons/board_sale/i18n/tlh_TLH.po delete mode 100644 addons/crm/i18n/tlh_TLH.po delete mode 100644 addons/crm_configuration/i18n/tlh_TLH.po delete mode 100644 addons/crm_profiling/i18n/tlh_TLH.po delete mode 100644 addons/crm_vertical/i18n/tlh_TLH.po delete mode 100644 addons/delivery/i18n/tlh_TLH.po delete mode 100644 addons/document/i18n/tlh_TLH.po delete mode 100644 addons/document_ics/i18n/tlh_TLH.po delete mode 100644 addons/event/i18n/tlh_TLH.po delete mode 100644 addons/event_project/i18n/tlh_TLH.po delete mode 100644 addons/google_map/i18n/tlh_TLH.po delete mode 100644 addons/hr/i18n/tlh_TLH.po delete mode 100644 addons/hr_attendance/i18n/tlh_TLH.po delete mode 100644 addons/hr_contract/i18n/tlh_TLH.po delete mode 100644 addons/hr_expense/i18n/tlh_TLH.po delete mode 100644 addons/hr_holidays/i18n/tlh_TLH.po delete mode 100644 addons/hr_timesheet/i18n/tlh_TLH.po delete mode 100644 addons/hr_timesheet_invoice/i18n/tlh_TLH.po delete mode 100644 addons/hr_timesheet_sheet/i18n/tlh_TLH.po delete mode 100644 addons/idea/i18n/tlh_TLH.po delete mode 100644 addons/l10n_be/i18n/tlh_TLH.po delete mode 100644 addons/l10n_chart_uk_minimal/i18n/tlh_TLH.po delete mode 100644 addons/l10n_fr/i18n/tlh_TLH.po delete mode 100644 addons/l10n_lu/i18n/tlh_TLH.po delete mode 100644 addons/membership/i18n/tlh_TLH.po delete mode 100644 addons/mrp/i18n/tlh_TLH.po delete mode 100644 addons/mrp_jit/i18n/tlh_TLH.po delete mode 100644 addons/mrp_operations/i18n/tlh_TLH.po delete mode 100644 addons/mrp_repair/i18n/tlh_TLH.po delete mode 100644 addons/mrp_subproduct/i18n/tlh_TLH.po delete mode 100644 addons/point_of_sale/i18n/tlh_TLH.po delete mode 100644 addons/process/i18n/tlh_TLH.po delete mode 100644 addons/product/i18n/tlh_TLH.po delete mode 100644 addons/product_margin/i18n/tlh_TLH.po delete mode 100644 addons/profile_accounting/i18n/tlh_TLH.po delete mode 100644 addons/profile_association/i18n/tlh_TLH.po delete mode 100644 addons/profile_auction/i18n/tlh_TLH.po delete mode 100644 addons/profile_crm/i18n/tlh_TLH.po delete mode 100644 addons/profile_manufacturing/i18n/tlh_TLH.po delete mode 100644 addons/profile_service/i18n/tlh_TLH.po delete mode 100644 addons/project/i18n/tlh_TLH.po delete mode 100644 addons/project_gtd/i18n/tlh_TLH.po delete mode 100644 addons/project_mrp/i18n/tlh_TLH.po delete mode 100644 addons/project_retro_planning/i18n/tlh_TLH.po delete mode 100644 addons/project_timesheet/i18n/tlh_TLH.po delete mode 100644 addons/purchase/i18n/tlh_TLH.po delete mode 100644 addons/purchase_analytic_plans/i18n/tlh_TLH.po delete mode 100644 addons/report_account/i18n/tlh_TLH.po delete mode 100644 addons/report_analytic/i18n/tlh_TLH.po delete mode 100644 addons/report_analytic_line/i18n/tlh_TLH.po delete mode 100644 addons/report_analytic_planning/i18n/tlh_TLH.po delete mode 100644 addons/report_crm/i18n/tlh_TLH.po delete mode 100644 addons/report_document/i18n/tlh_TLH.po delete mode 100644 addons/report_intrastat/i18n/tlh_TLH.po delete mode 100644 addons/report_mrp/i18n/tlh_TLH.po delete mode 100644 addons/report_project/i18n/tlh_TLH.po delete mode 100644 addons/report_purchase/i18n/tlh_TLH.po delete mode 100644 addons/report_sale/i18n/tlh_TLH.po delete mode 100644 addons/report_task/i18n/tlh_TLH.po delete mode 100644 addons/report_timesheet/i18n/tlh_TLH.po delete mode 100644 addons/sale/i18n/tlh_TLH.po delete mode 100644 addons/sale_analytic_plans/i18n/tlh_TLH.po delete mode 100644 addons/sale_crm/i18n/tlh_TLH.po delete mode 100644 addons/sale_delivery_report/i18n/tlh_TLH.po delete mode 100644 addons/sale_journal/i18n/tlh_TLH.po delete mode 100644 addons/scrum/i18n/tlh_TLH.po delete mode 100644 addons/stock/i18n/tlh_TLH.po delete mode 100644 addons/stock_invoice_directly/i18n/tlh_TLH.po delete mode 100644 addons/stock_location/i18n/tlh_TLH.po delete mode 100644 addons/stock_no_autopicking/i18n/tlh_TLH.po delete mode 100644 addons/subscription/i18n/tlh_TLH.po delete mode 100644 addons/warning/i18n/tlh_TLH.po delete mode 100644 addons/wiki/i18n/tlh_TLH.po diff --git a/addons/account/i18n/tlh_TLH.po b/addons/account/i18n/tlh_TLH.po deleted file mode 100644 index 552c5736bfc..00000000000 --- a/addons/account/i18n/tlh_TLH.po +++ /dev/null @@ -1,6195 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "Integrity Error !" -msgstr "" - -#. module: account -#: field:account.tax.template,description:0 -msgid "Internal Name" -msgstr "" - -#. module: account -#: view:account.tax.code:0 -msgid "Account Tax Code" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree9 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree9 -msgid "Unpaid Supplier Invoices" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 -#, python-format -msgid "No journal for ending writing has been defined for the fiscal year" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_entries -msgid "Entries Encoding" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 -msgid "Confirm statement from draft" -msgstr "" - -#. module: account -#: model:account.account.type,name:account.account_type_asset -msgid "Asset" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_validate_account_move.py:0 -#, python-format -msgid "Specified Journal does not have any account move entries in draft state for this period" -msgstr "" - -#. module: account -#: wizard_view:account_use_models,init_form:0 -msgid "Select Message" -msgstr "" - -#. module: account -#: field:account.invoice.tax,account_id:0 -#: field:account.move.line,tax_code_id:0 -msgid "Tax Account" -msgstr "" - -#. module: account -#: wizard_view:account.automatic.reconcile,reconcile:0 -msgid "Reconciliation result" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled -msgid "Unreconciled entries" -msgstr "" - -#. module: account -#: field:account.invoice.tax,base_code_id:0 -#: field:account.tax,base_code_id:0 -#: field:account.tax.template,base_code_id:0 -msgid "Base Code" -msgstr "" - -#. module: account -#: view:account.account:0 -msgid "Account Statistics" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_vat_declaration -#: model:ir.ui.menu,name:account.menu_wizard_vat_declaration -msgid "Print Taxes Report" -msgstr "" - -#. module: account -#: field:account.account,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "Account move line \"%s\" is not valid" -msgstr "" - -#. module: account -#: field:account.invoice,residual:0 -msgid "Residual" -msgstr "" - -#. module: account -#: view:account.subscription:0 -msgid "Subscription Periods" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_refund.py:0 -#, python-format -msgid "Can not %s draft invoice." -msgstr "" - -#. module: account -#: field:account.tax,base_sign:0 -#: field:account.tax,ref_base_sign:0 -#: field:account.tax.template,base_sign:0 -#: field:account.tax.template,ref_base_sign:0 -msgid "Base Code Sign" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_unreconcile_select -#: model:ir.ui.menu,name:account.menu_unreconcile_select -msgid "Unreconcile entries" -msgstr "" - -#. module: account -#: constraint:account.period:0 -msgid "Error ! The duration of the Period(s) is/are invalid. " -msgstr "" - -#. module: account -#: view:account.bank.statement.reconcile:0 -#: field:account.bank.statement.reconcile,line_ids:0 -#: field:account.move,line_id:0 -#: model:ir.actions.act_window,name:account.act_account_acount_move_line_open -#: model:ir.actions.act_window,name:account.action_move_line_form -#: model:ir.ui.menu,name:account.menu_action_move_line_form -msgid "Entries" -msgstr "" - -#. module: account -#: selection:account.move.line,centralisation:0 -msgid "Debit Centralisation" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_invoice_state_confirm -msgid "Confirm draft invoices" -msgstr "" - -#. module: account -#: help:account.payment.term.line,days2:0 -msgid "Day of the month, set -1 for the last day of the current month. If it's positive, it gives the day of the next month. Set 0 for net days (otherwise it's based on the beginning of the month)." -msgstr "" - -#. module: account -#: view:account.move:0 -msgid "Total Credit" -msgstr "" - -#. module: account -#: field:account.config.wizard,charts:0 -msgid "Charts of Account" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_move_line_select -msgid "Move line select" -msgstr "" - -#. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Keep empty to use the expense account" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not modify a posted entry of this journal !\nYou should set the journal to allow cancelling entries if you want to do that." -msgstr "" - -#. module: account -#: rml:account.journal.period.print:0 -#: rml:account.tax.code.entries:0 -#: rml:account.third_party_ledger:0 -msgid "Entry label" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_model_line -msgid "Account Model Entries" -msgstr "" - -#. module: account -#: field:account.tax.code,sum_period:0 -msgid "Period Sum" -msgstr "" - -#. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Compute Code (if type=code)" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You have to provide an account for the write off entry !" -msgstr "" - -#. module: account -#: view:account.move:0 -#: view:account.move.line:0 -msgid "Account Entry Line" -msgstr "" - -#. module: account -#: wizard_view:account.aged.trial.balance,init:0 -msgid "Aged Trial Balance" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_recurrent_entries -msgid "Recurrent Entries" -msgstr "" - -#. module: account -#: field:account.analytic.line,amount:0 -#: field:account.bank.statement.line,amount:0 -#: field:account.bank.statement.reconcile.line,amount:0 -#: rml:account.invoice:0 -#: field:account.invoice.tax,amount:0 -#: field:account.move,amount:0 -#: field:account.tax,amount:0 -#: field:account.tax.template,amount:0 -#: xsl:account.transfer:0 -msgid "Amount" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_3rdparty_ledger -#: model:ir.actions.wizard,name:account.wizard_third_party_ledger -#: model:ir.ui.menu,name:account.menu_third_party_ledger -msgid "Partner Ledger" -msgstr "" - -#. module: account -#: field:product.template,supplier_taxes_id:0 -msgid "Supplier Taxes" -msgstr "" - -#. module: account -#: view:account.move:0 -msgid "Total Debit" -msgstr "" - -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Accounting Entries-" -msgstr "" - -#. module: account -#: help:account.journal,view_id:0 -msgid "Gives the view used when writing or browsing entries in this journal. The view tell Open ERP which fields should be visible, required or readonly and in which order. You can create your own view for a faster encoding in each journal." -msgstr "" - -#. module: account -#: help:account.invoice,payment_term:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment. The payment term may compute several due dates, for example 50% now, 50% in one month." -msgstr "" - -#. module: account -#: selection:account.tax,type:0 -#: selection:account.tax.template,type:0 -msgid "Fixed" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_overdue -msgid "Overdue Payments" -msgstr "" - -#. module: account -#: wizard_view:account.account.balance.report,checktype:0 -#: wizard_view:account.analytic.account.analytic.check.report,init:0 -#: wizard_view:account.analytic.account.balance.report,init:0 -#: wizard_view:account.analytic.account.cost_ledger.report,init:0 -#: wizard_view:account.analytic.account.inverted.balance.report,init:0 -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -#: wizard_view:account.vat.declaration,init:0 -msgid "Select period" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Please verify the price of the invoice !\nThe real total does not match the computed total." -msgstr "" - -#. module: account -#: field:account.invoice,origin:0 -#: field:account.invoice.line,origin:0 -msgid "Origin" -msgstr "" - -#. module: account -#: field:account.account,reconcile:0 -#: wizard_button:account.automatic.reconcile,init,reconcile:0 -#: field:account.bank.statement.line,reconcile_id:0 -#: view:account.bank.statement.reconcile:0 -#: field:account.bank.statement.reconcile.line,line_id:0 -#: field:account.move.line,reconcile_id:0 -#: wizard_button:account.move.line.reconcile,addendum,reconcile:0 -#: wizard_button:account.move.line.reconcile,init_full,reconcile:0 -msgid "Reconcile" -msgstr "" - -#. module: account -#: xsl:account.transfer:0 -msgid "Reference" -msgstr "" - -#. module: account -#: wizard_view:account.subscription.generate,init:0 -msgid "Subscription Compute" -msgstr "" - -#. module: account -#: rml:account.central.journal:0 -msgid "Account Num." -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -msgid "Delta Debit" -msgstr "" - -#. module: account -#: field:account.chart.template,property_account_receivable:0 -msgid "Receivable Account" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "No analytic journal !" -msgstr "" - -#. module: account -#: rml:account.general.journal:0 -msgid "Debit Trans." -msgstr "" - -#. module: account -#: field:account.analytic.line,account_id:0 -#: field:account.invoice.line,account_analytic_id:0 -#: field:account.move.line,analytic_account_id:0 -#: field:report.hr.timesheet.invoice.journal,account_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account -#: field:account.tax,child_depend:0 -#: field:account.tax.template,child_depend:0 -msgid "Tax on Children" -msgstr "" - -#. module: account -#: rml:account.central.journal:0 -#: rml:account.general.journal:0 -#: field:account.journal,name:0 -msgid "Journal Name" -msgstr "" - -#. module: account -#: view:account.payment.term:0 -msgid "Description on invoices" -msgstr "" - -#. module: account -#: field:account.bank.statement.reconcile,total_entry:0 -msgid "Total entries" -msgstr "" - -#. module: account -#: field:account.fiscal.position.account,account_src_id:0 -#: field:account.fiscal.position.account.template,account_src_id:0 -msgid "Account Source" -msgstr "" - -#. module: account -#: field:account.journal,update_posted:0 -msgid "Allow Cancelling Entries" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_paymentorderbank0 -#: model:process.transition,name:account.process_transition_paymentorderreconcilation0 -msgid "Payment Reconcilation" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal -msgid "All Analytic Entries" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Date:" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Disc. (%)" -msgstr "" - -#. module: account -#: selection:account.account.type,sign:0 -msgid "Negative" -msgstr "" - -#. module: account -#: field:account.analytic.line,move_id:0 -msgid "Move Line" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting departement at +32 81 81 37 00." -msgstr "" - -#. module: account -#: selection:account.move,type:0 -msgid "Contra" -msgstr "" - -#. module: account -#: field:account.analytic.account,state:0 -#: field:account.bank.statement,state:0 -#: field:account.invoice,state:0 -#: view:account.move:0 -#: view:account.move.line:0 -#: view:account.subscription:0 -msgid "State" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree13 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree13 -msgid "Unpaid Supplier Refunds" -msgstr "" - -#. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Special Computation" -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 -msgid "Confirm statement with/without reconciliation from draft statement" -msgstr "" - -#. module: account -#: wizard_view:account.move.bank.reconcile,init:0 -#: model:ir.actions.wizard,name:account.action_account_bank_reconcile_tree -#: model:ir.ui.menu,name:account.menu_action_account_bank_reconcile_check_tree -msgid "Bank reconciliation" -msgstr "" - -#. module: account -#: rml:account.general.ledger:0 -#: field:account.model,ref:0 -#: field:account.move,ref:0 -#: rml:account.overdue:0 -#: field:account.subscription,ref:0 -msgid "Ref" -msgstr "" - -#. module: account -#: field:account.tax.template,type_tax_use:0 -msgid "Tax Use In" -msgstr "" - -#. module: account -#: help:account.tax.template,include_base_amount:0 -msgid "Set if the amount of tax must be included in the base amount before computing the next taxes." -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_periodical_processing -msgid "Periodical Processing" -msgstr "" - -#. module: account -#: view:report.hr.timesheet.invoice.journal:0 -msgid "Analytic Entries Stats" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_tax_code_template_form -#: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form -msgid "Tax Code Templates" -msgstr "" - -#. module: account -#: view:account.invoice:0 -msgid "Supplier invoice" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_reconcilepaid0 -#: model:process.transition,name:account.process_transition_supplierreconcilepaid0 -msgid "Reconcile Paid" -msgstr "" - -#. module: account -#: wizard_field:account.chart,init,target_move:0 -msgid "Target Moves" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_tax_template_form -#: model:ir.ui.menu,name:account.menu_action_account_tax_template_form -msgid "Tax Templates" -msgstr "" - -#. module: account -#: field:account.invoice,reconciled:0 -msgid "Paid/Reconciled" -msgstr "" - -#. module: account -#: field:account.account.type,close_method:0 -msgid "Deferral Method" -msgstr "" - -#. module: account -#: field:account.tax.template,include_base_amount:0 -msgid "Include in Base Amount" -msgstr "" - -#. module: account -#: field:account.tax,ref_base_code_id:0 -#: field:account.tax.template,ref_base_code_id:0 -msgid "Refund Base Code" -msgstr "" - -#. module: account -#: view:account.invoice.line:0 -msgid "Line" -msgstr "" - -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -msgid "J.C. or Move name" -msgstr "" - -#. module: account -#: selection:account.tax,applicable_type:0 -#: selection:account.tax.template,applicable_type:0 -msgid "True" -msgstr "" - -#. module: account -#: help:account.payment.term.line,days:0 -msgid "Number of days to add before computation of the day of month.If Date=15/01, Number of Days=22, Day of Month=-1, then the due date is 28/02." -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_tax -msgid "account.tax" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "Bank Journal " -msgstr "" - -#. module: account -#: rml:account.central.journal:0 -msgid "Printing Date" -msgstr "" - -#. module: account -#: rml:account.general.ledger:0 -msgid "Mvt" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You can not use this general account in this journal !" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_aged_trial_balance -#: model:ir.ui.menu,name:account.menu_aged_trial_balance -msgid "Aged Partner Balance" -msgstr "" - -#. module: account -#: view:account.journal:0 -msgid "Entry Controls" -msgstr "" - -#. module: account -#: constraint:account.analytic.account:0 -msgid "Error! You can not create recursive account." -msgstr "" - -#. module: account -#: wizard_view:account.analytic.line,init:0 -msgid "(Keep empty to open the current situation)" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_fiscal_position_account -msgid "Fiscal Position Accounts Mapping" -msgstr "" - -#. module: account -#: model:account.journal,name:account.sales_journal -msgid "x Sales Journal" -msgstr "" - -#. module: account -#: field:account.analytic.account,contact_id:0 -msgid "Contact" -msgstr "" - -#. module: account -#: selection:account.model.line,date:0 -#: selection:account.model.line,date_maturity:0 -msgid "Partner Payment Term" -msgstr "" - -#. module: account -#: view:account.move.reconcile:0 -msgid "Account Entry Reconcile" -msgstr "" - -#. module: account -#: wizard_button:account.move.bank.reconcile,init,open:0 -msgid "Open for bank reconciliation" -msgstr "" - -#. module: account -#: field:account.invoice.line,discount:0 -msgid "Discount (%)" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You can not add/modify entries in a closed journal." -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You can not do this modification on a reconciled entry ! Please note that you can just change some non important fields !" -msgstr "" - -#. module: account -#: wizard_field:account.move.line.reconcile,init_full,writeoff:0 -#: wizard_field:account.move.line.reconcile,init_partial,writeoff:0 -msgid "Write-Off amount" -msgstr "" - -#. module: account -#: help:account.fiscalyear,company_id:0 -msgid "Keep empty if the fiscal year belongs to several companies." -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_analytic_accounting -msgid "Analytic Accounting" -msgstr "" - -#. module: account -#: field:account.analytic.account,line_ids:0 -#: view:account.analytic.line:0 -#: code:addons/account/project/wizard/wizard_account_analytic_line.py:0 -#: model:ir.actions.act_window,name:account.action_account_analytic_line_form -#: model:ir.ui.menu,name:account.next_id_41 -#, python-format -msgid "Analytic Entries" -msgstr "" - -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Voucher Nb" -msgstr "" - -#. module: account -#: field:account.analytic.line,user_id:0 -#: field:account.journal,user_id:0 -msgid "User" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form -msgid "account.analytic.line.extended" -msgstr "" - -#. module: account -#: field:account.analytic.account,partner_id:0 -msgid "Associated Partner" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "You must first select a partner !" -msgstr "" - -#. module: account -#: field:account.invoice,comment:0 -msgid "Additional Information" -msgstr "" - -#. module: account -#: selection:account.invoice,type:0 -msgid "Customer Refund" -msgstr "" - -#. module: account -#: field:wizard.multi.charts.accounts,seq_journal:0 -msgid "Separated Journal Sequences" -msgstr "" - -#. module: account -#: field:account.tax,ref_tax_sign:0 -#: field:account.tax,tax_sign:0 -#: field:account.tax.template,ref_tax_sign:0 -#: field:account.tax.template,tax_sign:0 -msgid "Tax Code Sign" -msgstr "" - -#. module: account -#: selection:account.move,type:0 -msgid "Journal Voucher" -msgstr "" - -#. module: account -#: view:account.move.line:0 -msgid "St." -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_tax_code_line_open -msgid "account.move.line" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_supplieranalyticcost0 -msgid "Analytic Invoice" -msgstr "" - -#. module: account -#: field:account.journal.column,field:0 -msgid "Field Name" -msgstr "" - -#. module: account -#: field:account.tax.code,sign:0 -#: field:account.tax.code.template,sign:0 -msgid "Sign for parent" -msgstr "" - -#. module: account -#: field:account.fiscalyear,end_journal_period_id:0 -msgid "End of Year Entries Journal" -msgstr "" - -#. module: account -#: view:product.product:0 -#: view:product.template:0 -msgid "Purchase Properties" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_paymententries0 -msgid "Can be draft or validated" -msgstr "" - -#. module: account -#: wizard_button:account.invoice.pay,init,reconcile:0 -msgid "Partial Payment" -msgstr "" - -#. module: account -#: wizard_view:account_use_models,create:0 -msgid "Move Lines Created." -msgstr "" - -#. module: account -#: field:account.fiscalyear,state:0 -#: field:account.journal.period,state:0 -#: field:account.move,state:0 -#: field:account.move.line,state:0 -#: field:account.period,state:0 -#: field:account.subscription,state:0 -msgid "Status" -msgstr "" - -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Period to" -msgstr "" - -#. module: account -#: field:account.account.type,partner_account:0 -msgid "Partner account" -msgstr "" - -#. module: account -#: wizard_view:account.subscription.generate,init:0 -msgid "Generate entries before:" -msgstr "" - -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -#: model:ir.actions.report.xml,name:account.account_analytic_account_cost_ledger -#: model:ir.actions.wizard,name:account.account_analytic_account_cost_ledger_report -msgid "Cost Ledger" -msgstr "" - -#. module: account -#: wizard_view:account.account.balance.report,checktype:0 -#: wizard_view:account.general.ledger.report,checktype:0 -#: wizard_view:account.partner.balance.report,init:0 -#: wizard_view:account.third_party_ledger.report,init:0 -msgid "(Keep empty for all open fiscal years)" -msgstr "" - -#. module: account -#: field:account.invoice,move_lines:0 -msgid "Move Lines" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "The opening journal must not have any entry in the new fiscal year !" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_config_wizard -msgid "account.config.wizard" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.report_account_analytic_journal_tree -#: model:ir.ui.menu,name:account.report_account_analytic_journal_print -msgid "Account cost and revenue by journal" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "6" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.next_id_30 -msgid "Bank Reconciliation" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_account_template -msgid "Templates for Accounts" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_analytic_account_form -#: model:ir.model,name:account.model_account_analytic_account -#: model:ir.ui.menu,name:account.account_analytic_def_account -msgid "Analytic Accounts" -msgstr "" - -#. module: account -#: wizard_view:account.print.journal.report,init:0 -#: model:ir.actions.wizard,name:account.wizard_print_journal -#: model:ir.ui.menu,name:account.menu_print_journal -msgid "Print Journal" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_bank_accounts_wizard -msgid "account.bank.accounts.wizard" -msgstr "" - -#. module: account -#: field:account.move.line,date_created:0 -#: field:account.move.reconcile,create_date:0 -msgid "Creation date" -msgstr "" - -#. module: account -#: wizard_button:account.invoice.refund,init,cancel_invoice:0 -msgid "Cancel Invoice" -msgstr "" - -#. module: account -#: field:account.journal.column,required:0 -msgid "Required" -msgstr "" - -#. module: account -#: field:product.category,property_account_expense_categ:0 -#: field:product.template,property_account_expense:0 -msgid "Expense Account" -msgstr "" - -#. module: account -#: wizard_field:account.move.line.reconcile,addendum,journal_id:0 -msgid "Write-Off Journal" -msgstr "" - -#. module: account -#: field:account.model.line,amount_currency:0 -#: field:account.move.line,amount_currency:0 -msgid "Amount Currency" -msgstr "" - -#. module: account -#: field:account.chart.template,property_account_expense_categ:0 -msgid "Expense Category Account" -msgstr "" - -#. module: account -#: wizard_field:account.fiscalyear.close,init,fy2_id:0 -msgid "New Fiscal Year" -msgstr "" - -#. module: account -#: help:account.tax,tax_group:0 -msgid "If a default tax is given in the partner it only overrides taxes from accounts (or products) in the same group." -msgstr "" - -#. module: account -#: wizard_field:account.open_closed_fiscalyear,init,fyear_id:0 -msgid "Fiscal Year to Open" -msgstr "" - -#. module: account -#: view:account.config.wizard:0 -msgid "Select Chart of Accounts" -msgstr "" - -#. module: account -#: field:account.analytic.account,quantity:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -#: field:account.analytic.line,unit_amount:0 -#: rml:account.invoice:0 -#: field:account.invoice.line,quantity:0 -#: field:account.model.line,quantity:0 -#: field:account.move.line,quantity:0 -msgid "Quantity" -msgstr "" - -#. module: account -#: rml:account.general.journal:0 -msgid "Printing Date :" -msgstr "" - -#. module: account -#: wizard_field:account.account.balance.report,checktype,date_to:0 -#: wizard_field:account.general.ledger.report,checktype,date_to:0 -#: wizard_field:account.partner.balance.report,init,date2:0 -#: wizard_field:account.third_party_ledger.report,init,date2:0 -msgid "End date" -msgstr "" - -#. module: account -#: field:account.invoice.tax,base_amount:0 -msgid "Base Code Amount" -msgstr "" - -#. module: account -#: help:account.journal,user_id:0 -msgid "The user responsible for this journal" -msgstr "" - -#. module: account -#: field:account.journal,default_debit_account_id:0 -msgid "Default Debit Account" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_bank_statement_tree -#: model:ir.ui.menu,name:account.menu_bank_statement_tree -msgid "Entries by Statements" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_analyticinvoice0 -msgid "analytic Invoice" -msgstr "" - -#. module: account -#: wizard_field:account.automatic.reconcile,init,period_id:0 -#: field:account.bank.statement,period_id:0 -#: wizard_field:account.central.journal.report,init,period_id:0 -#: view:account.fiscalyear:0 -#: rml:account.general.journal:0 -#: wizard_field:account.general.journal.report,init,period_id:0 -#: wizard_field:account.invoice.pay,init,period_id:0 -#: field:account.journal.period,period_id:0 -#: field:account.move,period_id:0 -#: wizard_field:account.move.journal,init,period_id:0 -#: field:account.move.line,period_id:0 -#: wizard_field:account.move.validate,init,period_id:0 -#: view:account.period:0 -#: wizard_field:account.print.journal.report,init,period_id:0 -#: field:account.subscription,period_nbr:0 -msgid "Period" -msgstr "" - -#. module: account -#: rml:account.partner.balance:0 -msgid "Grand total" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_accounting -msgid "Financial Accounting" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Net Total:" -msgstr "" - -#. module: account -#: view:account.fiscal.position:0 -#: field:account.fiscal.position,name:0 -#: field:account.fiscal.position.account,position_id:0 -#: field:account.fiscal.position.account.template,position_id:0 -#: field:account.fiscal.position.tax,position_id:0 -#: field:account.fiscal.position.tax.template,position_id:0 -#: view:account.fiscal.position.template:0 -#: field:account.invoice,fiscal_position:0 -#: model:ir.model,name:account.model_account_fiscal_position -#: field:res.partner,property_account_position:0 -msgid "Fiscal Position" -msgstr "" - -#. module: account -#: field:account.analytic.line,product_uom_id:0 -#: field:account.move.line,product_uom_id:0 -msgid "UoM" -msgstr "" - -#. module: account -#: wizard_field:account.third_party_ledger.report,init,page_split:0 -msgid "One Partner Per Page" -msgstr "" - -#. module: account -#: field:account.account,child_parent_ids:0 -#: field:account.account.template,child_parent_ids:0 -msgid "Children" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_fiscal_position_tax -msgid "Fiscal Position Taxes Mapping" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree2_new -#: model:ir.ui.menu,name:account.menu_action_invoice_tree2_new -msgid "New Supplier Invoice" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_automatic_reconcile.py:0 -#, python-format -msgid "You must select accounts to reconcile" -msgstr "" - -#. module: account -#: wizard_field:account.invoice.pay,init,amount:0 -msgid "Amount paid" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_general_journal -#: model:ir.ui.menu,name:account.menu_general_journal -msgid "Print General journal" -msgstr "" - -#. module: account -#: selection:account.invoice,type:0 -#: model:process.transition,name:account.process_transition_customerinvoice0 -#: model:process.transition,name:account.process_transition_suppliercustomerinvoice0 -msgid "Customer Invoice" -msgstr "" - -#. module: account -#: wizard_view:account.open_closed_fiscalyear,init:0 -msgid "Choose Fiscal Year" -msgstr "" - -#. module: account -#: field:account.sequence.fiscalyear,sequence_main_id:0 -msgid "Main Sequence" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_analytic_journal_tree -#: model:ir.ui.menu,name:account.account_analytic_journal_print -msgid "Print Analytic Journals" -msgstr "" - -#. module: account -#: help:account.payment.term.line,sequence:0 -msgid "The sequence field is used to order the payment term lines from the lowest sequences to the higher ones" -msgstr "" - -#. module: account -#: field:account.bank.statement.reconcile,total_new:0 -msgid "Total write-off" -msgstr "" - -#. module: account -#: view:account.tax.template:0 -msgid "Compute Code for Taxes included prices" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not validate a non-balanced entry !" -msgstr "" - -#. module: account -#: view:account.invoice.tax:0 -#: model:ir.actions.act_window,name:account.action_tax_code_list -#: model:ir.ui.menu,name:account.menu_action_tax_code_list -msgid "Tax codes" -msgstr "" - -#. module: account -#: field:account.fiscal.position.template,chart_template_id:0 -#: field:account.tax.template,chart_template_id:0 -#: field:wizard.multi.charts.accounts,chart_template_id:0 -msgid "Chart Template" -msgstr "" - -#. module: account -#: field:account.chart.template,property_account_income_categ:0 -msgid "Income Category Account" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.analytic_account_form -#: model:ir.ui.menu,name:account.account_analytic_form -msgid "New Analytic Account" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form -#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template -msgid "Fiscal Position Templates" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -#: field:account.invoice.line,price_unit:0 -msgid "Unit Price" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.action_move_journal_line_form_select -msgid "Standard entry" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_wizard_multi_charts_accounts -msgid "wizard.multi.charts.accounts" -msgstr "" - -#. module: account -#: field:account.move.line,tax_amount:0 -msgid "Tax/Base Amount" -msgstr "" - -#. module: account -#: view:account.fiscal.position.template:0 -#: field:account.fiscal.position.template,name:0 -msgid "Fiscal Position Template" -msgstr "" - -#. module: account -#: field:account.payment.term,line_ids:0 -msgid "Terms" -msgstr "" - -#. module: account -#: rml:account.vat.declaration:0 -msgid "Tax Report" -msgstr "" - -#. module: account -#: wizard_button:account.chart,init,open:0 -msgid "Open Charts" -msgstr "" - -#. module: account -#: wizard_view:account.fiscalyear.close.state,init:0 -msgid "Are you sure you want to close the fiscal year ?" -msgstr "" - -#. module: account -#: selection:account.move,type:0 -msgid "Bank Receipt" -msgstr "" - -#. module: account -#: view:res.partner:0 -msgid "Bank account" -msgstr "" - -#. module: account -#: field:account.chart.template,tax_template_ids:0 -msgid "Tax Template List" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_invoiceimport0 -msgid "Invoice import" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Tel. :" -msgstr "" - -#. module: account -#: help:account.account,currency_mode:0 -msgid "This will select how the current currency rate for outgoing transactions is computed. In most countries the legal method is \"average\" but only a few software systems are able to manage this. So if you import from another software system you may have to use the rate at date. Incoming transactions always use the rate at date." -msgstr "" - -#. module: account -#: field:account.account,company_currency_id:0 -msgid "Company Currency" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_fiscal_position_account_template -msgid "Fiscal Position Template Account Mapping" -msgstr "" - -#. module: account -#: field:account.analytic.account,parent_id:0 -msgid "Parent Analytic Account" -msgstr "" - -#. module: account -#: wizard_button:account.move.line.reconcile,init_partial,addendum:0 -msgid "Reconcile With Write-Off" -msgstr "" - -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "The expected balance (%.2f) is different than the computed one. (%.2f)" -msgstr "" - -#. module: account -#: help:wizard.multi.charts.accounts,code_digits:0 -msgid "No. of Digits to use for account code" -msgstr "" - -#. module: account -#: field:account.bank.statement,balance_end_real:0 -msgid "Ending Balance" -msgstr "" - -#. module: account -#: view:product.product:0 -msgid "Purchase Taxes" -msgstr "" - -#. module: account -#: field:account.payment.term.line,name:0 -msgid "Line Name" -msgstr "" - -#. module: account -#: selection:account.payment.term.line,value:0 -msgid "Fixed Amount" -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -msgid "Analytic Credit" -msgstr "" - -#. module: account -#: field:account.move.line,reconcile_partial_id:0 -#: wizard_button:account.move.line.reconcile,init_partial,partial:0 -msgid "Partial Reconcile" -msgstr "" - -#. module: account -#: wizard_field:account.automatic.reconcile,reconcile,unreconciled:0 -msgid "Not reconciled transactions" -msgstr "" - -#. module: account -#: view:account.fiscal.position:0 -#: field:account.fiscal.position,tax_ids:0 -#: field:account.fiscal.position.template,tax_ids:0 -msgid "Tax Mapping" -msgstr "" - -#. module: account -#: view:account.config.wizard:0 -msgid "Continue" -msgstr "" - -#. module: account -#: field:account.payment.term.line,value:0 -msgid "Value" -msgstr "" - -#. module: account -#: wizard_field:account.invoice.pay,addendum,writeoff_acc_id:0 -#: wizard_field:account.move.line.reconcile,addendum,writeoff_acc_id:0 -msgid "Write-Off account" -msgstr "" - -#. module: account -#: field:account.model.line,model_id:0 -#: field:account.subscription,model_id:0 -msgid "Model" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_fiscalyear_close_state -#: model:ir.ui.menu,name:account.menu_wizard_fy_close_state -msgid "Close a Fiscal Year" -msgstr "" - -#. module: account -#: field:account.journal,centralisation:0 -msgid "Centralised counterpart" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_supplierpaymentorder0 -msgid "Select invoices you want to pay and manages advances" -msgstr "" - -#. module: account -#: selection:account.account,type:0 -#: selection:account.account.template,type:0 -#: model:account.account.type,name:account.account_type_root -#: selection:account.analytic.account,type:0 -#: field:account.journal,view_id:0 -msgid "View" -msgstr "" - -#. module: account -#: selection:account.account.balance.report,checktype,display_account:0 -#: selection:account.general.ledger.report,checktype,display_account:0 -#: selection:account.tax,type_tax_use:0 -msgid "All" -msgstr "" - -#. module: account -#: field:account.move.line,analytic_lines:0 -#: model:ir.model,name:account.model_account_analytic_line -msgid "Analytic lines" -msgstr "" - -#. module: account -#: help:account.move.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency if it is a multi-currency entry." -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You can not do this modification on a confirmed entry ! Please note that you can just change some non important fields !" -msgstr "" - -#. module: account -#: wizard_view:account.move.line.unreconcile,init:0 -#: wizard_view:account.reconcile.unreconcile,init:0 -msgid "If you unreconciliate transactions, you must also verify all the actions that are linked to those transactions because they will not be disable" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_electronicfile0 -msgid "Electronic File" -msgstr "" - -#. module: account -#: view:res.partner:0 -msgid "Customer Credit" -msgstr "" - -#. module: account -#: field:account.invoice,tax_line:0 -msgid "Tax Lines" -msgstr "" - -#. module: account -#: field:ir.sequence,fiscal_ids:0 -msgid "Sequences" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_type_form -#: model:ir.ui.menu,name:account.menu_action_account_type_form -msgid "Account Types" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Cannot create invoice move on centralised journal" -msgstr "" - -#. module: account -#: wizard_field:account.automatic.reconcile,init,journal_id:0 -#: field:account.bank.statement,journal_id:0 -#: wizard_field:account.central.journal.report,init,journal_id:0 -#: wizard_field:account.general.journal.report,init,journal_id:0 -#: field:account.invoice,journal_id:0 -#: field:account.journal.period,journal_id:0 -#: field:account.model,journal_id:0 -#: field:account.move,journal_id:0 -#: wizard_field:account.move.bank.reconcile,init,journal_id:0 -#: wizard_field:account.move.journal,init,journal_id:0 -#: field:account.move.line,journal_id:0 -#: wizard_field:account.move.validate,init,journal_id:0 -#: wizard_field:account.print.journal.report,init,journal_id:0 -#: field:fiscalyear.seq,journal_id:0 -#: model:ir.actions.report.xml,name:account.account_journal -#: model:ir.model,name:account.model_account_journal -#: wizard_field:populate_statement_from_inv,init,journal_id:0 -#: field:report.hr.timesheet.invoice.journal,journal_id:0 -msgid "Journal" -msgstr "" - -#. module: account -#: field:account.account,child_id:0 -#: field:account.analytic.account,child_ids:0 -msgid "Child Accounts" -msgstr "" - -#. module: account -#: field:account.account,check_history:0 -msgid "Display History" -msgstr "" - -#. module: account -#: wizard_field:account.third_party_ledger.report,init,date1:0 -msgid " Start date" -msgstr "" - -#. module: account -#: wizard_field:account.account.balance.report,checktype,display_account:0 -#: wizard_field:account.general.ledger.report,checktype,display_account:0 -msgid "Display accounts " -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_bank_statement_reconcile_line -msgid "Statement reconcile line" -msgstr "" - -#. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Keep empty to use the income account" -msgstr "" - -#. module: account -#: view:account.bank.statement.reconcile:0 -#: field:account.bank.statement.reconcile,line_new_ids:0 -#: wizard_view:account.move.line.reconcile,init_full:0 -#: wizard_view:account.move.line.reconcile,init_partial:0 -msgid "Write-Off" -msgstr "" - -#. module: account -#: wizard_field:account.general.ledger.report,checktype,amount_currency:0 -msgid "With Currency" -msgstr "" - -#. module: account -#: field:res.partner,debit:0 -msgid "Total Payable" -msgstr "" - -#. module: account -#: wizard_button:account.fiscalyear.close.state,init,close:0 -msgid "Close states" -msgstr "" - -#. module: account -#: wizard_view:account_use_models,create:0 -msgid "Use Model" -msgstr "" - -#. module: account -#: rml:account.partner.balance:0 -#: rml:account.vat.declaration:0 -msgid "Crédit" -msgstr "" - -#. module: account -#: model:account.account.type,name:account.account_type_income -msgid "Income" -msgstr "" - -#. module: account -#: selection:account.bank.statement.line,type:0 -msgid "Supplier" -msgstr "" - -#. module: account -#: field:account.invoice.tax,tax_amount:0 -msgid "Tax Code Amount" -msgstr "" - -#. module: account -#: selection:account.account.type,sign:0 -msgid "Positive" -msgstr "" - -#. module: account -#: wizard_view:account.general.journal.report,init:0 -msgid "Print General Journal" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_chart_template_form -#: model:ir.ui.menu,name:account.menu_action_account_chart_template_form -msgid "Chart of Accounts Templates" -msgstr "" - -#. module: account -#: field:account.invoice,move_id:0 -msgid "Invoice Movement" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_wizard_multi_chart -#: model:ir.ui.menu,name:account.menu_wizard -#: view:wizard.multi.charts.accounts:0 -msgid "Generate Chart of Accounts from a Chart Template" -msgstr "" - -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "The statement balance is incorrect !\n" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_legal_statement -msgid "Legal Statements" -msgstr "" - -#. module: account -#: field:account.tax.code,parent_id:0 -#: field:account.tax.code.template,parent_id:0 -msgid "Parent Code" -msgstr "" - -#. module: account -#: wizard_button:account.move.line.reconcile.select,init,open:0 -msgid "Open for reconciliation" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "Purchase Journal" -msgstr "" - -#. module: account -#: selection:account.tax,tax_group:0 -#: selection:account.tax.template,tax_group:0 -msgid "VAT" -msgstr "" - -#. module: account -#: rml:account.analytic.account.journal:0 -msgid "Account n°" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Free Reference" -msgstr "" - -#. module: account -#: wizard_field:account.automatic.reconcile,init,account_ids:0 -msgid "Account to reconcile" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -#: field:account.model.line,partner_id:0 -#: field:account.move.line,partner_id:0 -msgid "Partner Ref." -msgstr "" - -#. module: account -#: selection:account.partner.balance.report,init,result_selection:0 -#: selection:account.third_party_ledger.report,init,result_selection:0 -msgid "Receivable and Payable Accounts" -msgstr "" - -#. module: account -#: view:account.subscription:0 -#: field:account.subscription,lines_id:0 -msgid "Subscription Lines" -msgstr "" - -#. module: account -#: selection:account.analytic.journal,type:0 -#: selection:account.journal,type:0 -#: selection:account.tax,type_tax_use:0 -#: selection:account.tax.template,type_tax_use:0 -msgid "Purchase" -msgstr "" - -#. module: account -#: view:account.analytic.line:0 -msgid "Total quantity" -msgstr "" - -#. module: account -#: field:account.invoice,date_due:0 -msgid "Due Date" -msgstr "" - -#. module: account -#: wizard_view:account.period.close,init:0 -#: wizard_button:account.period.close,init,close:0 -msgid "Close Period" -msgstr "" - -#. module: account -#: selection:account.account.type,close_method:0 -msgid "Detail" -msgstr "" - -#. module: account -#: rml:account.journal.period.print:0 -msgid "Third party" -msgstr "" - -#. module: account -#: view:account.journal:0 -msgid "Accounts Type Allowed (empty for no control)" -msgstr "" - -#. module: account -#: field:account.bank.statement,balance_start:0 -msgid "Starting Balance" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "No Partner Defined !" -msgstr "" - -#. module: account -#: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,journal:0 -#: view:account.journal.period:0 -#: model:ir.actions.act_window,name:account.action_account_journal_period_tree -#: model:ir.ui.menu,name:account.menu_action_account_journal_period_tree -msgid "Journals" -msgstr "" - -#. module: account -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Max Qty:" -msgstr "" - -#. module: account -#: wizard_button:account.invoice.refund,init,refund:0 -msgid "Refund Invoice" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_period_tree -#: model:ir.actions.wizard,name:account.wizard_period_close -#: model:ir.ui.menu,name:account.menu_action_account_period_close_tree -msgid "Close a Period" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_acc_analytic_acc_2_report_hr_timesheet_invoice_journal -msgid "Costs & Revenues" -msgstr "" - -#. module: account -#: constraint:account.account:0 -msgid "Error ! You can not create recursive accounts." -msgstr "" - -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Account Number" -msgstr "" - -#. module: account -#: view:account.config.wizard:0 -msgid "Skip" -msgstr "" - -#. module: account -#: field:account.invoice,period_id:0 -msgid "Force Period" -msgstr "" - -#. module: account -#: help:account.account.type,sequence:0 -msgid "Gives the sequence order when displaying a list of account types." -msgstr "" - -#. module: account -#: view:account.invoice:0 -msgid "Re-Open" -msgstr "" - -#. module: account -#: wizard_view:account.fiscalyear.close,init:0 -msgid "Are you sure you want to create entries?" -msgstr "" - -#. module: account -#: field:account.tax,include_base_amount:0 -msgid "Include in base amount" -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -msgid "Delta Credit" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_reconcile_unreconcile -#: model:ir.actions.wizard,name:account.wizard_unreconcile -msgid "Unreconcile Entries" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_supplierdraftinvoices0 -msgid "Pre-generated invoice from control" -msgstr "" - -#. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "Cost Legder for period" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_bank_statement_tree2 -#: model:ir.ui.menu,name:account.menu_bank_statement_tree2 -msgid "New Statement" -msgstr "" - -#. module: account -#: wizard_field:account.analytic.line,init,from_date:0 -msgid "From" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_reconciliation0 -#: model:process.node,note:account.process_node_supplierreconciliation0 -msgid "Reconciliation of entries from invoice(s) and payment(s)" -msgstr "" - -#. module: account -#: wizard_view:account.central.journal.report,init:0 -msgid "Print Central Journal" -msgstr "" - -#. module: account -#: wizard_field:account.aged.trial.balance,init,period_length:0 -msgid "Period length (days)" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -#: field:account.invoice,amount_tax:0 -#: field:account.move.line,account_tax_id:0 -msgid "Tax" -msgstr "" - -#. module: account -#: selection:account.payment.term.line,value:0 -#: selection:account.tax,type:0 -#: selection:account.tax.template,type:0 -msgid "Percent" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_charts -msgid "Charts" -msgstr "" - -#. module: account -#: selection:account.analytic.journal,type:0 -#: selection:account.journal,type:0 -#: selection:account.tax,type_tax_use:0 -#: selection:account.tax.template,type_tax_use:0 -msgid "Sale" -msgstr "" - -#. module: account -#: wizard_button:account.account.balance.report,account_selection,checktype:0 -#: wizard_button:account.general.ledger.report,account_selection,checktype:0 -msgid "Next" -msgstr "" - -#. module: account -#: help:res.partner,property_account_position:0 -msgid "The fiscal position will determine taxes and the accounts used for the the partner." -msgstr "" - -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -msgid "Date or Code" -msgstr "" - -#. module: account -#: field:account.analytic.account,user_id:0 -msgid "Account Manager" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Entries are not of the same account or already reconciled ! " -msgstr "" - -#. module: account -#: wizard_field:account.move.line.reconcile,init_full,debit:0 -#: wizard_field:account.move.line.reconcile,init_partial,debit:0 -msgid "Debit amount" -msgstr "" - -#. module: account -#: selection:account.subscription,period_type:0 -msgid "year" -msgstr "" - -#. module: account -#: wizard_button:account.account.balance.report,checktype,report:0 -#: wizard_button:account.analytic.account.analytic.check.report,init,report:0 -#: wizard_button:account.analytic.account.balance.report,init,report:0 -#: wizard_button:account.analytic.account.cost_ledger.report,init,report:0 -#: wizard_button:account.analytic.account.inverted.balance.report,init,report:0 -#: wizard_button:account.analytic.account.journal.report,init,report:0 -#: wizard_button:account.analytic.account.quantity_cost_ledger.report,init,report:0 -#: wizard_button:account.central.journal.report,init,print:0 -#: wizard_button:account.general.journal.report,init,print:0 -#: wizard_button:account.general.ledger.report,checktype,checkreport:0 -#: wizard_button:account.partner.balance.report,init,report:0 -#: wizard_button:account.print.journal.report,init,print:0 -#: wizard_button:account.third_party_ledger.report,init,report:0 -msgid "Print" -msgstr "" - -#. module: account -#: wizard_field:account.account.balance.report,checktype,date_from:0 -msgid "Start date" -msgstr "" - -#. module: account -#: model:account.journal,name:account.refund_expenses_journal -msgid "x Expenses Credit Notes Journal" -msgstr "" - -#. module: account -#: field:account.analytic.journal,type:0 -#: field:account.bank.statement.line,type:0 -#: field:account.invoice,type:0 -#: field:account.journal,type:0 -#: field:account.move,type:0 -#: field:account.move.reconcile,type:0 -#: xsl:account.transfer:0 -msgid "Type" -msgstr "" - -#. module: account -#: view:account.journal:0 -msgid "Accounts Allowed (empty for no control)" -msgstr "" - -#. module: account -#: view:account.invoice:0 -msgid "Untaxed amount" -msgstr "" - -#. module: account -#: field:account.tax,account_collected_id:0 -#: field:account.tax.template,account_collected_id:0 -msgid "Invoice Tax Account" -msgstr "" - -#. module: account -#: view:account.move.line:0 -msgid "Analytic Lines" -msgstr "" - -#. module: account -#: wizard_view:account.invoice.pay,init:0 -#: model:ir.actions.wizard,name:account.wizard_invoice_pay -msgid "Pay invoice" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree5 -#: model:ir.ui.menu,name:account.menu_invoice_draft -msgid "Draft Customer Invoices" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_subscription_line -msgid "Account Subscription Line" -msgstr "" - -#. module: account -#: selection:account.account.balance.report,checktype,state:0 -#: selection:account.general.ledger.report,checktype,state:0 -#: selection:account.partner.balance.report,init,state:0 -#: selection:account.third_party_ledger.report,init,state:0 -msgid "No Filter" -msgstr "" - -#. module: account -#: field:account.payment.term.line,days:0 -msgid "Number of Days" -msgstr "" - -#. module: account -#: help:account.invoice,reference:0 -msgid "The partner reference of this invoice." -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Cannot delete invoice(s) that are already opened or paid !" -msgstr "" - -#. module: account -#: wizard_field:account.general.ledger.report,checktype,sortbydate:0 -msgid "Sort by:" -msgstr "" - -#. module: account -#: field:account.move,to_check:0 -msgid "To Be Verified" -msgstr "" - -#. module: account -#: help:res.partner,debit:0 -msgid "Total amount you have to pay to this supplier." -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "7" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_transfers -msgid "Transfers" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Li." -msgstr "" - -#. module: account -#: wizard_view:account.chart,init:0 -msgid "Account charts" -msgstr "" - -#. module: account -#: help:account.tax,name:0 -msgid "This name will be displayed on reports" -msgstr "" - -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Printing date" -msgstr "" - -#. module: account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account -#: wizard_field:account.partner.balance.report,init,date1:0 -msgid " Start date" -msgstr "" - -#. module: account -#: wizard_view:account.analytic.account.journal.report,init:0 -msgid "Analytic Journal Report" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree3 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree3 -msgid "Customer Refunds" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "No sequence defined in the journal !" -msgstr "" - -#. module: account -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "J.C./Move name" -msgstr "" - -#. module: account -#: field:account.journal.period,name:0 -msgid "Journal-Period Name" -msgstr "" - -#. module: account -#: field:account.tax.code,name:0 -#: field:account.tax.code.template,name:0 -msgid "Tax Case Name" -msgstr "" - -#. module: account -#: help:account.journal,entry_posted:0 -msgid "Check this box if you don't want new account moves to pass through the 'draft' state and instead goes directly to the 'posted state' without any manual validation." -msgstr "" - -#. module: account -#: field:account.bank.statement.line,partner_id:0 -#: field:account.bank.statement.reconcile,partner_id:0 -#: rml:account.general.ledger:0 -#: field:account.invoice,partner_id:0 -#: field:account.move,partner_id:0 -#: wizard_field:account.partner.balance.report,init,result_selection:0 -#: wizard_field:account.third_party_ledger.report,init,result_selection:0 -msgid "Partner" -msgstr "" - -#. module: account -#: help:account.invoice,number:0 -msgid "Unique number of the invoice, computed automatically when the invoice is created." -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Draft Invoice" -msgstr "" - -#. module: account -#: model:account.account.type,name:account.account_type_expense -msgid "Expense" -msgstr "" - -#. module: account -#: field:account.journal,invoice_sequence_id:0 -msgid "Invoice Sequence" -msgstr "" - -#. module: account -#: wizard_view:account.automatic.reconcile,init:0 -msgid "Options" -msgstr "" - -#. module: account -#: help:account.model.line,amount_currency:0 -msgid "The amount expressed in an optionnal other currency." -msgstr "" - -#. module: account -#: model:process.process,name:account.process_process_invoiceprocess0 -msgid "Customer Invoice Process" -msgstr "" - -#. module: account -#: wizard_field:account.fiscalyear.close,init,period_id:0 -msgid "Opening Entries Period" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_validate_account_moves -#: model:ir.actions.wizard,name:account.wizard_validate_account_moves_line -#: model:ir.ui.menu,name:account.menu_validate_account_moves -msgid "Validate Account Moves" -msgstr "" - -#. module: account -#: selection:account.subscription,period_type:0 -msgid "days" -msgstr "" - -#. module: account -#: selection:account.aged.trial.balance,init,direction_selection:0 -msgid "Past" -msgstr "" - -#. module: account -#: field:account.analytic.account,company_currency_id:0 -#: field:account.bank.accounts.wizard,currency_id:0 -#: field:account.bank.statement,currency:0 -#: field:account.bank.statement.reconcile,total_currency:0 -#: field:account.bank.statement.reconcile,total_second_currency:0 -#: rml:account.general.ledger:0 -#: field:account.invoice,currency_id:0 -#: field:account.journal,currency:0 -#: field:account.model.line,currency_id:0 -#: field:account.move.line,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened -msgid "Unpaid invoices" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_paymentreconcile0 -msgid "Payment Reconcile" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_bank_statement_reconciliation_form -#: model:ir.ui.menu,name:account.menu_action_account_bank_reconcile_tree -msgid "Statements reconciliation" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_subscription_form_new -#: model:ir.ui.menu,name:account.menu_action_subscription_form_new -msgid "New Subscription" -msgstr "" - -#. module: account -#: view:account.payment.term:0 -msgid "Computation" -msgstr "" - -#. module: account -#: view:account.analytic.line:0 -msgid "Analytic Entry" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_accountingentries0 -#: model:process.node,note:account.process_node_supplieraccountingentries0 -msgid "Validated accounting entries." -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_tax_code_tree -#: model:ir.ui.menu,name:account.menu_action_tax_code_tree -msgid "Chart of Taxes" -msgstr "" - -#. module: account -#: field:account.payment.term.line,value_amount:0 -msgid "Value Amount" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open -msgid "Reconciled entries" -msgstr "" - -#. module: account -#: field:account.invoice,address_contact_id:0 -msgid "Contact Address" -msgstr "" - -#. module: account -#: view:account.fiscalyear:0 -msgid "Create 3 Months Periods" -msgstr "" - -#. module: account -#: view:account.invoice:0 -msgid "(keep empty to use the current period)" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree8 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree8 -msgid "Draft Supplier Invoices" -msgstr "" - -#. module: account -#: wizard_field:account.invoice.refund,init,period:0 -msgid "Force period" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Due" -msgstr "" - -#. module: account -#: selection:account.account,type:0 -#: selection:account.account.template,type:0 -msgid "Consolidation" -msgstr "" - -#. module: account -#: field:account.chart.template,account_root_id:0 -msgid "Root Account" -msgstr "" - -#. module: account -#: help:account.model.line,sequence:0 -msgid "The sequence field is used to order the resources from lower sequences to higher ones" -msgstr "" - -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "Configration Error !" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Exception made of a mistake of our side, it seems that the following bills stay unpaid. Please, take appropriate measures in order to carry out this payment in the next 8 days." -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "VAT :" -msgstr "" - -#. module: account -#: rml:account.partner.balance:0 -#: rml:account.vat.declaration:0 -msgid "Débit" -msgstr "" - -#. module: account -#: wizard_field:account.general.ledger.report,account_selection,Account_list:0 -#: model:ir.actions.act_window,name:account.action_account_tree -#: model:ir.actions.wizard,name:account.wizard_account_chart -#: model:ir.ui.menu,name:account.menu_action_account_tree -#: model:ir.ui.menu,name:account.menu_action_account_tree2 -msgid "Chart of Accounts" -msgstr "" - -#. module: account -#: model:account.journal,name:account.check_journal -msgid "x Checks Journal" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_pay_invoice.py:0 -#, python-format -msgid "Your journal must have a default credit and debit account." -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Sub-Total:" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_generate_subscription -#: model:ir.ui.menu,name:account.menu_generate_subscription -msgid "Create subscription entries" -msgstr "" - -#. module: account -#: wizard_field:account.fiscalyear.close,init,journal_id:0 -msgid "Opening Entries Journal" -msgstr "" - -#. module: account -#: view:account.config.wizard:0 -msgid "Create a Fiscal Year" -msgstr "" - -#. module: account -#: field:product.template,taxes_id:0 -msgid "Customer Taxes" -msgstr "" - -#. module: account -#: field:account.invoice,date_invoice:0 -msgid "Date Invoiced" -msgstr "" - -#. module: account -#: help:account.account.balance.report,checktype,periods:0 -#: help:account.general.ledger.report,checktype,periods:0 -#: help:account.partner.balance.report,init,periods:0 -#: help:account.third_party_ledger.report,init,periods:0 -#: help:account.vat.declaration,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account -#: model:account.account.type,name:account.account_type_liability -msgid "Liability" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "2" -msgstr "" - -#. module: account -#: wizard_view:account.chart,init:0 -msgid "(If you do not select Fiscal year it will take all open fiscal years)" -msgstr "" - -#. module: account -#: help:account.invoice.tax,base_code_id:0 -msgid "The account basis of the tax declaration." -msgstr "" - -#. module: account -#: rml:account.analytic.account.journal:0 -#: field:account.analytic.line,date:0 -#: field:account.bank.statement,date:0 -#: field:account.bank.statement.line,date:0 -#: field:account.bank.statement.reconcile,name:0 -#: rml:account.general.ledger:0 -#: selection:account.general.ledger.report,checktype,sortbydate:0 -#: rml:account.journal.period.print:0 -#: field:account.move,date:0 -#: rml:account.overdue:0 -#: wizard_field:account.subscription.generate,init,date:0 -#: field:account.subscription.line,date:0 -#: rml:account.tax.code.entries:0 -#: rml:account.third_party_ledger:0 -#: xsl:account.transfer:0 -msgid "Date" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "No period defined for this date !\nPlease create a fiscal year." -msgstr "" - -#. module: account -#: field:account.invoice,reference_type:0 -msgid "Reference Type" -msgstr "" - -#. module: account -#: wizard_button:account.move.line.unreconcile,init,unrec:0 -#: wizard_button:account.reconcile.unreconcile,init,unrec:0 -msgid "Unreconcile" -msgstr "" - -#. module: account -#: field:account.tax,type:0 -#: field:account.tax.template,type:0 -msgid "Tax Type" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_statemententries0 -msgid "Statement Entries" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "The journal must have default credit and debit account" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_template_form -#: model:ir.ui.menu,name:account.menu_action_account_template_form -msgid "Account Templates" -msgstr "" - -#. module: account -#: view:account.chart.template:0 -msgid "Chart of Accounts Template" -msgstr "" - -#. module: account -#: rml:account.journal.period.print:0 -msgid "Voucher No" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_automatic_reconcile -#: model:ir.ui.menu,name:account.menu_automatic_reconcile -msgid "Automatic reconciliation" -msgstr "" - -#. module: account -#: view:account.bank.statement:0 -msgid "Import Invoice" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Some entries are already reconciled !" -msgstr "" - -#. module: account -#: field:account.journal,refund_journal:0 -msgid "Refund Journal" -msgstr "" - -#. module: account -#: view:account.tax:0 -msgid "Account Tax" -msgstr "" - -#. module: account -#: field:account.account,shortcut:0 -#: field:account.account.template,shortcut:0 -msgid "Shortcut" -msgstr "" - -#. module: account -#: field:account.bank.accounts.wizard,acc_no:0 -msgid "Account No." -msgstr "" - -#. module: account -#: help:account.tax,child_depend:0 -msgid "Set if the tax computation is based on the computation of child taxes rather than on the total amount." -msgstr "" - -#. module: account -#: help:account.invoice,period_id:0 -msgid "Keep empty to use the period of the validation date." -msgstr "" - -#. module: account -#: rml:account.central.journal:0 -msgid "Journal Code" -msgstr "" - -#. module: account -#: help:account.tax,applicable_type:0 -msgid "If not applicable (computed through a Python code), the tax won't appear on the invoice." -msgstr "" - -#. module: account -#: field:account.model,lines_id:0 -msgid "Model Entries" -msgstr "" - -#. module: account -#: field:account.analytic.account,date:0 -msgid "Date End" -msgstr "" - -#. module: account -#: view:account.bank.statement:0 -#: field:account.move.reconcile,line_id:0 -#: model:ir.actions.act_window,name:account.action_move_line_search -#: model:ir.actions.act_window,name:account.action_move_line_tree1 -#: model:ir.ui.menu,name:account.menu_action_move_line_search -msgid "Entry Lines" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_central_journal -#: model:ir.ui.menu,name:account.menu_central_journal -msgid "Print Central journal" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#: code:addons/account/invoice.py:0 -#, python-format -msgid "No Analytic Journal !" -msgstr "" - -#. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Applicable Code (if type=code)" -msgstr "" - -#. module: account -#: wizard_button:account.move.journal,init,open:0 -msgid "Open Journal" -msgstr "" - -#. module: account -#: selection:account.tax,applicable_type:0 -#: field:account.tax,python_applicable:0 -#: field:account.tax,python_compute:0 -#: selection:account.tax,type:0 -#: selection:account.tax.template,applicable_type:0 -#: field:account.tax.template,python_applicable:0 -#: field:account.tax.template,python_compute:0 -#: selection:account.tax.template,type:0 -msgid "Python Code" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.action_account_analytic_line -#: model:ir.actions.wizard,name:account.action_move_journal_line_form -#: model:ir.ui.menu,name:account.account_entries_analytic_entries -#: model:ir.ui.menu,name:account.menu_action_move_journal_line_form -msgid "Entries Encoding by Line" -msgstr "" - -#. module: account -#: help:account.chart.template,tax_template_ids:0 -msgid "List of all the taxes that have to be installed by the wizard" -msgstr "" - -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Period from" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_bank_statement -#: model:process.node,name:account.process_node_bankstatement0 -#: model:process.node,name:account.process_node_supplierbankstatement0 -msgid "Bank Statement" -msgstr "" - -#. module: account -#: wizard_view:account.invoice.pay,addendum:0 -#: wizard_view:account.move.line.reconcile,addendum:0 -msgid "Information addendum" -msgstr "" - -#. module: account -#: help:account.tax,type:0 -msgid "The computation method for the tax amount." -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_entriesreconcile0 -#: model:process.transition,name:account.process_transition_supplierentriesreconcile0 -msgid "Entries Reconcile" -msgstr "" - -#. module: account -#: wizard_field:account.general.ledger.report,checktype,landscape:0 -msgid "Landscape Mode" -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_analyticinvoice0 -#: model:process.transition,note:account.process_transition_supplieranalyticcost0 -msgid "From analytic accounts, Create invoice." -msgstr "" - -#. module: account -#: wizard_button:account.account.balance.report,account_selection,end:0 -#: wizard_button:account.account.balance.report,checktype,end:0 -#: wizard_button:account.aged.trial.balance,init,end:0 -#: wizard_button:account.analytic.account.analytic.check.report,init,end:0 -#: wizard_button:account.analytic.account.balance.report,init,end:0 -#: wizard_button:account.analytic.account.cost_ledger.report,init,end:0 -#: wizard_button:account.analytic.account.inverted.balance.report,init,end:0 -#: wizard_button:account.analytic.account.journal.report,init,end:0 -#: wizard_button:account.analytic.account.quantity_cost_ledger.report,init,end:0 -#: wizard_button:account.analytic.line,init,end:0 -#: wizard_button:account.automatic.reconcile,init,end:0 -#: view:account.bank.statement:0 -#: wizard_button:account.central.journal.report,init,end:0 -#: wizard_button:account.chart,init,end:0 -#: wizard_button:account.fiscalyear.close,init,end:0 -#: wizard_button:account.fiscalyear.close.state,init,end:0 -#: wizard_button:account.general.journal.report,init,end:0 -#: wizard_button:account.general.ledger.report,account_selection,end:0 -#: wizard_button:account.general.ledger.report,checktype,end:0 -#: view:account.invoice:0 -#: wizard_button:account.invoice.pay,addendum,end:0 -#: wizard_button:account.invoice.pay,init,end:0 -#: wizard_button:account.invoice.refund,init,end:0 -#: view:account.move:0 -#: wizard_button:account.move.bank.reconcile,init,end:0 -#: wizard_button:account.move.journal,init,end:0 -#: wizard_button:account.move.line.reconcile,addendum,end:0 -#: wizard_button:account.move.line.reconcile,init_full,end:0 -#: wizard_button:account.move.line.reconcile,init_partial,end:0 -#: wizard_button:account.move.line.reconcile.select,init,end:0 -#: wizard_button:account.move.line.unreconcile,init,end:0 -#: wizard_button:account.move.line.unreconcile.select,init,end:0 -#: wizard_button:account.move.validate,init,end:0 -#: wizard_button:account.open_closed_fiscalyear,init,end:0 -#: wizard_button:account.partner.balance.report,init,end:0 -#: wizard_button:account.period.close,init,end:0 -#: wizard_button:account.print.journal.report,init,end:0 -#: wizard_button:account.reconcile.unreconcile,init,end:0 -#: wizard_button:account.subscription.generate,init,end:0 -#: wizard_button:account.third_party_ledger.report,init,end:0 -#: wizard_button:account.vat.declaration,init,end:0 -#: wizard_button:account_use_models,init_form,end:0 -#: view:wizard.multi.charts.accounts:0 -msgid "Cancel" -msgstr "" - -#. module: account -#: field:account.account.type,name:0 -msgid "Acc. Type Name" -msgstr "" - -#. module: account -#: help:account.tax,base_code_id:0 -#: help:account.tax,ref_base_code_id:0 -#: help:account.tax,ref_tax_code_id:0 -#: help:account.tax,tax_code_id:0 -#: help:account.tax.template,base_code_id:0 -#: help:account.tax.template,ref_base_code_id:0 -#: help:account.tax.template,ref_tax_code_id:0 -#: help:account.tax.template,tax_code_id:0 -msgid "Use this code for the VAT declaration." -msgstr "" - -#. module: account -#: field:account.move.line,blocked:0 -msgid "Litigation" -msgstr "" - -#. module: account -#: view:account.move.line:0 -#: wizard_view:account.move.validate,init:0 -#: view:account.payment.term:0 -msgid "Information" -msgstr "" - -#. module: account -#: help:account.journal,currency:0 -msgid "The currency used to enter statement" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_tax_report -msgid "Taxes Reports" -msgstr "" - -#. module: account -#: field:res.partner,property_account_payable:0 -msgid "Account Payable" -msgstr "" - -#. module: account -#: wizard_view:populate_statement_from_inv,init:0 -msgid "Import Invoices in Statement" -msgstr "" - -#. module: account -#: view:account.invoice:0 -msgid "Other Info" -msgstr "" - -#. module: account -#: field:account.journal,default_credit_account_id:0 -msgid "Default Credit Account" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_supplierpaymentorder0 -msgid "Payment Order" -msgstr "" - -#. module: account -#: help:account.account.template,reconcile:0 -msgid "Check this option if you want the user to reconcile entries in this account." -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Already Reconciled" -msgstr "" - -#. module: account -#: rml:account.analytic.account.journal:0 -#: model:ir.ui.menu,name:account.next_id_40 -#: model:process.node,name:account.process_node_analytic0 -#: model:process.node,name:account.process_node_analyticcost0 -msgid "Analytic" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_invoiceinvoice0 -msgid "Create Invoice" -msgstr "" - -#. module: account -#: model:account.journal,name:account.refund_sales_journal -msgid "x Sales Credit Note Journal" -msgstr "" - -#. module: account -#: model:account.account.type,name:account.account_type_cash_equity -msgid "Equity" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_tax_code_template -msgid "Tax Code Template" -msgstr "" - -#. module: account -#: rml:account.partner.balance:0 -msgid "In dispute" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Unable to change tax !" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Dear Sir/Madam," -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_generic_report -msgid "Generic Reports" -msgstr "" - -#. module: account -#: wizard_field:account.automatic.reconcile,init,power:0 -msgid "Power" -msgstr "" - -#. module: account -#: wizard_view:account.analytic.line,init:0 -msgid "Account Analytic Lines Analysis" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Price" -msgstr "" - -#. module: account -#: rml:account.analytic.account.journal:0 -#: rml:account.third_party_ledger:0 -msgid "-" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 -#: model:ir.ui.menu,name:account.account_analytic_chart -#: model:ir.ui.menu,name:account.account_analytic_chart_balance -#: model:ir.ui.menu,name:account.account_analytic_def_chart -msgid "Analytic Chart of Accounts" -msgstr "" - -#. module: account -#: wizard_view:account.analytic.line,init:0 -msgid "View Account Analytic Lines" -msgstr "" - -#. module: account -#: wizard_view:account.move.validate,init:0 -msgid "Select Period and Journal for Validation" -msgstr "" - -#. module: account -#: field:account.invoice,number:0 -msgid "Invoice Number" -msgstr "" - -#. module: account -#: field:account.period,date_stop:0 -msgid "End of Period" -msgstr "" - -#. module: account -#: wizard_button:populate_statement_from_inv,go,finish:0 -msgid "O_k" -msgstr "" - -#. module: account -#: field:account.invoice,amount_untaxed:0 -msgid "Untaxed" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance -#: model:ir.actions.wizard,name:account.account_analytic_account_inverted_balance_report -msgid "Inverted Analytic Balance" -msgstr "" - -#. module: account -#: field:account.tax,applicable_type:0 -#: field:account.tax.template,applicable_type:0 -msgid "Applicable Type" -msgstr "" - -#. module: account -#: field:account.invoice,reference:0 -msgid "Invoice Reference" -msgstr "" - -#. module: account -#: field:account.account,name:0 -#: field:account.account.template,name:0 -#: field:account.bank.statement,name:0 -#: field:account.bank.statement.line,name:0 -#: field:account.chart.template,name:0 -#: field:account.config.wizard,name:0 -#: field:account.model.line,name:0 -#: field:account.move.line,name:0 -#: field:account.move.reconcile,name:0 -#: field:account.subscription,name:0 -msgid "Name" -msgstr "" - -#. module: account -#: wizard_view:account.move.line.reconcile,init_full:0 -#: wizard_view:account.move.line.reconcile,init_partial:0 -msgid "Reconciliation transactions" -msgstr "" - -#. module: account -#: wizard_field:account.aged.trial.balance,init,direction_selection:0 -msgid "Analysis Direction" -msgstr "" - -#. module: account -#: wizard_button:populate_statement_from_inv,init,go:0 -msgid "_Go" -msgstr "" - -#. module: account -#: field:res.partner,ref_companies:0 -msgid "Companies that refers to partner" -msgstr "" - -#. module: account -#: field:account.move.line,date:0 -msgid "Effective date" -msgstr "" - -#. module: account -#: help:account.tax.template,sequence:0 -msgid "The sequence field is used to order the taxes lines from lower sequences to higher ones. The order is important if you have a tax that has several tax children. In this case, the evaluation order is important." -msgstr "" - -#. module: account -#: field:account.journal.column,view_id:0 -#: view:account.journal.view:0 -#: field:account.journal.view,name:0 -#: model:ir.model,name:account.model_account_journal_view -msgid "Journal View" -msgstr "" - -#. module: account -#: selection:account.move.line,centralisation:0 -msgid "Credit Centralisation" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Customer Ref:" -msgstr "" - -#. module: account -#: xsl:account.transfer:0 -msgid "Partner ID" -msgstr "" - -#. module: account -#: wizard_view:account.automatic.reconcile,init:0 -#: wizard_view:account.invoice.pay,addendum:0 -#: wizard_view:account.move.line.reconcile,addendum:0 -msgid "Write-Off Move" -msgstr "" - -#. module: account -#: view:account.move.line:0 -msgid "Total credit" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree1_new -#: model:ir.ui.menu,name:account.menu_action_invoice_tree1_new -msgid "New Customer Invoice" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Best regards." -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_report_hr_timesheet_invoice_journal -msgid "Analytic account costs and revenues" -msgstr "" - -#. module: account -#: wizard_view:account.invoice.refund,init:0 -msgid "Are you sure you want to refund this invoice ?" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_paid_open -msgid "Open State" -msgstr "" - -#. module: account -#: field:account.journal,entry_posted:0 -msgid "Skip 'Draft' State for Created Entries" -msgstr "" - -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "The account entries lines are not in valid state." -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_statemententries0 -msgid "From statement, create entries" -msgstr "" - -#. module: account -#: field:account.analytic.account,complete_name:0 -msgid "Full Account Name" -msgstr "" - -#. module: account -#: rml:account.account.balance:0 -#: rml:account.analytic.account.analytic.check:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.analytic.account.journal:0 -#: rml:account.general.ledger:0 -#: rml:account.journal.period.print:0 -#: rml:account.partner.balance:0 -#: rml:account.tax.code.entries:0 -#: rml:account.third_party_ledger:0 -#: rml:account.vat.declaration:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree12 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree12 -msgid "Draft Supplier Refunds" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_accountingstatemententries0 -msgid "Accounting Statement" -msgstr "" - -#. module: account -#: help:product.category,property_account_income_categ:0 -msgid "This account will be used to value incoming stock for the current product category" -msgstr "" - -#. module: account -#: view:product.product:0 -#: view:product.template:0 -#: view:res.partner:0 -msgid "Accounting" -msgstr "" - -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "Unable to reconcile entry \"%s\": %.2f" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Please set an analytic journal on this financial journal !" -msgstr "" - -#. module: account -#: view:account.fiscal.position.template:0 -msgid "Taxes Mapping" -msgstr "" - -#. module: account -#: wizard_view:account.move.line.unreconcile,init:0 -#: wizard_view:account.reconcile.unreconcile,init:0 -msgid "Unreconciliation transactions" -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_paymentorderbank0 -#: model:process.transition,note:account.process_transition_paymentorderreconcilation0 -msgid "Reconcilation of entries from payment order." -msgstr "" - -#. module: account -#: field:account.bank.statement,move_line_ids:0 -#: model:ir.actions.act_window,name:account.act_account_journal_2_account_move_line -#: model:ir.model,name:account.model_account_move_line -msgid "Entry lines" -msgstr "" - -#. module: account -#: wizard_view:account.automatic.reconcile,init:0 -#: wizard_view:account.move.line.reconcile,init_full:0 -#: wizard_view:account.move.line.reconcile,init_partial:0 -#: wizard_view:account.move.line.reconcile.select,init:0 -#: code:addons/account/wizard/wizard_reconcile_select.py:0 -#: model:ir.ui.menu,name:account.next_id_20 -#: model:process.node,name:account.process_node_reconciliation0 -#: model:process.node,name:account.process_node_supplierreconciliation0 -#, python-format -msgid "Reconciliation" -msgstr "" - -#. module: account -#: field:account.move.line,centralisation:0 -msgid "Centralisation" -msgstr "" - -#. module: account -#: field:account.invoice.tax,tax_code_id:0 -#: field:account.tax,description:0 -#: field:account.tax,tax_code_id:0 -#: field:account.tax.template,tax_code_id:0 -#: model:ir.model,name:account.model_account_tax_code -msgid "Tax Code" -msgstr "" - -#. module: account -#: rml:account.analytic.account.journal:0 -msgid "Analytic Journal -" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "EXJ" -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -msgid "Analytic Debit" -msgstr "" - -#. module: account -#: field:account.account,currency_mode:0 -msgid "Outgoing Currencies Rate" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree10 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree10 -msgid "Draft Customer Refunds" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "Sales Journal" -msgstr "" - -#. module: account -#: field:account.journal.column,readonly:0 -msgid "Readonly" -msgstr "" - -#. module: account -#: help:account.model.line,date_maturity:0 -msgid "The maturity date of the generated entries for this model. You can chosse between the date of the creation action or the the date of the creation of the entries plus the partner payment terms." -msgstr "" - -#. module: account -#: selection:account.analytic.journal,type:0 -#: selection:account.journal,type:0 -msgid "Situation" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -#: rml:account.overdue:0 -#: xsl:account.transfer:0 -msgid "Document" -msgstr "" - -#. module: account -#: help:account.move.line,move_id:0 -msgid "The move of this entry line." -msgstr "" - -#. module: account -#: field:account.invoice.line,uos_id:0 -msgid "Unit of Measure" -msgstr "" - -#. module: account -#: rml:account.analytic.account.journal:0 -msgid "Move name" -msgstr "" - -#. module: account -#: help:account.journal,group_invoice_lines:0 -msgid "If this box is checked, the system will try to group the accounting lines when generating them from invoices." -msgstr "" - -#. module: account -#: wizard_field:account.move.line.reconcile,init_full,trans_nbr:0 -#: wizard_field:account.move.line.reconcile,init_partial,trans_nbr:0 -msgid "# of Transaction" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_invoice_state_cancel -msgid "Cancel selected invoices" -msgstr "" - -#. module: account -#: view:account.analytic.journal:0 -#: field:account.analytic.line,journal_id:0 -#: field:account.journal,analytic_journal_id:0 -#: model:ir.actions.report.xml,name:account.analytic_journal_print -#: model:ir.actions.wizard,name:account.account_analytic_account_journal_report -msgid "Analytic Journal" -msgstr "" - -#. module: account -#: rml:account.general.ledger:0 -msgid "Entry Label" -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_paymentreconcile0 -msgid "Reconcilate the entries from payment" -msgstr "" - -#. module: account -#: rml:account.tax.code.entries:0 -msgid "(" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not modify/delete a journal with entries for this period !" -msgstr "" - -#. module: account -#: view:account.invoice:0 -#: view:account.period:0 -#: view:account.subscription:0 -msgid "Set to Draft" -msgstr "" - -#. module: account -#: help:account.invoice,origin:0 -#: help:account.invoice.line,origin:0 -msgid "Reference of the document that produced this invoice." -msgstr "" - -#. module: account -#: selection:account.account,type:0 -#: selection:account.account.template,type:0 -#: selection:account.aged.trial.balance,init,result_selection:0 -msgid "Payable" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -#: field:account.invoice.tax,base:0 -msgid "Base" -msgstr "" - -#. module: account -#: field:account.model,name:0 -msgid "Model Name" -msgstr "" - -#. module: account -#: selection:account.account,type:0 -#: selection:account.account.template,type:0 -msgid "Others" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "8" -msgstr "" - -#. module: account -#: view:account.invoice:0 -#: view:account.move:0 -#: wizard_button:account.move.validate,init,validate:0 -msgid "Validate" -msgstr "" - -#. module: account -#: view:account.model:0 -#: field:account.model,legend:0 -msgid "Legend" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_draftinvoices0 -msgid "Proposed invoice to be checked, validated and printed" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_move_line_select -msgid "account.move.line.select" -msgstr "" - -#. module: account -#: view:account.account:0 -#: rml:account.account.balance:0 -#: wizard_field:account.account.balance.report,account_selection,Account_list:0 -#: wizard_field:account.automatic.reconcile,init,writeoff_acc_id:0 -#: field:account.bank.statement.line,account_id:0 -#: field:account.bank.statement.reconcile.line,account_id:0 -#: field:account.invoice,account_id:0 -#: field:account.invoice.line,account_id:0 -#: field:account.journal,account_control_ids:0 -#: field:account.model.line,account_id:0 -#: field:account.move.line,account_id:0 -#: wizard_field:account.move.line.reconcile.select,init,account_id:0 -#: wizard_field:account.move.line.unreconcile.select,init,account_id:0 -#: model:ir.model,name:account.model_account_account -msgid "Account" -msgstr "" - -#. module: account -#: selection:account.account.balance.report,checktype,state:0 -#: selection:account.general.ledger.report,checktype,state:0 -#: selection:account.partner.balance.report,init,state:0 -#: selection:account.third_party_ledger.report,init,state:0 -msgid "By Date and Period" -msgstr "" - -#. module: account -#: view:account.account:0 -#: view:account.account.template:0 -#: view:account.bank.statement:0 -#: field:account.bank.statement.line,note:0 -#: view:account.invoice.line:0 -#: field:account.invoice.line,note:0 -msgid "Notes" -msgstr "" - -#. module: account -#: help:account.invoice,reconciled:0 -msgid "The account moves of the invoice have been reconciled with account moves of the payment(s)." -msgstr "" - -#. module: account -#: rml:account.invoice:0 -#: view:account.invoice:0 -#: field:account.invoice.line,invoice_line_tax_id:0 -#: model:ir.actions.act_window,name:account.action_tax_form -#: model:ir.ui.menu,name:account.menu_action_tax_form -#: model:ir.ui.menu,name:account.next_id_27 -msgid "Taxes" -msgstr "" - -#. module: account -#: wizard_view:account.fiscalyear.close,init:0 -msgid "Close Fiscal Year with new entries" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "BNK" -msgstr "" - -#. module: account -#: selection:account.account,currency_mode:0 -msgid "Average Rate" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_bankstatement0 -#: model:process.node,note:account.process_node_supplierbankstatement0 -msgid "Statement encoding produces payment entries" -msgstr "" - -#. module: account -#: field:account.account,code:0 -#: rml:account.account.balance:0 -#: field:account.account.template,code:0 -#: field:account.account.type,code:0 -#: rml:account.analytic.account.analytic.check:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.analytic.account.journal:0 -#: field:account.analytic.line,code:0 -#: field:account.config.wizard,code:0 -#: field:account.fiscalyear,code:0 -#: rml:account.general.journal:0 -#: field:account.journal,code:0 -#: rml:account.partner.balance:0 -#: field:account.period,code:0 -#: rml:account.vat.declaration:0 -msgid "Code" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance -msgid "Financial Management" -msgstr "" - -#. module: account -#: code:addons/account/account_analytic_line.py:0 -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Entries: " -msgstr "" - -#. module: account -#: selection:account.account.type,close_method:0 -#: selection:account.tax,type:0 -#: selection:account.tax.template,type:0 -msgid "None" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_fiscalyear_close -#: model:ir.ui.menu,name:account.menu_wizard_fy_close -msgid "Generate Fiscal Year Opening Entries" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "The account is not defined to be reconcile !" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_reconcile -msgid "Reconcile Entries" -msgstr "" - -#. module: account -#: wizard_view:account.wizard_paid_open,init:0 -msgid "(Invoice should be unreconciled if you want to open it)" -msgstr "" - -#. module: account -#: view:account.invoice:0 -msgid "Additionnal Information" -msgstr "" - -#. module: account -#: field:account.tax,name:0 -#: field:account.tax.template,name:0 -msgid "Tax Name" -msgstr "" - -#. module: account -#: wizard_view:account.fiscalyear.close.state,init:0 -msgid " Close states of Fiscal year and periods" -msgstr "" - -#. module: account -#: model:account.payment.term,name:account.account_payment_term -msgid "30 Days End of Month" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "Couldn't create move between different companies" -msgstr "" - -#. module: account -#: field:account.chart.template,tax_code_root_id:0 -msgid "Root Tax Code" -msgstr "" - -#. module: account -#: help:account.bank.statement.reconcile,total_second_amount:0 -msgid "The amount in the currency of the journal" -msgstr "" - -#. module: account -#: field:account.tax.code,notprintable:0 -#: field:account.tax.code.template,notprintable:0 -msgid "Not Printable in Invoice" -msgstr "" - -#. module: account -#: field:account.move.line,move_id:0 -msgid "Move" -msgstr "" - -#. module: account -#: field:account.fiscal.position.tax,tax_src_id:0 -#: field:account.fiscal.position.tax.template,tax_src_id:0 -msgid "Tax Source" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_analytic_account_balance -#: model:ir.actions.wizard,name:account.account_analytic_account_balance_report -msgid "Analytic Balance" -msgstr "" - -#. module: account -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You can not change the tax, you should remove and recreate lines !" -msgstr "" - -#. module: account -#: selection:account.analytic.account,state:0 -msgid "Pending" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_bank_reconcile.py:0 -#, python-format -msgid "You have to define the bank account\nin the journal definition for reconciliation." -msgstr "" - -#. module: account -#: view:wizard.multi.charts.accounts:0 -msgid "Bank Information" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Entry \"%s\" is not valid !" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Fax :" -msgstr "" - -#. module: account -#: rml:account.partner.balance:0 -#: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance -#: model:ir.actions.wizard,name:account.wizard_partner_balance_report -#: model:ir.ui.menu,name:account.menu_partner_balance -msgid "Partner Balance" -msgstr "" - -#. module: account -#: rml:account.third_party_ledger:0 -msgid "Third Party Ledger" -msgstr "" - -#. module: account -#: help:res.partner,property_account_receivable:0 -msgid "This account will be used instead of the default one as the receivable account for the current partner" -msgstr "" - -#. module: account -#: rml:account.vat.declaration:0 -msgid "Solde" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement -msgid "Bank statements" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.next_id_22 -msgid "Partner Accounts" -msgstr "" - -#. module: account -#: help:account.tax.template,tax_group:0 -msgid "If a default tax if given in the partner it only override taxes from account (or product) of the same group." -msgstr "" - -#. module: account -#: view:account.bank.statement:0 -msgid "Real Entries" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_importinvoice0 -msgid "Import invoice" -msgstr "" - -#. module: account -#: view:account.invoice:0 -#: view:wizard.multi.charts.accounts:0 -msgid "Create" -msgstr "" - -#. module: account -#: model:process.transition.action,name:account.process_transition_action_createentries0 -msgid "Create entry" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_invoice_line -msgid "Invoice line" -msgstr "" - -#. module: account -#: help:account.account,currency_id:0 -#: help:account.account.template,currency_id:0 -msgid "Force all moves for this account to have this secondary currency." -msgstr "" - -#. module: account -#: wizard_view:account.move.validate,init:0 -msgid "All draft account entries in this journal and period will be validated. It means you won't be able to modify their accouting fields." -msgstr "" - -#. module: account -#: selection:account.model.line,date:0 -#: selection:account.model.line,date_maturity:0 -msgid "Date of the day" -msgstr "" - -#. module: account -#: field:account.tax,parent_id:0 -#: field:account.tax.template,parent_id:0 -msgid "Parent Tax Account" -msgstr "" - -#. module: account -#: field:account.account,user_type:0 -#: field:account.account.template,user_type:0 -#: view:account.account.type:0 -#: field:account.analytic.account,type:0 -#: model:ir.model,name:account.model_account_account_type -msgid "Account Type" -msgstr "" - -#. module: account -#: view:res.partner:0 -msgid "Bank account owner" -msgstr "" - -#. module: account -#: wizard_view:account.account.balance.report,checktype:0 -#: wizard_view:account.general.ledger.report,checktype:0 -#: wizard_view:account.partner.balance.report,init:0 -#: wizard_view:account.third_party_ledger.report,init:0 -msgid "Filter on Periods" -msgstr "" - -#. module: account -#: field:res.partner,property_account_receivable:0 -msgid "Account Receivable" -msgstr "" - -#. module: account -#: wizard_button:account.invoice.pay,addendum,reconcile:0 -msgid "Pay and reconcile" -msgstr "" - -#. module: account -#: rml:account.central.journal:0 -#: model:ir.actions.report.xml,name:account.account_central_journal -msgid "Central Journal" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#: code:addons/account/account_analytic_line.py:0 -#: code:addons/account/account_bank_statement.py:0 -#: code:addons/account/account_move_line.py:0 -#: code:addons/account/wizard/wizard_pay_invoice.py:0 -#: code:addons/account/wizard/wizard_refund.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: account -#: rml:account.third_party_ledger:0 -msgid "Balance brought forward" -msgstr "" - -#. module: account -#: field:account.account,child_consol_ids:0 -msgid "Consolidated Children" -msgstr "" - -#. module: account -#: wizard_field:account.account.balance.report,checktype,fiscalyear:0 -#: wizard_field:account.chart,init,fiscalyear:0 -#: wizard_field:account.general.ledger.report,checktype,fiscalyear:0 -#: wizard_field:account.partner.balance.report,init,fiscalyear:0 -#: wizard_field:account.third_party_ledger.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account -#: selection:account.account.balance.report,checktype,display_account:0 -#: selection:account.general.ledger.report,checktype,display_account:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "3" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_vat_declaration -msgid "Taxes Report" -msgstr "" - -#. module: account -#: selection:account.journal.period,state:0 -msgid "Printed" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree4_new -#: model:ir.ui.menu,name:account.menu_action_invoice_tree4_new -msgid "New Supplier Refund" -msgstr "" - -#. module: account -#: view:account.model:0 -msgid "Entry Model" -msgstr "" - -#. module: account -#: view:account.account:0 -msgid "Chart of accounts" -msgstr "" - -#. module: account -#: field:account.subscription.line,subscription_id:0 -msgid "Subscription" -msgstr "" - -#. module: account -#: field:account.analytic.journal,code:0 -msgid "Journal code" -msgstr "" - -#. module: account -#: wizard_button:account.fiscalyear.close,init,close:0 -#: view:account.model:0 -msgid "Create entries" -msgstr "" - -#. module: account -#: view:account.analytic.line:0 -msgid "Project line" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "SAJ" -msgstr "" - -#. module: account -#: wizard_field:account.automatic.reconcile,init,max_amount:0 -msgid "Maximum write-off amount" -msgstr "" - -#. module: account -#: field:account.invoice.tax,manual:0 -msgid "Manual" -msgstr "" - -#. module: account -#: view:account.invoice:0 -msgid "Compute Taxes" -msgstr "" - -#. module: account -#: field:wizard.multi.charts.accounts,code_digits:0 -msgid "# of Digits" -msgstr "" - -#. module: account -#: help:res.partner,property_payment_term:0 -msgid "This payment term will be used instead of the default one for the current partner" -msgstr "" - -#. module: account -#: wizard_field:account.invoice.pay,addendum,comment:0 -#: wizard_field:account.invoice.pay,init,name:0 -msgid "Entry Name" -msgstr "" - -#. module: account -#: help:account.invoice,account_id:0 -msgid "The partner account used for this invoice." -msgstr "" - -#. module: account -#: help:account.tax.code,notprintable:0 -#: help:account.tax.code.template,notprintable:0 -msgid "Check this box if you don't want any VAT related to this Tax Code to appear on invoices" -msgstr "" - -#. module: account -#: field:account.account.type,sequence:0 -#: field:account.invoice.tax,sequence:0 -#: field:account.journal.column,sequence:0 -#: field:account.model.line,sequence:0 -#: field:account.payment.term.line,sequence:0 -#: field:account.sequence.fiscalyear,sequence_id:0 -#: field:account.tax,sequence:0 -#: field:account.tax.template,sequence:0 -#: field:fiscalyear.seq,sequence_id:0 -msgid "Sequence" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_fiscal_position_template -msgid "Template for Fiscal Position" -msgstr "" - -#. module: account -#: view:account.bank.statement:0 -msgid "Entry encoding" -msgstr "" - -#. module: account -#: wizard_view:account.invoice.refund,init:0 -#: model:ir.actions.wizard,name:account.wizard_invoice_refund -msgid "Credit Note" -msgstr "" - -#. module: account -#: model:ir.actions.todo,note:account.config_fiscalyear -msgid "Define Fiscal Years and Select Charts of Account" -msgstr "" - -#. module: account -#: wizard_field:account.move.line.reconcile,addendum,period_id:0 -msgid "Write-Off Period" -msgstr "" - -#. module: account -#: selection:account.config.wizard,period:0 -msgid "3 Months" -msgstr "" - -#. module: account -#: wizard_view:account.move.journal,init:0 -msgid "Standard entries" -msgstr "" - -#. module: account -#: help:account.account,check_history:0 -msgid "Check this box if you want to print all entries when printing the General Ledger, otherwise it will only print its balance." -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Global taxes defined, but are not in invoice lines !" -msgstr "" - -#. module: account -#: selection:account.config.wizard,period:0 -#: field:report.hr.timesheet.invoice.journal,name:0 -msgid "Month" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_subscription -msgid "Account Subscription" -msgstr "" - -#. module: account -#: field:account.model.line,date_maturity:0 -#: field:account.move.line,date_maturity:0 -#: rml:account.overdue:0 -msgid "Maturity date" -msgstr "" - -#. module: account -#: view:account.subscription:0 -msgid "Entry Subscription" -msgstr "" - -#. module: account -#: selection:account.print.journal.report,init,sort_selection:0 -msgid "By date" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_config_wizard_form -msgid "Account Configure Wizard " -msgstr "" - -#. module: account -#: field:account.config.wizard,date1:0 -#: field:account.fiscalyear,date_start:0 -#: field:account.subscription,date_start:0 -msgid "Start Date" -msgstr "" - -#. module: account -#: wizard_view:account.general.ledger.report,account_selection:0 -msgid "Select Chart" -msgstr "" - -#. module: account -#: selection:account.chart,init,target_move:0 -#: model:ir.actions.report.xml,name:account.account_move_line_list -msgid "All Entries" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_draftinvoices0 -#: model:process.node,name:account.process_node_supplierdraftinvoices0 -msgid "Draft Invoices" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_fiscal_position_tax_template -msgid "Fiscal Position Template Tax Mapping" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Invoice Date" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "The journal must have centralised counterpart" -msgstr "" - -#. module: account -#: selection:account.account.type,close_method:0 -msgid "Unreconciled" -msgstr "" - -#. module: account -#: selection:account.subscription,period_type:0 -msgid "month" -msgstr "" - -#. module: account -#: field:account.account,note:0 -#: field:account.account.template,note:0 -msgid "Note" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Bad total !" -msgstr "" - -#. module: account -#: model:ir.module.module,description:account.module_meta_information -msgid "Financial and accounting module that covers:\n" -" General accounting\n" -" Cost / Analytic accounting\n" -" Third party accounting\n" -" Taxes management\n" -" Budgets\n" -" Customer and Supplier Invoices\n" -" Bank statements\n" -" " -msgstr "" - -#. module: account -#: field:account.journal,sequence_id:0 -msgid "Entry Sequence" -msgstr "" - -#. module: account -#: selection:account.account,type:0 -#: selection:account.account.template,type:0 -msgid "Closed" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_paymententries0 -msgid "Payment Entries" -msgstr "" - -#. module: account -#: help:account.automatic.reconcile,init,account_ids:0 -msgid "If no account is specified, the reconciliation will be made using every accounts that can be reconcilied" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_payment_term_line -msgid "Payment Term Line" -msgstr "" - -#. module: account -#: selection:account.tax,tax_group:0 -#: selection:account.tax.template,tax_group:0 -msgid "Other" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_general_ledger -#: model:ir.actions.wizard,name:account.wizard_general_ledger -#: model:ir.actions.wizard,name:account.wizard_general_ledger_report -#: model:ir.ui.menu,name:account.menu_general_ledger -msgid "General Ledger" -msgstr "" - -#. module: account -#: field:account.journal.view,columns_id:0 -msgid "Columns" -msgstr "" - -#. module: account -#: selection:account.general.ledger.report,checktype,sortbydate:0 -msgid "Movement" -msgstr "" - -#. module: account -#: help:account.period,special:0 -msgid "These periods can overlap." -msgstr "" - -#. module: account -#: help:product.template,property_account_expense:0 -msgid "This account will be used instead of the default one to value outgoing stock for the current product" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_manually0 -msgid "Encode manually the statement" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Customer account statement" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_journal_form -#: model:ir.ui.menu,name:account.menu_action_account_journal_form -msgid "Financial Journals" -msgstr "" - -#. module: account -#: selection:account.account.balance.report,checktype,state:0 -#: selection:account.general.ledger.report,checktype,state:0 -#: selection:account.partner.balance.report,init,state:0 -#: selection:account.third_party_ledger.report,init,state:0 -msgid "By Period" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Paid" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "." -msgstr "" - -#. module: account -#: field:account.analytic.account,quantity_max:0 -msgid "Maximum Quantity" -msgstr "" - -#. module: account -#: field:account.period,name:0 -msgid "Period Name" -msgstr "" - -#. module: account -#: help:account.analytic.journal,type:0 -msgid "Gives the type of the analytic journal. When a document (eg: an invoice) needs to create analytic entries, Open ERP will look for a matching journal of the same type." -msgstr "" - -#. module: account -#: field:account.journal,groups_id:0 -msgid "Groups" -msgstr "" - -#. module: account -#: rml:account.analytic.account.quantity_cost_ledger:0 -msgid "Code/Date" -msgstr "" - -#. module: account -#: field:account.account,active:0 -#: field:account.analytic.account,active:0 -#: field:account.analytic.journal,active:0 -#: field:account.journal,active:0 -#: field:account.journal.period,active:0 -#: field:account.payment.term,active:0 -#: field:account.tax,active:0 -msgid "Active" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_electronicfile0 -msgid "Import from your bank statements" -msgstr "" - -#. module: account -#: view:account.chart.template:0 -msgid "Properties" -msgstr "" - -#. module: account -#: view:res.partner:0 -msgid "Customer Accounting Properties" -msgstr "" - -#. module: account -#: view:account.bank.statement:0 -msgid "Select entries" -msgstr "" - -#. module: account -#: selection:account.chart,init,target_move:0 -msgid "All Posted Entries" -msgstr "" - -#. module: account -#: wizard_field:account.vat.declaration,init,based_on:0 -msgid "Base on" -msgstr "" - -#. module: account -#: selection:account.move,type:0 -msgid "Cash Payment" -msgstr "" - -#. module: account -#: field:account.chart.template,property_account_payable:0 -msgid "Payable Account" -msgstr "" - -#. module: account -#: field:account.account,currency_id:0 -#: field:account.account.template,currency_id:0 -msgid "Secondary Currency" -msgstr "" - -#. module: account -#: field:account.account,credit:0 -#: rml:account.account.balance:0 -#: field:account.analytic.account,credit:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.central.journal:0 -#: rml:account.journal.period.print:0 -#: field:account.model.line,credit:0 -#: field:account.move.line,credit:0 -#: rml:account.tax.code.entries:0 -#: rml:account.third_party_ledger:0 -#: field:report.hr.timesheet.invoice.journal,cost:0 -msgid "Credit" -msgstr "" - -#. module: account -#: help:account.tax.template,child_depend:0 -msgid "Indicate if the tax computation is based on the value computed for the computation of child taxes or based on the total amount." -msgstr "" - -#. module: account -#: field:account.tax,account_paid_id:0 -#: field:account.tax.template,account_paid_id:0 -msgid "Refund Tax Account" -msgstr "" - -#. module: account -#: field:account.tax.code,child_ids:0 -#: field:account.tax.code.template,child_ids:0 -msgid "Child Codes" -msgstr "" - -#. module: account -#: field:account.invoice,move_name:0 -msgid "Account Move" -msgstr "" - -#. module: account -#: view:account.bank.statement:0 -#: field:account.bank.statement,line_ids:0 -msgid "Statement lines" -msgstr "" - -#. module: account -#: field:account.move.line,amount_taxed:0 -msgid "Taxed Amount" -msgstr "" - -#. module: account -#: field:account.invoice.line,price_subtotal:0 -msgid "Subtotal w/o tax" -msgstr "" - -#. module: account -#: field:account.invoice.line,invoice_id:0 -msgid "Invoice Ref" -msgstr "" - -#. module: account -#: field:account.analytic.line,general_account_id:0 -msgid "General Account" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "End of Fiscal Year Entry" -msgstr "" - -#. module: account -#: wizard_field:account.third_party_ledger.report,init,reconcil:0 -msgid " Include Reconciled Entries" -msgstr "" - -#. module: account -#: help:account.move.line,blocked:0 -msgid "You can check this box to mark the entry line as a litigation with the associated partner" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree1 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree1 -msgid "Customer Invoices" -msgstr "" - -#. module: account -#: field:res.partner,debit_limit:0 -msgid "Payable Limit" -msgstr "" - -#. module: account -#: wizard_field:account.account.balance.report,checktype,state:0 -#: wizard_field:account.general.ledger.report,checktype,state:0 -#: wizard_field:account.partner.balance.report,init,state:0 -#: wizard_field:account.third_party_ledger.report,init,state:0 -msgid "Date/Period Filter" -msgstr "" - -#. module: account -#: field:account.move,name:0 -msgid "Number" -msgstr "" - -#. module: account -#: rml:account.analytic.account.journal:0 -#: selection:account.analytic.journal,type:0 -#: selection:account.bank.statement.line,type:0 -#: selection:account.journal,type:0 -msgid "General" -msgstr "" - -#. module: account -#: rml:account.general.journal:0 -msgid "Credit Trans." -msgstr "" - -#. module: account -#: help:account.bank.statement.reconcile,total_second_currency:0 -msgid "The currency of the journal" -msgstr "" - -#. module: account -#: view:account.journal.column:0 -#: model:ir.model,name:account.model_account_journal_column -msgid "Journal Column" -msgstr "" - -#. module: account -#: selection:account.fiscalyear,state:0 -#: selection:account.invoice,state:0 -#: selection:account.journal.period,state:0 -#: selection:account.period,state:0 -#: selection:account.subscription,state:0 -msgid "Done" -msgstr "" - -#. module: account -#: wizard_field:account.account.balance.report,checktype,periods:0 -#: field:account.config.wizard,period:0 -#: view:account.fiscalyear:0 -#: field:account.fiscalyear,period_ids:0 -#: wizard_field:account.general.ledger.report,checktype,periods:0 -#: wizard_field:account.partner.balance.report,init,periods:0 -#: wizard_field:account.third_party_ledger.report,init,periods:0 -#: wizard_field:account.vat.declaration,init,periods:0 -#: model:ir.actions.act_window,name:account.action_account_period_form -#: model:ir.ui.menu,name:account.menu_action_account_period_form -#: model:ir.ui.menu,name:account.next_id_23 -msgid "Periods" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -#: view:account.invoice:0 -#: field:account.move.line,invoice:0 -#: model:ir.model,name:account.model_account_invoice -#: model:res.request.link,name:account.req_link_invoice -msgid "Invoice" -msgstr "" - -#. module: account -#: selection:account.analytic.account,state:0 -#: selection:account.invoice,state:0 -#: wizard_button:account.open_closed_fiscalyear,init,open:0 -#: wizard_button:account_use_models,create,open_move:0 -msgid "Open" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.next_id_29 -msgid "Search Entries" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_analytic0 -#: model:process.node,note:account.process_node_analyticcost0 -msgid "Analytic costs to reinvoice purchases, timesheets, ..." -msgstr "" - -#. module: account -#: field:account.account,tax_ids:0 -#: field:account.account.template,tax_ids:0 -msgid "Default Taxes" -msgstr "" - -#. module: account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account -#: help:account.account.type,sign:0 -msgid "Allows you to change the sign of the balance amount displayed in the reports, so that you can see positive figures instead of negative ones in expenses accounts." -msgstr "" - -#. module: account -#: help:account.config.wizard,code:0 -msgid "Name of the fiscal year as displayed in reports." -msgstr "" - -#. module: account -#: help:account.move.line,date_maturity:0 -msgid "This field is used for payable and receivable entries. You can put the limit date for the payment of this entry line." -msgstr "" - -#. module: account -#: rml:account.tax.code.entries:0 -msgid "Third party (Country)" -msgstr "" - -#. module: account -#: field:account.account,parent_left:0 -msgid "Parent Left" -msgstr "" - -#. module: account -#: help:account.journal,sequence_id:0 -msgid "The sequence gives the display order for a list of journals" -msgstr "" - -#. module: account -#: field:account.journal,type_control_ids:0 -msgid "Type Controls" -msgstr "" - -#. module: account -#: field:account.analytic.account,name:0 -#: rml:account.analytic.account.analytic.check:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.central.journal:0 -msgid "Account Name" -msgstr "" - -#. module: account -#: wizard_field:account.invoice.pay,init,date:0 -msgid "Payment date" -msgstr "" - -#. module: account -#: wizard_button:account_use_models,create,end:0 -msgid "Ok" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Taxes:" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree7 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree7 -msgid "Unpaid Customer Invoices" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree2 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree2 -msgid "Supplier Invoices" -msgstr "" - -#. module: account -#: field:account.analytic.line,product_id:0 -#: field:account.invoice.line,product_id:0 -#: field:account.move.line,product_id:0 -msgid "Product" -msgstr "" - -#. module: account -#: rml:account.partner.balance:0 -msgid "Partner name" -msgstr "" - -#. module: account -#: rml:account.tax.code.entries:0 -msgid ")" -msgstr "" - -#. module: account -#: field:res.partner,credit:0 -msgid "Total Receivable" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_period -msgid "Account period" -msgstr "" - -#. module: account -#: wizard_field:account.invoice.pay,init,journal_id:0 -msgid "Journal/Payment Mode" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Canceled Invoice" -msgstr "" - -#. module: account -#: view:account.subscription:0 -msgid "Remove Lines" -msgstr "" - -#. module: account -#: wizard_field:account.general.ledger.report,checktype,soldeinit:0 -#: wizard_field:account.partner.balance.report,init,soldeinit:0 -#: wizard_field:account.third_party_ledger.report,init,soldeinit:0 -msgid "Include initial balances" -msgstr "" - -#. module: account -#: view:account.account.template:0 -msgid "Account Template" -msgstr "" - -#. module: account -#: field:account.tax.code,sum:0 -msgid "Year Sum" -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_filestatement0 -msgid "Import file from your bank statement" -msgstr "" - -#. module: account -#: field:account.account,type:0 -#: field:account.account.template,type:0 -msgid "Internal Type" -msgstr "" - -#. module: account -#: field:account.account,balance:0 -msgid "Closing Balance" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "9" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_subscription_form_running -#: model:ir.ui.menu,name:account.menu_action_subscription_form_running -msgid "Running Subscriptions" -msgstr "" - -#. module: account -#: selection:account.move,type:0 -msgid "Bank Payment" -msgstr "" - -#. module: account -#: selection:account.move,state:0 -msgid "Posted" -msgstr "" - -#. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Credit Notes" -msgstr "" - -#. module: account -#: field:account.config.wizard,date2:0 -#: field:account.fiscalyear,date_stop:0 -msgid "End Date" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_open_closed_fiscalyear -#: model:ir.ui.menu,name:account.menu_wizard_open_closed_fy -msgid "Cancel Opening Entries" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_invoicemanually0 -msgid "Manually statement" -msgstr "" - -#. module: account -#: field:account.payment.term.line,days2:0 -msgid "Day of the Month" -msgstr "" - -#. module: account -#: field:account.analytic.journal,line_ids:0 -#: field:account.tax.code,line_ids:0 -msgid "Lines" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_account_end_year_treatments -msgid "End of Year Treatments" -msgstr "" - -#. module: account -#: help:account.tax,sequence:0 -msgid "The sequence field is used to order the tax lines from the lowest sequences to the higher ones. The order is important if you have a tax with several tax children. In this case, the evaluation order is important." -msgstr "" - -#. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Tax Declaration" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_filestatement0 -msgid "File statement" -msgstr "" - -#. module: account -#: view:ir.sequence:0 -msgid "Fiscal Year Sequences" -msgstr "" - -#. module: account -#: view:account.model.line:0 -msgid "Entry Model Line" -msgstr "" - -#. module: account -#: view:account.tax.template:0 -msgid "Account Tax Template" -msgstr "" - -#. module: account -#: help:account.model,name:0 -msgid "This is a model for recurring accounting entries" -msgstr "" - -#. module: account -#: wizard_view:account.wizard_paid_open,init:0 -msgid "Open Invoice" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_draftstatement0 -msgid "Set starting and ending balance for control" -msgstr "" - -#. module: account -#: wizard_view:account.wizard_paid_open,init:0 -msgid "Are you sure you want to open this invoice ?" -msgstr "" - -#. module: account -#: view:res.partner:0 -msgid "Supplier Debit" -msgstr "" - -#. module: account -#: help:account.model.line,quantity:0 -msgid "The optional quantity on entries" -msgstr "" - -#. module: account -#: rml:account.third_party_ledger:0 -msgid "JNRL" -msgstr "" - -#. module: account -#: view:account.fiscalyear:0 -#: view:account.period:0 -msgid "States" -msgstr "" - -#. module: account -#: view:account.move:0 -#: model:process.node,name:account.process_node_accountingentries0 -#: model:process.node,name:account.process_node_supplieraccountingentries0 -msgid "Accounting Entries" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_account_partner_account_move_unreconciled -msgid "Receivables & Payables" -msgstr "" - -#. module: account -#: rml:account.general.ledger:0 -msgid "General Ledger -" -msgstr "" - -#. module: account -#: field:report.hr.timesheet.invoice.journal,quantity:0 -msgid "Quantities" -msgstr "" - -#. module: account -#: field:account.analytic.account,date_start:0 -msgid "Date Start" -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -#: field:account.invoice,amount_total:0 -#: field:account.invoice,check_total:0 -msgid "Total" -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_customerinvoice0 -#: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 -msgid "Number of entries are generated" -msgstr "" - -#. module: account -#: model:process.transition,name:account.process_transition_suppliervalidentries0 -#: model:process.transition,name:account.process_transition_validentries0 -msgid "Valid Entries" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_account_use_model -#: model:ir.actions.wizard,name:account.wizard_line_account_use_model -#: model:ir.ui.menu,name:account.menu_account_use_model -msgid "Create Entries From Models" -msgstr "" - -#. module: account -#: field:account.account.template,reconcile:0 -msgid "Allow Reconciliation" -msgstr "" - -#. module: account -#: selection:account.account.balance.report,checktype,state:0 -#: selection:account.general.ledger.report,checktype,state:0 -#: selection:account.partner.balance.report,init,state:0 -#: selection:account.third_party_ledger.report,init,state:0 -msgid "By Date" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree4 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree4 -msgid "Supplier Refunds" -msgstr "" - -#. module: account -#: help:account.model.line,date:0 -msgid "The date of the generated entries" -msgstr "" - -#. module: account -#: wizard_button:account.invoice.refund,init,modify_invoice:0 -msgid "Modify Invoice" -msgstr "" - -#. module: account -#: view:res.partner:0 -msgid "Supplier Accounting Properties" -msgstr "" - -#. module: account -#: view:account.analytic.account:0 -msgid "Analytic Account Statistics" -msgstr "" - -#. module: account -#: view:wizard.multi.charts.accounts:0 -msgid "This will automatically configure your chart of accounts, bank accounts, taxes and journals according to the selected template" -msgstr "" - -#. module: account -#: view:account.bank.statement:0 -#: field:account.bank.statement.line,statement_id:0 -#: field:account.move.line,statement_id:0 -msgid "Statement" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_move_line_form_encode_by_move -#: model:ir.ui.menu,name:account.menu_encode_entries_by_move -msgid "Entries Encoding by Move" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not deactivate an account that contains account moves." -msgstr "" - -#. module: account -#: wizard_field:account.aged.trial.balance,init,result_selection:0 -msgid "Filter on Partners" -msgstr "" - -#. module: account -#: field:account.tax,price_include:0 -msgid "Tax Included in Price" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_analytic_journal_tree2 -#: model:ir.ui.menu,name:account.account_analytic_journal_entries -msgid "Analytic Entries by Journal" -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_suppliervalidentries0 -#: model:process.transition,note:account.process_transition_validentries0 -msgid "Valid entries from invoice" -msgstr "" - -#. module: account -#: field:account.account,company_id:0 -#: wizard_field:account.account.balance.report,checktype,company_id:0 -#: wizard_field:account.aged.trial.balance,init,company_id:0 -#: field:account.analytic.account,company_id:0 -#: field:account.fiscal.position,company_id:0 -#: field:account.fiscalyear,company_id:0 -#: wizard_field:account.general.ledger.report,checktype,company_id:0 -#: field:account.invoice,company_id:0 -#: field:account.journal,company_id:0 -#: wizard_field:account.partner.balance.report,init,company_id:0 -#: field:account.tax,company_id:0 -#: field:account.tax.code,company_id:0 -#: wizard_field:account.third_party_ledger.report,init,company_id:0 -#: wizard_field:account.vat.declaration,init,company_id:0 -#: field:wizard.multi.charts.accounts,company_id:0 -msgid "Company" -msgstr "" - -#. module: account -#: rml:account.general.ledger:0 -msgid "Crebit" -msgstr "" - -#. module: account -#: selection:account.subscription,state:0 -msgid "Running" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can not delete posted movement: \"%s\"!" -msgstr "" - -#. module: account -#: help:account.tax,include_base_amount:0 -msgid "Indicate if the amount of tax must be included in the base amount for the computation of the next taxes" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_draftstatement0 -msgid "Draft statement" -msgstr "" - -#. module: account -#: field:account.analytic.journal,name:0 -msgid "Journal name" -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_invoiceimport0 -msgid "Import invoice from statement" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "4" -msgstr "" - -#. module: account -#: help:res.partner,credit:0 -msgid "Total amount this customer owes you." -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_fiscalyear_form -#: view:ir.sequence:0 -#: model:ir.ui.menu,name:account.menu_action_account_fiscalyear_form -msgid "Fiscal Years" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_importinvoice0 -msgid "Import from invoices or payments" -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_reconcile_select -#: model:ir.ui.menu,name:account.menu_reconcile_select -msgid "Reconcile entries" -msgstr "" - -#. module: account -#: xsl:account.transfer:0 -msgid "Change" -msgstr "" - -#. module: account -#: field:account.journal.period,icon:0 -msgid "Icon" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#: code:addons/account/account_move_line.py:0 -#: code:addons/account/invoice.py:0 -#: code:addons/account/wizard/wizard_automatic_reconcile.py:0 -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#: code:addons/account/wizard/wizard_fiscalyear_close_state.py:0 -#: code:addons/account/wizard/wizard_journal.py:0 -#, python-format -msgid "UserError" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_journal_period -msgid "Journal - Period" -msgstr "" - -#. module: account -#: wizard_field:account.move.line.reconcile,init_full,credit:0 -#: wizard_field:account.move.line.reconcile,init_partial,credit:0 -msgid "Credit amount" -msgstr "" - -#. module: account -#: view:account.fiscalyear:0 -msgid "Create Monthly Periods" -msgstr "" - -#. module: account -#: wizard_button:account.aged.trial.balance,init,print:0 -msgid "Print Aged Trial Balance" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "You can specify year, month and date in the name of the model using the following labels:\n\n%(year)s : To Specify Year \n%(month)s : To Specify Month \n%(date)s : Current Date\n\ne.g. My model on %(date)s" -msgstr "" - -#. module: account -#: field:account.analytic.line,ref:0 -#: field:account.bank.statement.line,ref:0 -#: field:account.model.line,ref:0 -#: field:account.move.line,ref:0 -#: rml:account.third_party_ledger:0 -msgid "Ref." -msgstr "" - -#. module: account -#: field:account.invoice,address_invoice_id:0 -msgid "Invoice Address" -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -msgid "General Credit" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Tax base different !\nClick on compute to update tax base" -msgstr "" - -#. module: account -#: help:account.journal,centralisation:0 -msgid "Check this box to determine that each entry of this journal won't create a new counterpart but will share the same counterpart. This is used in fiscal year closing." -msgstr "" - -#. module: account -#: selection:account.invoice,state:0 -msgid "Cancelled" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree -#: model:ir.ui.menu,name:account.menu_bank_statement_draft_tree -msgid "Draft statements" -msgstr "" - -#. module: account -#: wizard_field:populate_statement_from_inv,init,date:0 -msgid "Date payment" -msgstr "" - -#. module: account -#: rml:account.journal.period.print:0 -msgid "A/c No." -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.report_account_analytic_journal_tree_month -#: model:ir.ui.menu,name:account.report_account_analytic_journal_print_month -msgid "Account cost and revenue by journal (This Month)" -msgstr "" - -#. module: account -#: selection:account.partner.balance.report,init,result_selection:0 -#: selection:account.third_party_ledger.report,init,result_selection:0 -msgid "Receivable Accounts" -msgstr "" - -#. module: account -#: wizard_button:account.move.line.unreconcile.select,init,open:0 -msgid "Open for unreconciliation" -msgstr "" - -#. module: account -#: field:account.bank.statement.reconcile,statement_line:0 -#: model:ir.model,name:account.model_account_bank_statement_line -msgid "Bank Statement Line" -msgstr "" - -#. module: account -#: wizard_button:account.automatic.reconcile,reconcile,end:0 -msgid "OK" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_supplierinvoiceinvoice0 -msgid "Control Invoice" -msgstr "" - -#. module: account -#: selection:account.account,type:0 -#: selection:account.account.template,type:0 -#: selection:account.aged.trial.balance,init,result_selection:0 -msgid "Receivable" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_account_balance -#: model:ir.actions.wizard,name:account.wizard_account_balance_report -#: model:ir.actions.wizard,name:account.wizard_balance_report -#: model:ir.ui.menu,name:account.menu_account_balance_report -msgid "Account Balance" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_analytic_account_analytic_check -#: model:ir.actions.wizard,name:account.account_analytic_account_analytic_check_report -msgid "Analytic Check" -msgstr "" - -#. module: account -#: help:account.move.line,currency_id:0 -msgid "The optionnal other currency if it is a multi-currency entry." -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#: code:addons/account/wizard/wizard_validate_account_move.py:0 -#, python-format -msgid "Warning" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "VAT:" -msgstr "" - -#. module: account -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.quantity_cost_ledger:0 -#: rml:account.central.journal:0 -#: rml:account.general.journal:0 -#: rml:account.invoice:0 -msgid "Total:" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_analytic_journal -msgid "account.analytic.journal" -msgstr "" - -#. module: account -#: view:account.fiscal.position:0 -#: field:account.fiscal.position,account_ids:0 -#: field:account.fiscal.position.template,account_ids:0 -msgid "Account Mapping" -msgstr "" - -#. module: account -#: view:product.product:0 -msgid "Sale Taxes" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_move_reconcile -msgid "Account Reconciliation" -msgstr "" - -#. module: account -#: view:account.bank.statement:0 -#: selection:account.bank.statement,state:0 -msgid "Confirm" -msgstr "" - -#. module: account -#: wizard_view:account.account.balance.report,account_selection:0 -msgid "Select parent account" -msgstr "" - -#. module: account -#: field:account.account.template,parent_id:0 -msgid "Parent Account Template" -msgstr "" - -#. module: account -#: help:account.tax,domain:0 -#: help:account.tax.template,domain:0 -msgid "This field is only used if you develop your own module allowing developers to create specific taxes in a custom domain." -msgstr "" - -#. module: account -#: field:account.bank.statement.reconcile,total_amount:0 -#: field:account.bank.statement.reconcile,total_second_amount:0 -msgid "Payment amount" -msgstr "" - -#. module: account -#: view:account.analytic.account:0 -msgid "Analytic account" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -#: selection:account.invoice,type:0 -msgid "Supplier Invoice" -msgstr "" - -#. module: account -#: code:addons/account/account_bank_statement.py:0 -#, python-format -msgid "Please verify that an account is defined in the journal." -msgstr "" - -#. module: account -#: selection:account.move.line,state:0 -msgid "Valid" -msgstr "" - -#. module: account -#: field:account.account,debit:0 -#: rml:account.account.balance:0 -#: field:account.analytic.account,debit:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.central.journal:0 -#: rml:account.general.ledger:0 -#: rml:account.journal.period.print:0 -#: field:account.model.line,debit:0 -#: field:account.move.line,debit:0 -#: rml:account.tax.code.entries:0 -#: rml:account.third_party_ledger:0 -#: field:report.hr.timesheet.invoice.journal,revenue:0 -msgid "Debit" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.next_id_42 -msgid "All Months" -msgstr "" - -#. module: account -#: model:account.journal,name:account.bank_journal -msgid "x Bank Journal" -msgstr "" - -#. module: account -#: wizard_field:account.invoice.refund,init,date:0 -msgid "Operation date" -msgstr "" - -#. module: account -#: field:account.invoice,invoice_line:0 -msgid "Invoice Lines" -msgstr "" - -#. module: account -#: field:account.period,date_start:0 -msgid "Start of Period" -msgstr "" - -#. module: account -#: wizard_field:account.fiscalyear.close,init,report_name:0 -msgid "Name of new entries" -msgstr "" - -#. module: account -#: wizard_button:account_use_models,init_form,create:0 -msgid "Create Entries" -msgstr "" - -#. module: account -#: field:account.tax,ref_tax_code_id:0 -#: field:account.tax.template,ref_tax_code_id:0 -msgid "Refund Tax Code" -msgstr "" - -#. module: account -#: field:account.invoice.tax,name:0 -msgid "Tax Description" -msgstr "" - -#. module: account -#: help:account.invoice,move_id:0 -msgid "Link to the automatically generated account moves." -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You can not use an inactive account!" -msgstr "" - -#. module: account -#: wizard_field:account.automatic.reconcile,reconcile,reconciled:0 -msgid "Reconciled transactions" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_reporting -msgid "Reporting" -msgstr "" - -#. module: account -#: rml:account.third_party_ledger:0 -msgid "/" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_invoiceinvoice0 -#: model:process.node,note:account.process_node_supplierinvoiceinvoice0 -msgid "Have a number and entries are generated" -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -msgid "Analytic Check -" -msgstr "" - -#. module: account -#: rml:account.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account -#: field:account.journal,group_invoice_lines:0 -msgid "Group invoice lines" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.menu_finance_configuration -msgid "Configuration" -msgstr "" - -#. module: account -#: view:account.analytic.line:0 -#: view:account.invoice:0 -msgid "Total amount" -msgstr "" - -#. module: account -#: view:account.journal:0 -msgid "Account Journal" -msgstr "" - -#. module: account -#: view:account.subscription.line:0 -msgid "Subscription lines" -msgstr "" - -#. module: account -#: field:account.chart.template,property_account_income:0 -msgid "Income Account on Product Template" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Entry is already reconciled" -msgstr "" - -#. module: account -#: wizard_button:populate_statement_from_inv,go,end:0 -#: wizard_button:populate_statement_from_inv,init,end:0 -msgid "_Cancel" -msgstr "" - -#. module: account -#: wizard_view:account.general.ledger.report,checktype:0 -#: wizard_view:account.partner.balance.report,init:0 -#: wizard_view:account.third_party_ledger.report,init:0 -msgid "Select Date-Period" -msgstr "" - -#. module: account -#: rml:account.analytic.account.inverted.balance:0 -msgid "Inverted Analytic Balance -" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_paidinvoice0 -#: model:process.node,name:account.process_node_supplierpaidinvoice0 -msgid "Paid invoice" -msgstr "" - -#. module: account -#: view:account.tax:0 -#: view:account.tax.template:0 -msgid "Tax Definition" -msgstr "" - -#. module: account -#: field:account.tax,tax_group:0 -#: field:account.tax.template,tax_group:0 -msgid "Tax Group" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree3_new -#: model:ir.ui.menu,name:account.menu_action_invoice_tree3_new -msgid "New Customer Refund" -msgstr "" - -#. module: account -#: help:wizard.multi.charts.accounts,seq_journal:0 -msgid "Check this box if you want to use a different sequence for each created journal. Otherwise, all will use the same sequence." -msgstr "" - -#. module: account -#: model:ir.actions.wizard,name:account.wizard_populate_statement_from_inv -msgid "Import invoices" -msgstr "" - -#. module: account -#: wizard_view:account.move.line.unreconcile,init:0 -#: wizard_view:account.move.line.unreconcile.select,init:0 -#: wizard_view:account.reconcile.unreconcile,init:0 -msgid "Unreconciliation" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_fiscalyear_seq -msgid "Maintains Invoice sequences with Fiscal Year" -msgstr "" - -#. module: account -#: selection:account.account.balance.report,checktype,display_account:0 -#: selection:account.general.ledger.report,checktype,display_account:0 -msgid "With movements" -msgstr "" - -#. module: account -#: field:account.tax,domain:0 -#: field:account.tax.template,domain:0 -msgid "Domain" -msgstr "" - -#. module: account -#: view:account.analytic.account:0 -msgid "Account Data" -msgstr "" - -#. module: account -#: view:account.tax.code.template:0 -msgid "Account Tax Code Template" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Balance:" -msgstr "" - -#. module: account -#: model:process.node,name:account.process_node_manually0 -msgid "Manually" -msgstr "" - -#. module: account -#: view:account.invoice:0 -#: view:account.tax:0 -#: view:account.tax.template:0 -#: selection:account.vat.declaration,init,based_on:0 -#: model:ir.actions.act_window,name:account.act_res_partner_2_account_invoice_opened -#: model:ir.actions.act_window,name:account.action_invoice_tree -#: model:ir.actions.report.xml,name:account.account_invoices -#: model:ir.ui.menu,name:account.menu_finance_invoice -#: wizard_field:populate_statement_from_inv,go,lines:0 -msgid "Invoices" -msgstr "" - -#. module: account -#: selection:account.partner.balance.report,init,result_selection:0 -#: selection:account.third_party_ledger.report,init,result_selection:0 -msgid "Payable Accounts" -msgstr "" - -#. module: account -#: view:account.invoice.line:0 -#: field:account.invoice.tax,invoice_id:0 -msgid "Invoice Line" -msgstr "" - -#. module: account -#: wizard_field:account.invoice.pay,addendum,writeoff_journal_id:0 -msgid "Write-Off journal" -msgstr "" - -#. module: account -#: wizard_button:account.invoice.pay,init,writeoff_check:0 -msgid "Full Payment" -msgstr "" - -#. module: account -#: selection:account.move,type:0 -msgid "Journal Purchase" -msgstr "" - -#. module: account -#: selection:account.move,type:0 -msgid "Cash Receipt" -msgstr "" - -#. module: account -#: field:account.fiscal.position.tax,tax_dest_id:0 -#: field:account.fiscal.position.tax.template,tax_dest_id:0 -msgid "Replacement Tax" -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_invoicemanually0 -msgid "Encode manually statement comes into the draft statement" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.next_id_43 -msgid "This Month" -msgstr "" - -#. module: account -#: field:account.account.type,sign:0 -msgid "Sign on Reports" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_journal.py:0 -#, python-format -msgid "This period is already closed !" -msgstr "" - -#. module: account -#: view:account.invoice:0 -#: field:account.invoice,payment_ids:0 -#: selection:account.vat.declaration,init,based_on:0 -msgid "Payments" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_accountingstatemententries0 -msgid "Accounting entries at statement's confirmation" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "No fiscal year defined for this date !\nPlease create one." -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_validate_account_move.py:0 -#, python-format -msgid "Selected Move lines does not have any account move enties in draft state" -msgstr "" - -#. module: account -#: wizard_button:account.wizard_paid_open,init,end:0 -msgid "No" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.act_account_partner_account_move -msgid "All account entries" -msgstr "" - -#. module: account -#: help:account.invoice.tax,tax_code_id:0 -msgid "The tax basis of the tax declaration." -msgstr "" - -#. module: account -#: wizard_view:account.account.balance.report,checktype:0 -#: wizard_view:account.general.ledger.report,checktype:0 -#: wizard_view:account.partner.balance.report,init:0 -#: wizard_view:account.third_party_ledger.report,init:0 -msgid "Date Filter" -msgstr "" - -#. module: account -#: wizard_view:populate_statement_from_inv,init:0 -msgid "Choose Journal and Payment Date" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "You must define an analytic journal of type '%s' !" -msgstr "" - -#. module: account -#: selection:account.analytic.account,state:0 -#: selection:account.bank.statement,state:0 -#: selection:account.fiscalyear,state:0 -#: selection:account.invoice,state:0 -#: selection:account.journal.period,state:0 -#: selection:account.move,state:0 -#: selection:account.move.line,state:0 -#: selection:account.period,state:0 -#: selection:account.subscription,state:0 -msgid "Draft" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree11 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree11 -msgid "Unpaid Customer Refunds" -msgstr "" - -#. module: account -#: help:account.invoice,residual:0 -msgid "Remaining amount due." -msgstr "" - -#. module: account -#: wizard_view:account.period.close,init:0 -msgid "Are you sure ?" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -#: view:account.invoice:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account -#: field:account.move.reconcile,line_partial_ids:0 -msgid "Partial Entry lines" -msgstr "" - -#. module: account -#: help:account.move.line,statement_id:0 -msgid "The bank statement used for bank reconciliation" -msgstr "" - -#. module: account -#: view:account.fiscalyear:0 -msgid "Fiscalyear" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_bank_reconcile.py:0 -#, python-format -msgid "Standard Encoding" -msgstr "" - -#. module: account -#: wizard_button:account.analytic.line,init,open:0 -msgid "Open Entries" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Bad account!" -msgstr "" - -#. module: account -#: selection:account.analytic.account,type:0 -#: selection:account.move.line,centralisation:0 -msgid "Normal" -msgstr "" - -#. module: account -#: model:process.process,name:account.process_process_supplierinvoiceprocess0 -msgid "Supplier Invoice Process" -msgstr "" - -#. module: account -#: rml:account.account.balance:0 -#: rml:account.analytic.account.analytic.check:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.inverted.balance:0 -#: rml:account.analytic.account.journal:0 -#: rml:account.general.ledger:0 -#: rml:account.journal.period.print:0 -#: rml:account.partner.balance:0 -#: rml:account.tax.code.entries:0 -#: rml:account.third_party_ledger:0 -#: rml:account.vat.declaration:0 -msgid "Page" -msgstr "" - -#. module: account -#: view:account.move:0 -#: view:account.move.line:0 -msgid "Optional Information" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_payment_term_form -#: model:ir.ui.menu,name:account.menu_action_payment_term_form -msgid "Payment Terms" -msgstr "" - -#. module: account -#: selection:account.aged.trial.balance,init,result_selection:0 -msgid "Receivable and Payable" -msgstr "" - -#. module: account -#: rml:account.account.balance:0 -#: rml:account.general.journal:0 -#: rml:account.overdue:0 -msgid ":" -msgstr "" - -#. module: account -#: field:account.bank.statement.line,reconcile_amount:0 -msgid "Amount reconciled" -msgstr "" - -#. module: account -#: selection:account.account,currency_mode:0 -msgid "At Date" -msgstr "" - -#. module: account -#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0 -msgid "and Journals" -msgstr "" - -#. module: account -#: model:account.journal,name:account.expenses_journal -msgid "x Expenses Journal" -msgstr "" - -#. module: account -#: view:account.bank.statement:0 -#: view:account.bank.statement.reconcile:0 -#: view:account.subscription:0 -msgid "Compute" -msgstr "" - -#. module: account -#: help:account.invoice.line,account_id:0 -msgid "The income or expense account related to the selected product." -msgstr "" - -#. module: account -#: field:account.tax,type_tax_use:0 -msgid "Tax Application" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_subscription_form -#: model:ir.ui.menu,name:account.menu_action_subscription_form -msgid "Subscription Entries" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 -#, python-format -msgid "Closing of fiscal year cancelled, please check the box !" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_invoice_tree6 -#: model:ir.ui.menu,name:account.menu_action_invoice_tree6 -msgid "PRO-FORMA Customer Invoices" -msgstr "" - -#. module: account -#: field:account.subscription,period_total:0 -msgid "Number of Periods" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Bad account !" -msgstr "" - -#. module: account -#: code:addons/account/account.py:0 -#: code:addons/account/account_move_line.py:0 -#: code:addons/account/wizard/wizard_bank_reconcile.py:0 -#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: account -#: wizard_field:account.analytic.account.analytic.check.report,init,date2:0 -#: wizard_field:account.analytic.account.balance.report,init,date2:0 -#: wizard_field:account.analytic.account.cost_ledger.report,init,date2:0 -#: wizard_field:account.analytic.account.inverted.balance.report,init,date2:0 -#: wizard_field:account.analytic.account.journal.report,init,date2:0 -#: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,date2:0 -#: wizard_field:account.automatic.reconcile,init,date2:0 -msgid "End of period" -msgstr "" - -#. module: account -#: view:account.move:0 -#: model:ir.model,name:account.model_account_move -msgid "Account Entry" -msgstr "" - -#. module: account -#: rml:account.general.journal:0 -#: model:ir.actions.report.xml,name:account.account_general_journal -msgid "General Journal" -msgstr "" - -#. module: account -#: rml:account.account.balance:0 -#: selection:account.account.type,close_method:0 -#: field:account.analytic.account,balance:0 -#: rml:account.analytic.account.balance:0 -#: rml:account.analytic.account.cost_ledger:0 -#: rml:account.analytic.account.inverted.balance:0 -#: field:account.bank.statement,balance_end:0 -#: field:account.bank.statement.reconcile,total_balance:0 -#: rml:account.general.ledger:0 -#: field:account.move.line,balance:0 -#: rml:account.partner.balance:0 -#: selection:account.payment.term.line,value:0 -#: selection:account.tax,type:0 -#: rml:account.third_party_ledger:0 -msgid "Balance" -msgstr "" - -#. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Taxes missing !" -msgstr "" - -#. module: account -#: help:account.invoice,partner_bank:0 -msgid "The bank account to pay to or to be paid from" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -msgid "Refund" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_invoice_tax -msgid "Invoice Tax" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "No piece number !" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_analytic_journal_form -#: model:ir.ui.menu,name:account.account_def_analytic_journal -msgid "Analytic Journal Definition" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_tax_template -msgid "account.tax.template" -msgstr "" - -#. module: account -#: field:wizard.multi.charts.accounts,bank_accounts_id:0 -msgid "Bank Accounts" -msgstr "" - -#. module: account -#: constraint:account.period:0 -msgid "Invalid period ! Some periods overlap or the date period is not in the scope of the fiscal year. " -msgstr "" - -#. module: account -#: help:account.journal,invoice_sequence_id:0 -msgid "The sequence used for invoice numbers in this journal." -msgstr "" - -#. module: account -#: view:account.account:0 -#: view:account.account.template:0 -#: view:account.journal:0 -#: view:account.move:0 -#: view:account.move.line:0 -msgid "General Information" -msgstr "" - -#. module: account -#: help:populate_statement_from_inv,init,journal_id:0 -msgid "This field allow you to choose the accounting journals you want for filtering the invoices. If you left this field empty, it will search on all sale, purchase and cash journals." -msgstr "" - -#. module: account -#: constraint:account.fiscalyear:0 -msgid "Error ! The duration of the Fiscal Year is invalid. " -msgstr "" - -#. module: account -#: selection:account.analytic.account,state:0 -msgid "Close" -msgstr "" - -#. module: account -#: field:account.bank.statement.line,move_ids:0 -msgid "Moves" -msgstr "" - -#. module: account -#: selection:account.invoice,state:0 -msgid "Pro-forma" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_form -#: model:ir.ui.menu,name:account.menu_action_account_form -msgid "List of Accounts" -msgstr "" - -#. module: account -#: view:product.product:0 -#: view:product.template:0 -msgid "Sales Properties" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_fiscalyear_close_state.py:0 -#, python-format -msgid "Closing of states cancelled, please check the box !" -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_analytic_account_quantity_cost_ledger -#: model:ir.actions.wizard,name:account.account_analytic_account_quantity_cost_ledger_report -msgid "Cost Ledger (Only quantities)" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "You have to define an analytic journal on the '%s' journal!" -msgstr "" - -#. module: account -#: wizard_view:account.move.validate,init:0 -msgid "Validate Account Entries" -msgstr "" - -#. module: account -#: selection:account.print.journal.report,init,sort_selection:0 -msgid "Reference Number" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Total amount due:" -msgstr "" - -#. module: account -#: wizard_field:account.analytic.line,init,to_date:0 -msgid "To" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form -msgid "Entries of Open Analytic Journals" -msgstr "" - -#. module: account -#: view:account.invoice.tax:0 -msgid "Manual Invoice Taxes" -msgstr "" - -#. module: account -#: field:account.model.line,date:0 -msgid "Current Date" -msgstr "" - -#. module: account -#: selection:account.move,type:0 -msgid "Journal Sale" -msgstr "" - -#. module: account -#: wizard_field:account.fiscalyear.close,init,fy_id:0 -#: wizard_field:account.fiscalyear.close.state,init,fy_id:0 -msgid "Fiscal Year to close" -msgstr "" - -#. module: account -#: wizard_field:account.aged.trial.balance,init,date1:0 -#: wizard_field:account.analytic.account.analytic.check.report,init,date1:0 -#: wizard_field:account.analytic.account.balance.report,init,date1:0 -#: wizard_field:account.analytic.account.cost_ledger.report,init,date1:0 -#: wizard_field:account.analytic.account.inverted.balance.report,init,date1:0 -#: wizard_field:account.analytic.account.journal.report,init,date1:0 -#: wizard_field:account.analytic.account.quantity_cost_ledger.report,init,date1:0 -#: wizard_field:account.automatic.reconcile,init,date1:0 -msgid "Start of period" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.account_template_folder -msgid "Templates" -msgstr "" - -#. module: account -#: wizard_button:account.vat.declaration,init,report:0 -msgid "Print VAT Decl." -msgstr "" - -#. module: account -#: model:ir.actions.report.xml,name:account.account_intracom -msgid "IntraCom" -msgstr "" - -#. module: account -#: view:account.analytic.account:0 -#: field:account.analytic.account,description:0 -#: field:account.analytic.line,name:0 -#: field:account.bank.statement.reconcile.line,name:0 -#: rml:account.invoice:0 -#: field:account.invoice,name:0 -#: field:account.invoice.line,name:0 -#: wizard_field:account.invoice.refund,init,description:0 -#: rml:account.overdue:0 -#: field:account.payment.term,note:0 -#: field:account.tax.code,info:0 -#: field:account.tax.code.template,info:0 -msgid "Description" -msgstr "" - -#. module: account -#: help:product.template,property_account_income:0 -msgid "This account will be used instead of the default one to value incoming stock for the current product" -msgstr "" - -#. module: account -#: field:account.tax,child_ids:0 -msgid "Child Tax Accounts" -msgstr "" - -#. module: account -#: field:account.account,parent_right:0 -msgid "Parent Right" -msgstr "" - -#. module: account -#: model:ir.ui.menu,name:account.account_account_menu -msgid "Financial Accounts" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_chart_template -msgid "Templates for Account Chart" -msgstr "" - -#. module: account -#: view:account.config.wizard:0 -msgid "Account Configure" -msgstr "" - -#. module: account -#: help:res.partner,property_account_payable:0 -msgid "This account will be used instead of the default one as the payable account for the current partner" -msgstr "" - -#. module: account -#: field:account.tax.code,code:0 -#: field:account.tax.code.template,code:0 -msgid "Case Code" -msgstr "" - -#. module: account -#: selection:account.automatic.reconcile,init,power:0 -msgid "5" -msgstr "" - -#. module: account -#: field:product.category,property_account_income_categ:0 -#: field:product.template,property_account_income:0 -msgid "Income Account" -msgstr "" - -#. module: account -#: field:account.period,special:0 -msgid "Opening/Closing Period" -msgstr "" - -#. module: account -#: code:addons/account/account_move_line.py:0 -#, python-format -msgid "Can not create an automatic sequence for this piece !\n\nPut a sequence in the journal definition for automatic numbering or create a sequence manually for this piece." -msgstr "" - -#. module: account -#: rml:account.analytic.account.balance:0 -msgid "Analytic Balance -" -msgstr "" - -#. module: account -#: wizard_field:account_use_models,init_form,model:0 -#: model:ir.model,name:account.model_account_model -msgid "Account Model" -msgstr "" - -#. module: account -#: view:account.invoice:0 -#: model:ir.actions.act_window,name:account.act_account_analytic_account_2_account_invoice_line -msgid "Invoice lines" -msgstr "" - -#. module: account -#: selection:account.bank.statement.line,type:0 -msgid "Customer" -msgstr "" - -#. module: account -#: code:addons/account/wizard/wizard_pay_invoice.py:0 -#, python-format -msgid "Can not pay draft invoice." -msgstr "" - -#. module: account -#: field:account.subscription,period_type:0 -msgid "Period Type" -msgstr "" - -#. module: account -#: view:product.category:0 -msgid "Accounting Properties" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_sequence_fiscalyear -msgid "account.sequence.fiscalyear" -msgstr "" - -#. module: account -#: wizard_field:account.print.journal.report,init,sort_selection:0 -msgid "Entries Sorted By" -msgstr "" - -#. module: account -#: rml:account.journal.period.print:0 -msgid "Print Journal -" -msgstr "" - -#. module: account -#: field:account.bank.accounts.wizard,bank_account_id:0 -#: field:account.chart.template,bank_account_view_id:0 -#: field:account.invoice,partner_bank:0 -msgid "Bank Account" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_model_form -#: model:ir.ui.menu,name:account.menu_action_model_form -msgid "Models Definition" -msgstr "" - -#. module: account -#: model:account.account.type,name:account.account_type_cash_moves -#: selection:account.analytic.journal,type:0 -#: selection:account.journal,type:0 -msgid "Cash" -msgstr "" - -#. module: account -#: field:account.fiscal.position.account,account_dest_id:0 -#: field:account.fiscal.position.account.template,account_dest_id:0 -msgid "Account Destination" -msgstr "" - -#. module: account -#: rml:account.overdue:0 -msgid "Maturity" -msgstr "" - -#. module: account -#: field:account.fiscalyear,name:0 -#: field:account.period,fiscalyear_id:0 -#: field:account.sequence.fiscalyear,fiscalyear_id:0 -#: field:fiscalyear.seq,fiscalyear_id:0 -#: model:ir.model,name:account.model_account_fiscalyear -msgid "Fiscal Year" -msgstr "" - -#. module: account -#: selection:account.aged.trial.balance,init,direction_selection:0 -msgid "Future" -msgstr "" - -#. module: account -#: help:account.account.balance.report,checktype,fiscalyear:0 -#: help:account.chart,init,fiscalyear:0 -#: help:account.general.ledger.report,checktype,fiscalyear:0 -#: help:account.partner.balance.report,init,fiscalyear:0 -#: help:account.third_party_ledger.report,init,fiscalyear:0 -msgid "Keep empty for all open fiscal year" -msgstr "" - -#. module: account -#: rml:account.invoice:0 -#: selection:account.invoice,type:0 -msgid "Supplier Refund" -msgstr "" - -#. module: account -#: model:process.transition,note:account.process_transition_entriesreconcile0 -#: model:process.transition,note:account.process_transition_supplierentriesreconcile0 -msgid "Reconcile Entries." -msgstr "" - -#. module: account -#: field:account.subscription.line,move_id:0 -msgid "Entry" -msgstr "" - -#. module: account -#: model:process.node,note:account.process_node_paidinvoice0 -#: model:process.node,note:account.process_node_supplierpaidinvoice0 -#: model:process.transition,note:account.process_transition_reconcilepaid0 -#: model:process.transition,note:account.process_transition_supplierreconcilepaid0 -msgid "Paid invoice when reconciled." -msgstr "" - -#. module: account -#: field:account.tax,python_compute_inv:0 -#: field:account.tax.template,python_compute_inv:0 -msgid "Python Code (reverse)" -msgstr "" - -#. module: account -#: model:ir.module.module,shortdesc:account.module_meta_information -msgid "Accounting and financial management" -msgstr "" - -#. module: account -#: view:account.fiscal.position.template:0 -msgid "Accounts Mapping" -msgstr "" - -#. module: account -#: help:product.category,property_account_expense_categ:0 -msgid "This account will be used to value outgoing stock for the current product category" -msgstr "" - -#. module: account -#: help:account.tax,base_sign:0 -#: help:account.tax,ref_base_sign:0 -#: help:account.tax,ref_tax_sign:0 -#: help:account.tax,tax_sign:0 -#: help:account.tax.template,base_sign:0 -#: help:account.tax.template,ref_base_sign:0 -#: help:account.tax.template,ref_tax_sign:0 -#: help:account.tax.template,tax_sign:0 -msgid "Usually 1 or -1." -msgstr "" - -#. module: account -#: help:account.invoice,date_due:0 -msgid "If you use payment terms, the due date will be computed automatically at the generation of accounting entries. If you keep the payment term and the due date empty, it means direct payment." -msgstr "" - -#. module: account -#: view:res.partner:0 -msgid "Bank Details" -msgstr "" - -#. module: account -#: field:account.chart.template,property_account_expense:0 -msgid "Expense Account on Product Template" -msgstr "" - -#. module: account -#: rml:account.analytic.account.analytic.check:0 -msgid "General Debit" -msgstr "" - -#. module: account -#: field:account.analytic.account,code:0 -msgid "Account Code" -msgstr "" - -#. module: account -#: help:account.config.wizard,name:0 -msgid "Name of the fiscal year as displayed on screens." -msgstr "" - -#. module: account -#: field:account.invoice,payment_term:0 -#: view:account.payment.term:0 -#: field:account.payment.term,name:0 -#: view:account.payment.term.line:0 -#: field:account.payment.term.line,payment_id:0 -#: model:ir.model,name:account.model_account_payment_term -#: field:res.partner,property_payment_term:0 -msgid "Payment Term" -msgstr "" - -#. module: account -#: model:ir.actions.act_window,name:account.action_account_fiscal_position_form -#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form -msgid "Fiscal Positions" -msgstr "" - -#. module: account -#: model:process.process,name:account.process_process_statementprocess0 -msgid "Statement Process" -msgstr "" - -#. module: account -#: model:ir.model,name:account.model_account_bank_statement_reconcile -msgid "Statement reconcile" -msgstr "" - -#. module: account -#: wizard_field:account.fiscalyear.close,init,sure:0 -#: wizard_field:account.fiscalyear.close.state,init,sure:0 -#: wizard_field:account.period.close,init,sure:0 -msgid "Check this box" -msgstr "" - -#. module: account -#: help:account.tax,price_include:0 -msgid "Check this if the price you use on the product and invoices includes this tax." -msgstr "" - -#. module: account -#: field:account.journal.column,name:0 -msgid "Column Name" -msgstr "" - -#. module: account -#: help:account.move.line,quantity:0 -msgid "The optional quantity expressed by this line, eg: number of product sold. The quantity is not a legal requirement but is very usefull for some reports." -msgstr "" - -#. module: account -#: wizard_view:account.account.balance.report,checktype:0 -#: wizard_view:account.general.ledger.report,checktype:0 -#: wizard_view:account.partner.balance.report,init:0 -#: wizard_view:account.third_party_ledger.report,init:0 -msgid "Filters" -msgstr "" - -#. module: account -#: wizard_button:account.wizard_paid_open,init,yes:0 -msgid "Yes" -msgstr "" - -#. module: account -#: help:account.account,reconcile:0 -msgid "Check this if the user is allowed to reconcile entries in this account." -msgstr "" - -#. module: account -#: wizard_button:account.subscription.generate,init,generate:0 -msgid "Compute Entry Dates" -msgstr "" - diff --git a/addons/account_analytic_analysis/i18n/tlh_TLH.po b/addons/account_analytic_analysis/i18n/tlh_TLH.po deleted file mode 100644 index 534b5a90aad..00000000000 --- a/addons/account_analytic_analysis/i18n/tlh_TLH.po +++ /dev/null @@ -1,319 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_analytic_analysis -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_analytic_analysis -#: help:account.analytic.account,hours_qtt_invoiced:0 -msgid "Number of hours that can be invoiced plus those that already have been invoiced." -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user -msgid "Hours summary by user" -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,remaining_ca:0 -msgid "Computed using the formula: Max Invoice Price - Invoiced Amount." -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,remaining_hours:0 -msgid "Computed using the formula: Maximum Quantity - Hours Tot." -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_all -#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_all -msgid "All Analytic Accounts" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_managed_open -#: model:ir.ui.menu,name:account_analytic_analysis.menu_analytic_account_to_valid_open -msgid "My Current Accounts" -msgstr "" - -#. module: account_analytic_analysis -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,last_invoice_date:0 -msgid "Date of the last invoice created for this analytic account." -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,ca_theorical:0 -msgid "Theorical Revenue" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,last_invoice_date:0 -msgid "Last Invoice Date" -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,theorical_margin:0 -msgid "Computed using the formula: Theorial Revenue - Total Costs" -msgstr "" - -#. module: account_analytic_analysis -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_new -#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_new -msgid "New Analytic Account" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,theorical_margin:0 -msgid "Theorical Margin" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,real_margin_rate:0 -msgid "Real Margin Rate (%)" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_all_open -#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_all_open -msgid "Current Analytic Accounts" -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,last_worked_date:0 -msgid "Date of the latest work done on this account." -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,last_worked_invoiced_date:0 -msgid "If invoice from the costs, this is the date of the latest work or cost that have been invoiced." -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.ui.menu,name:account_analytic_analysis.menu_invoicing -msgid "Invoicing" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,last_worked_date:0 -msgid "Date of Last Cost/Work" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,total_cost:0 -msgid "Total Costs" -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,hours_quantity:0 -msgid "Number of hours you spent on the analytic account (from timesheet). It computes on all journal of type 'general'." -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,remaining_hours:0 -msgid "Remaining Hours" -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,ca_theorical:0 -msgid "Based on the costs you had on the project, what would have been the revenue if all these costs have been invoiced at the normal sale price provided by the pricelist." -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,user_ids:0 -#: field:account_analytic_analysis.summary.user,user:0 -msgid "User" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_managed_pending -#: model:ir.ui.menu,name:account_analytic_analysis.menu_analytic_account_to_valid_pending -msgid "My Pending Accounts" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_my -#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_my -msgid "My Uninvoiced Entries" -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,real_margin:0 -msgid "Computed using the formula: Invoiced Amount - Total Costs." -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_managed -#: model:ir.ui.menu,name:account_analytic_analysis.menu_analytic_account_managed -msgid "My Accounts" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.module.module,description:account_analytic_analysis.module_meta_information -msgid "Modify account analytic view to show\n" -"important data for project manager of services companies.\n" -"Add menu to show relevant information for each manager." -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,hours_qtt_non_invoiced:0 -msgid "Uninvoiced Hours" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,hours_quantity:0 -msgid "Hours Tot" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.ui.menu,name:account_analytic_analysis.menu_account -msgid "Analytic Accounts" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.module.module,shortdesc:account_analytic_analysis.module_meta_information -msgid "report_account_analytic" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,ca_invoiced:0 -msgid "Invoiced Amount" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.ui.menu,name:account_analytic_analysis.next_id_71 -msgid "Financial Project Management" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,last_worked_invoiced_date:0 -msgid "Date of Last Invoiced Cost" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,ca_to_invoice:0 -msgid "Uninvoiced Amount" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_all_pending -#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_all_pending -msgid "Pending Analytic Accounts" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,hours_qtt_invoiced:0 -msgid "Invoiced Hours" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,real_margin:0 -msgid "Real Margin" -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,ca_invoiced:0 -msgid "Total customer invoiced amount for this account." -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_month -msgid "Hours summary by month" -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,real_margin_rate:0 -msgid "Computes using the formula: (Real Margin / Total Costs) * 100." -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,hours_qtt_non_invoiced:0 -msgid "Number of hours (from journal of type 'general') that can be invoiced if you invoice based on analytic account." -msgstr "" - -#. module: account_analytic_analysis -#: view:account.analytic.account:0 -msgid "Analytic accounts" -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,remaining_ca:0 -msgid "Remaining Revenue" -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,ca_to_invoice:0 -msgid "If invoice from analytic account, the remaining amount you can invoice to the customer based on the total costs." -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,revenue_per_hour:0 -msgid "Computed using the formula: Invoiced Amount / Hours Tot." -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,revenue_per_hour:0 -msgid "Revenue per Hours (real)" -msgstr "" - -#. module: account_analytic_analysis -#: field:account_analytic_analysis.summary.month,unit_amount:0 -#: field:account_analytic_analysis.summary.user,unit_amount:0 -msgid "Total Time" -msgstr "" - -#. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:0 -#, python-format -msgid "You try to bypass an access rule (Document type: %s)." -msgstr "" - -#. module: account_analytic_analysis -#: field:account.analytic.account,month_ids:0 -#: field:account_analytic_analysis.summary.month,month:0 -msgid "Month" -msgstr "" - -#. module: account_analytic_analysis -#: field:account_analytic_analysis.summary.month,account_id:0 -#: field:account_analytic_analysis.summary.user,account_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_managed_overpassed -#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_managed_overpassed -msgid "Overpassed Accounts" -msgstr "" - -#. module: account_analytic_analysis -#: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all -#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_all -msgid "All Uninvoiced Entries" -msgstr "" - -#. module: account_analytic_analysis -#: help:account.analytic.account,total_cost:0 -msgid "Total of costs for this account. It includes real costs (from invoices) and indirect costs, like time spent on timesheets." -msgstr "" - diff --git a/addons/account_analytic_default/i18n/tlh_TLH.po b/addons/account_analytic_default/i18n/tlh_TLH.po deleted file mode 100644 index 38c43ef0f7f..00000000000 --- a/addons/account_analytic_default/i18n/tlh_TLH.po +++ /dev/null @@ -1,106 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_analytic_default -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_analytic_default -#: view:account.analytic.default:0 -#: model:ir.actions.act_window,name:account_analytic_default.action_analytic_default_form -#: model:ir.ui.menu,name:account_analytic_default.menu_analytic_defaul_form -msgid "Analytic Defaults" -msgstr "" - -#. module: account_analytic_default -#: model:ir.module.module,shortdesc:account_analytic_default.module_meta_information -msgid "Account Analytic Default" -msgstr "" - -#. module: account_analytic_default -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_analytic_default -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_analytic_default -#: view:account.analytic.default:0 -msgid "Seq" -msgstr "" - -#. module: account_analytic_default -#: field:account.analytic.default,date_stop:0 -msgid "End Date" -msgstr "" - -#. module: account_analytic_default -#: field:account.analytic.default,company_id:0 -msgid "Company" -msgstr "" - -#. module: account_analytic_default -#: field:account.analytic.default,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_analytic_default -#: field:account.analytic.default,product_id:0 -msgid "Product" -msgstr "" - -#. module: account_analytic_default -#: field:account.analytic.default,analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_analytic_default -#: model:ir.model,name:account_analytic_default.model_account_analytic_default -msgid "Analytic Distributions" -msgstr "" - -#. module: account_analytic_default -#: field:account.analytic.default,user_id:0 -msgid "User" -msgstr "" - -#. module: account_analytic_default -#: model:ir.actions.act_window,name:account_analytic_default.act_account_acount_move_line_open -msgid "Entries" -msgstr "" - -#. module: account_analytic_default -#: field:account.analytic.default,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_analytic_default -#: field:account.analytic.default,date_start:0 -msgid "Start Date" -msgstr "" - -#. module: account_analytic_default -#: view:account.analytic.default:0 -msgid "Conditions" -msgstr "" - -#. module: account_analytic_default -#: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner -#: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_product -#: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_user -msgid "Analytic Rules" -msgstr "" - diff --git a/addons/account_analytic_plans/i18n/tlh_TLH.po b/addons/account_analytic_plans/i18n/tlh_TLH.po deleted file mode 100644 index 4af41002bd5..00000000000 --- a/addons/account_analytic_plans/i18n/tlh_TLH.po +++ /dev/null @@ -1,359 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_analytic_plans -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance,account4_ids:0 -msgid "Account4 Id" -msgstr "" - -#. module: account_analytic_plans -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -#: model:ir.actions.report.xml,name:account_analytic_plans.account_analytic_account_crossovered_analytic -#: model:ir.actions.wizard,name:account_analytic_plans.account_analytic_account_inverted_balance_report -msgid "Crossovered Analytic" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance,account5_ids:0 -msgid "Account5 Id" -msgstr "" - -#. module: account_analytic_plans -#: wizard_field:wizard.crossovered.analytic,init,date2:0 -msgid "End Date" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance.line,rate:0 -msgid "Rate (%)" -msgstr "" - -#. module: account_analytic_plans -#: view:account.analytic.plan:0 -#: field:account.analytic.plan,name:0 -#: field:account.analytic.plan.line,plan_id:0 -#: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_plan_form_action -#: model:ir.ui.menu,name:account_analytic_plans.menu_account_analytic_plan_action -msgid "Analytic Plan" -msgstr "" - -#. module: account_analytic_plans -#: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance_line -msgid "Analytic Instance Line" -msgstr "" - -#. module: account_analytic_plans -#: view:account.analytic.plan.instance.line:0 -msgid "Analytic Distribution Lines" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance,code:0 -msgid "Distribution Code" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance.line,plan_id:0 -msgid "Plan Id" -msgstr "" - -#. module: account_analytic_plans -#: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_plan_instance_action -msgid "Analytic Distribution's Models" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "Account Name" -msgstr "" - -#. module: account_analytic_plans -#: view:account.analytic.plan.instance.line:0 -msgid "Analytic Distribution Line" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "Currency:" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "Percentage" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.line,name:0 -msgid "Plan Name" -msgstr "" - -#. module: account_analytic_plans -#: wizard_field:wizard.crossovered.analytic,init,empty_line:0 -msgid "Dont show empty lines" -msgstr "" - -#. module: account_analytic_plans -#: wizard_view:wizard.crossovered.analytic,init:0 -msgid "Select Information" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance,account3_ids:0 -msgid "Account3 Id" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance,journal_id:0 -#: wizard_field:wizard.crossovered.analytic,init,journal_ids:0 -msgid "Analytic Journal" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "100.00%" -msgstr "" - -#. module: account_analytic_plans -#: wizard_field:wizard.crossovered.analytic,init,ref:0 -msgid "Analytic Account Ref." -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.default,analytics_id:0 -#: view:account.analytic.plan.instance:0 -#: field:account.analytic.plan.instance,name:0 -#: field:account.invoice.line,analytics_id:0 -#: field:account.move.line,analytics_id:0 -msgid "Analytic Distribution" -msgstr "" - -#. module: account_analytic_plans -#: view:account.analytic.plan.line:0 -msgid "Analytic Plan Line" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "Analytic Account Reference:" -msgstr "" - -#. module: account_analytic_plans -#: model:ir.actions.wizard,name:account_analytic_plans.create_model -msgid "Create Model" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan,default_instance_id:0 -msgid "Default Entries" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "to" -msgstr "" - -#. module: account_analytic_plans -#: view:account.analytic.plan:0 -#: field:account.analytic.plan,plan_ids:0 -#: field:account.journal,plan_id:0 -#: model:ir.model,name:account_analytic_plans.model_account_analytic_plan -msgid "Analytic Plans" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance,account1_ids:0 -msgid "Account1 Id" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.line,max_required:0 -msgid "Maximum Allowed (%)" -msgstr "" - -#. module: account_analytic_plans -#: wizard_view:create.model,info:0 -msgid "Distribution Model Saved" -msgstr "" - -#. module: account_analytic_plans -#: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance -msgid "Analytic Plan Instance" -msgstr "" - -#. module: account_analytic_plans -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_analytic_plans -#: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_instance_model_open -msgid "Distribution Models" -msgstr "" - -#. module: account_analytic_plans -#: model:ir.module.module,description:account_analytic_plans.module_meta_information -msgid "This module allows to use several analytic plans, according to the general journal,\n" -"so that multiple analytic lines are created when the invoice or the entries\n" -"are confirmed.\n" -"\n" -"For example, you can define the following analytic structure:\n" -" Projects\n" -" Project 1\n" -" SubProj 1.1\n" -" SubProj 1.2\n" -" Project 2\n" -" Salesman\n" -" Eric\n" -" Fabien\n" -"\n" -"Here, we have two plans: Projects and Salesman. An invoice line must\n" -"be able to write analytic entries in the 2 plans: SubProj 1.1 and\n" -"Fabien. The amount can also be split. The following example is for\n" -"an invoice that touches the two subproject and assigned to one salesman:\n" -"\n" -"Plan1:\n" -" SubProject 1.1 : 50%\n" -" SubProject 1.2 : 50%\n" -"Plan2:\n" -" Eric: 100%\n" -"\n" -"So when this line of invoice will be confirmed, it will generate 3 analytic lines,\n" -"for one account entry.\n" -" " -msgstr "" - -#. module: account_analytic_plans -#: model:ir.module.module,shortdesc:account_analytic_plans.module_meta_information -msgid "Multiple-plans management in Analytic Accounting" -msgstr "" - -#. module: account_analytic_plans -#: view:account.analytic.plan.line:0 -#: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_line -msgid "Analytic Plan Lines" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.line,min_required:0 -msgid "Minimum Allowed (%)" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance,plan_id:0 -msgid "Model's Plan" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance,account2_ids:0 -msgid "Account2 Id" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "Amount" -msgstr "" - -#. module: account_analytic_plans -#: help:account.analytic.plan.line,root_analytic_id:0 -msgid "Root account of this plan." -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance,account6_ids:0 -msgid "Account6 Id" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "Quantity" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance,account_ids:0 -msgid "Account Id" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "Code" -msgstr "" - -#. module: account_analytic_plans -#: wizard_button:create.model,info,end:0 -msgid "OK" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.line,root_analytic_id:0 -msgid "Root Account" -msgstr "" - -#. module: account_analytic_plans -#: wizard_button:wizard.crossovered.analytic,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.line,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "Period from" -msgstr "" - -#. module: account_analytic_plans -#: field:account.analytic.plan.instance.line,analytic_account_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "Printing date:" -msgstr "" - -#. module: account_analytic_plans -#: model:ir.ui.menu,name:account_analytic_plans.menu_account_analytic_plan_instance_action -msgid "Analytic Distribution's models" -msgstr "" - -#. module: account_analytic_plans -#: wizard_view:create.model,info:0 -msgid "This distribution model has been saved. You will be able to reuse it later." -msgstr "" - -#. module: account_analytic_plans -#: wizard_button:wizard.crossovered.analytic,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_analytic_plans -#: wizard_field:wizard.crossovered.analytic,init,date1:0 -msgid "Start Date" -msgstr "" - -#. module: account_analytic_plans -#: rml:account.analytic.account.crossovered.analytic:0 -msgid "at" -msgstr "" - diff --git a/addons/account_balance/i18n/tlh_TLH.po b/addons/account_balance/i18n/tlh_TLH.po deleted file mode 100644 index 4ee65e8d81a..00000000000 --- a/addons/account_balance/i18n/tlh_TLH.po +++ /dev/null @@ -1,277 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Printing date:" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "at" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Currency:" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "Account Balance Module is an added functionality to the Financial Management module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total:" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You may have selected the compare options with more than 1 year with credit/debit columns and % option.This can lead contents to be printed out of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "3. You have selected 'Percentage' option with more than 2 years, but you have not selected landscape format." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Code" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "2. You have not selected 'Percentage' option, but you have selected more than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" - diff --git a/addons/account_budget/i18n/tlh_TLH.po b/addons/account_budget/i18n/tlh_TLH.po deleted file mode 100644 index 341fc5221b9..00000000000 --- a/addons/account_budget/i18n/tlh_TLH.po +++ /dev/null @@ -1,470 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_budget -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_budget -#: field:crossovered.budget,creating_user_id:0 -msgid "Responsible User" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -msgid "% performance" -msgstr "" - -#. module: account_budget -#: model:ir.actions.act_window,name:account_budget.open_budget_post_form -#: model:ir.ui.menu,name:account_budget.menu_budget_post_form -msgid "Budgetary Positions" -msgstr "" - -#. module: account_budget -#: model:ir.actions.report.xml,name:account_budget.account_analytic_account_budget -#: model:ir.actions.report.xml,name:account_budget.report_crossovered_budget -#: model:ir.actions.wizard,name:account_budget.account_analytic_account_budget_report -#: model:ir.actions.wizard,name:account_budget.wizard_crossovered_budget_menu -msgid "Print Budgets" -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "Printed at:" -msgstr "" - -#. module: account_budget -#: view:crossovered.budget:0 -msgid "Confirm" -msgstr "" - -#. module: account_budget -#: field:crossovered.budget,validating_user_id:0 -msgid "Validate User" -msgstr "" - -#. module: account_budget -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_budget -#: selection:crossovered.budget,state:0 -msgid "Confirmed" -msgstr "" - -#. module: account_budget -#: field:account.budget.post.dotation,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_budget -#: wizard_field:account.budget.report,init,date2:0 -#: wizard_field:wizard.analytic.account.budget.report,init,date_to:0 -#: wizard_field:wizard.crossovered.budget,init,date_to:0 -#: wizard_field:wizard.crossovered.budget.summary,init,date_to:0 -msgid "End of period" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -msgid "Printing date:" -msgstr "" - -#. module: account_budget -#: selection:crossovered.budget,state:0 -msgid "Draft" -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -#: rml:account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "at" -msgstr "" - -#. module: account_budget -#: view:account.budget.post:0 -msgid "Dotations" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -msgid "Performance" -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -#: rml:account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "Currency:" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -msgid "From" -msgstr "" - -#. module: account_budget -#: field:crossovered.budget.lines,percentage:0 -msgid "Percentage" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -msgid "Results" -msgstr "" - -#. module: account_budget -#: field:crossovered.budget,state:0 -msgid "Status" -msgstr "" - -#. module: account_budget -#: model:ir.module.module,description:account_budget.module_meta_information -msgid "This module allows accountants to manage analytic and crossovered budgets.\n" -"\n" -"Once the Master Budgets and the Budgets defined (in Financial\n" -"Management/Budgets/), the Project Managers can set the planned amount on each\n" -"Analytic Account.\n" -"\n" -"The accountant has the possibility to see the total of amount planned for each\n" -"Budget and Master Budget in order to ensure the total planned is not\n" -"greater/lower than what he planned for this Budget/Master Budget. Each list of\n" -"record can also be switched to a graphical view of it.\n" -"\n" -"Three reports are available:\n" -" 1. The first is available from a list of Budgets. It gives the spreading, for these Budgets, of the Analytic Accounts per Master Budgets.\n" -"\n" -" 2. The second is a summary of the previous one, it only gives the spreading, for the selected Budgets, of the Analytic Accounts.\n" -"\n" -" 3. The last one is available from the Analytic Chart of Accounts. It gives the spreading, for the selected Analytic Accounts, of the Master Budgets per Budgets.\n" -"\n" -"" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "%" -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "Description" -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -msgid "Analytic Account :" -msgstr "" - -#. module: account_budget -#: wizard_button:account.budget.report,init,report:0 -#: wizard_button:wizard.analytic.account.budget.report,init,report:0 -#: wizard_button:wizard.crossovered.budget,init,report:0 -#: wizard_button:wizard.crossovered.budget.summary,init,report:0 -msgid "Print" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -msgid "A/c No." -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -#: rml:account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "to" -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -#: rml:account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "Total :" -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -#: field:crossovered.budget.lines,planned_amount:0 -#: rml:crossovered.budget.report:0 -msgid "Planned Amount" -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "Perc(%)" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -msgid "Period Budget" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -msgid "Budget Analysis" -msgstr "" - -#. module: account_budget -#: view:crossovered.budget:0 -#: selection:crossovered.budget,state:0 -msgid "Done" -msgstr "" - -#. module: account_budget -#: view:crossovered.budget:0 -msgid "Validate" -msgstr "" - -#. module: account_budget -#: wizard_view:account.budget.report,init:0 -msgid "Select period" -msgstr "" - -#. module: account_budget -#: wizard_view:wizard.crossovered.budget,init:0 -#: wizard_view:wizard.crossovered.budget.summary,init:0 -msgid "Select Options" -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -#: field:crossovered.budget.lines,practical_amount:0 -#: rml:crossovered.budget.report:0 -msgid "Practical Amount" -msgstr "" - -#. module: account_budget -#: field:crossovered.budget,date_to:0 -#: field:crossovered.budget.lines,date_to:0 -msgid "End Date" -msgstr "" - -#. module: account_budget -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_budget -#: field:crossovered.budget.lines,theoritical_amount:0 -msgid "Theoritical Amount" -msgstr "" - -#. module: account_budget -#: field:account.budget.post,name:0 -#: field:account.budget.post.dotation,name:0 -#: field:crossovered.budget,name:0 -msgid "Name" -msgstr "" - -#. module: account_budget -#: model:ir.actions.wizard,name:account_budget.wizard_crossovered_budget_menu_1 -msgid "Print Summary of Budgets" -msgstr "" - -#. module: account_budget -#: model:ir.actions.wizard,name:account_budget.wizard_budget_spread -msgid "Spread amount" -msgstr "" - -#. module: account_budget -#: view:account.analytic.account:0 -#: view:account.budget.post:0 -msgid "Lines" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -#: view:crossovered.budget:0 -#: field:crossovered.budget.lines,crossovered_budget_id:0 -#: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_view -#: model:ir.actions.wizard,name:account_budget.wizard_budget_report -#: model:ir.model,name:account_budget.model_crossovered_budget -#: model:ir.ui.menu,name:account_budget.menu_act_crossovered_budget_view -msgid "Budget" -msgstr "" - -#. module: account_budget -#: field:account.budget.post.dotation,post_id:0 -msgid "Item" -msgstr "" - -#. module: account_budget -#: field:account.budget.post.dotation,amount:0 -#: wizard_field:account.budget.spread,init,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_budget -#: field:crossovered.budget.lines,paid_date:0 -msgid "Paid Date" -msgstr "" - -#. module: account_budget -#: model:ir.actions.act_window,name:account_budget.action_account_budget_post_tree -#: 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 "" - -#. module: account_budget -#: selection:crossovered.budget,state:0 -msgid "Cancelled" -msgstr "" - -#. module: account_budget -#: view:account.budget.post.dotation:0 -#: model:ir.model,name:account_budget.model_account_budget_post_dotation -msgid "Budget Dotation" -msgstr "" - -#. module: account_budget -#: view:account.budget.post.dotation:0 -msgid "Budget Dotations" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -msgid "Budget Item Detail" -msgstr "" - -#. module: account_budget -#: view:account.budget.post:0 -#: field:crossovered.budget.lines,general_budget_id:0 -#: model:ir.model,name:account_budget.model_account_budget_post -msgid "Budgetary Position" -msgstr "" - -#. module: account_budget -#: wizard_field:account.budget.report,init,date1:0 -#: wizard_field:wizard.analytic.account.budget.report,init,date_from:0 -#: wizard_field:wizard.crossovered.budget,init,date_from:0 -#: wizard_field:wizard.crossovered.budget.summary,init,date_from:0 -msgid "Start of period" -msgstr "" - -#. module: account_budget -#: field:account.budget.post,code:0 -#: field:crossovered.budget,code:0 -msgid "Code" -msgstr "" - -#. module: account_budget -#: field:account.budget.post.dotation,tot_planned:0 -msgid "Total Planned Amount" -msgstr "" - -#. module: account_budget -#: wizard_view:wizard.analytic.account.budget.report,init:0 -msgid "Select Dates Period" -msgstr "" - -#. module: account_budget -#: field:account.budget.post,dotation_ids:0 -msgid "Spreading" -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "Theoretical Amount" -msgstr "" - -#. module: account_budget -#: wizard_field:account.budget.spread,init,fiscalyear:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_budget -#: field:crossovered.budget.lines,analytic_account_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_budget -#: rml:crossovered.budget.report:0 -msgid "Budget :" -msgstr "" - -#. module: account_budget -#: rml:account.budget:0 -#: view:account.budget.post:0 -#: wizard_view:account.budget.spread,init:0 -#: wizard_button:account.budget.spread,init,spread:0 -msgid "Spread" -msgstr "" - -#. module: account_budget -#: view:account.budget.post:0 -#: field:account.budget.post,account_ids:0 -msgid "Accounts" -msgstr "" - -#. module: account_budget -#: model:ir.actions.report.xml,name:account_budget.account_budget -msgid "Print Budget" -msgstr "" - -#. module: account_budget -#: view:account.analytic.account:0 -#: field:account.analytic.account,crossovered_budget_line:0 -#: view:account.budget.post:0 -#: field:account.budget.post,crossovered_budget_line:0 -#: view:crossovered.budget:0 -#: field:crossovered.budget,crossovered_budget_line:0 -#: view:crossovered.budget.lines:0 -#: model:ir.actions.act_window,name:account_budget.act_account_analytic_account_cb_lines -#: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_lines_view -#: model:ir.model,name:account_budget.model_crossovered_budget_lines -#: model:ir.ui.menu,name:account_budget.menu_act_crossovered_budget_lines_view -msgid "Budget Lines" -msgstr "" - -#. module: account_budget -#: wizard_button:account.budget.report,init,end:0 -#: wizard_button:account.budget.spread,init,end:0 -#: view:crossovered.budget:0 -#: wizard_button:wizard.analytic.account.budget.report,init,end:0 -#: wizard_button:wizard.crossovered.budget,init,end:0 -#: wizard_button:wizard.crossovered.budget.summary,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_budget -#: model:ir.module.module,shortdesc:account_budget.module_meta_information -msgid "Budget Management" -msgstr "" - -#. module: account_budget -#: field:crossovered.budget,date_from:0 -#: field:crossovered.budget.lines,date_from:0 -msgid "Start Date" -msgstr "" - -#. module: account_budget -#: rml:account.analytic.account.budget:0 -#: rml:crossovered.budget.report:0 -msgid "Analysis from" -msgstr "" - -#. module: account_budget -#: selection:crossovered.budget,state:0 -msgid "Validated" -msgstr "" - diff --git a/addons/account_chart/i18n/tlh_TLH.po b/addons/account_chart/i18n/tlh_TLH.po deleted file mode 100644 index 8fa829697f5..00000000000 --- a/addons/account_chart/i18n/tlh_TLH.po +++ /dev/null @@ -1,22 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_chart -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_chart -#: model:ir.module.module,description:account_chart.module_meta_information -msgid "Remove minimal account chart" -msgstr "" - diff --git a/addons/account_date_check/i18n/tlh_TLH.po b/addons/account_date_check/i18n/tlh_TLH.po deleted file mode 100644 index c42830de832..00000000000 --- a/addons/account_date_check/i18n/tlh_TLH.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_date_check -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_date_check -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_date_check -#: field:account.journal,allow_date:0 -msgid "Allows date not in the period" -msgstr "" - -#. module: account_date_check -#: model:ir.module.module,shortdesc:account_date_check.module_meta_information -msgid "Account Date check" -msgstr "" - diff --git a/addons/account_followup/i18n/tlh_TLH.po b/addons/account_followup/i18n/tlh_TLH.po deleted file mode 100644 index 312c99fd343..00000000000 --- a/addons/account_followup/i18n/tlh_TLH.po +++ /dev/null @@ -1,498 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_followup -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_followup -#: wizard_field:account_followup.followup.print.all,next,partner_ids:0 -msgid "Partners" -msgstr "" - -#. module: account_followup -#: field:account_followup.followup.line,start:0 -msgid "Type of Term" -msgstr "" - -#. module: account_followup -#: model:ir.actions.act_window,name:account_followup.act_account_partner_account_move_payable_all -#: model:ir.ui.menu,name:account_followup.menu_account_move_open_unreconcile_payable -msgid "All payable entries" -msgstr "" - -#. module: account_followup -#: field:account_followup.followup.line,description:0 -msgid "Printed Message" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Date:" -msgstr "" - -#. module: account_followup -#: selection:account_followup.followup.line,start:0 -msgid "End of Month" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Due" -msgstr "" - -#. module: account_followup -#: view:account_followup.followup.line:0 -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "%(user_signature)s: User name" -msgstr "" - -#. module: account_followup -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "Select partners" -msgstr "" - -#. module: account_followup -#: view:account_followup.followup:0 -#: field:account_followup.followup,followup_line:0 -msgid "Follow-Up" -msgstr "" - -#. module: account_followup -#: field:account_followup.stat,debit:0 -msgid "Debit" -msgstr "" - -#. module: account_followup -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "Email Settings" -msgstr "" - -#. module: account_followup -#: field:account_followup.stat,account_type:0 -msgid "Account Type" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Ref" -msgstr "" - -#. module: account_followup -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "%(followup_amount)s: Total Amount Due" -msgstr "" - -#. module: account_followup -#: view:account_followup.followup.line:0 -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "%(date)s: Current Date" -msgstr "" - -#. module: account_followup -#: field:account_followup.followup,name:0 -#: field:account_followup.followup.line,name:0 -msgid "Name" -msgstr "" - -#. module: account_followup -#: code:addons/account_followup/wizard/wizard_followup_print.py:0 -#, python-format -msgid "\n\nMail sent to following Partners successfully, !\n\n" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Customer Ref:" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Document" -msgstr "" - -#. module: account_followup -#: wizard_field:account_followup.followup.print.all,init,date:0 -msgid "Follow-up Sending Date" -msgstr "" - -#. module: account_followup -#: view:account_followup.followup:0 -#: field:account_followup.followup,description:0 -#: rml:account_followup.followup.print:0 -msgid "Description" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Balance:" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "VAT:" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Customer account statement" -msgstr "" - -#. module: account_followup -#: field:account_followup.followup,company_id:0 -msgid "Company" -msgstr "" - -#. module: account_followup -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - -#. module: account_followup -#: wizard_field:account_followup.followup.print.all,next,email_subject:0 -msgid "Email Subject" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Paid" -msgstr "" - -#. module: account_followup -#: view:account.move.line:0 -msgid "Total credit" -msgstr "" - -#. module: account_followup -#: model:ir.actions.wizard,name:account_followup.action_account_followup_all_wizard -#: model:ir.ui.menu,name:account_followup.account_followup_wizard_menu -msgid "Send followups" -msgstr "" - -#. module: account_followup -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_followup -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "%(line)s: Account Move lines" -msgstr "" - -#. module: account_followup -#: field:account_followup.stat,date_followup:0 -msgid "Latest followup" -msgstr "" - -#. module: account_followup -#: view:account.move.line:0 -msgid "Partner entries" -msgstr "" - -#. module: account_followup -#: field:account_followup.followup.line,followup_id:0 -#: field:account_followup.stat,followup_id:0 -msgid "Follow Ups" -msgstr "" - -#. module: account_followup -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "Partner Selection" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Date" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid ":" -msgstr "" - -#. module: account_followup -#: wizard_view:account_followup.followup.print.all,init:0 -msgid "Follow-up and Date Selection" -msgstr "" - -#. module: account_followup -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "Select partners to remind" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Li." -msgstr "" - -#. module: account_followup -#: model:account_followup.followup.line,description:account_followup.demo_followup_line1 -msgid "\n" -"Dear %(partner_name)s,\n" -"\n" -"Exception made if there was a mistake of ours, it seems that the following amount staid unpaid. Please, take appropriate measures in order to carry out this payment in the next 8 days.\n" -"\n" -"Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting department at (+32).10.68.94.39.\n" -"\n" -"Best Regards,\n" -" " -msgstr "" - -#. module: account_followup -#: wizard_button:account_followup.followup.print.all,summary,end:0 -msgid "Ok" -msgstr "" - -#. module: account_followup -#: model:ir.model,name:account_followup.model_account_followup_followup_line -msgid "Follow-Ups Criteria" -msgstr "" - -#. module: account_followup -#: field:account_followup.stat,date_move:0 -msgid "First move" -msgstr "" - -#. module: account_followup -#: code:addons/account_followup/wizard/wizard_followup_print.py:0 -#, python-format -msgid "Mail not sent to following Partners, Email not available !\n\n" -msgstr "" - -#. module: account_followup -#: view:account_followup.followup.line:0 -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "%(company_name)s: User's Company name" -msgstr "" - -#. module: account_followup -#: model:ir.actions.act_window,name:account_followup.act_account_partner_account_move_all -#: model:ir.ui.menu,name:account_followup.menu_account_move_open_unreconcile -msgid "All receivable entries" -msgstr "" - -#. module: account_followup -#: view:account_followup.followup:0 -msgid "Lines" -msgstr "" - -#. module: account_followup -#: field:account.move.line,followup_date:0 -msgid "Latest Follow-up" -msgstr "" - -#. module: account_followup -#: field:account.move.line,followup_line_id:0 -msgid "Follow-up Level" -msgstr "" - -#. module: account_followup -#: field:account_followup.stat,credit:0 -msgid "Credit" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Amount" -msgstr "" - -#. module: account_followup -#: wizard_button:account_followup.followup.print.all,init,next:0 -msgid "Continue" -msgstr "" - -#. module: account_followup -#: model:ir.module.module,shortdesc:account_followup.module_meta_information -msgid "Accounting follow-ups management" -msgstr "" - -#. module: account_followup -#: wizard_view:account_followup.followup.print.all,summary:0 -#: wizard_field:account_followup.followup.print.all,summary,summary:0 -msgid "Summary" -msgstr "" - -#. module: account_followup -#: view:account_followup.followup.line:0 -msgid "Follow-Up Lines" -msgstr "" - -#. module: account_followup -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_followup -#: view:account_followup.stat:0 -msgid "Follow-Up lines" -msgstr "" - -#. module: account_followup -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "%(company_currency)s: User's Company Currency" -msgstr "" - -#. module: account_followup -#: field:account_followup.stat,balance:0 -msgid "Balance" -msgstr "" - -#. module: account_followup -#: help:account_followup.followup.print.all,init,date:0 -msgid "This field allow you to select a forecast date to plan your follow-ups" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Maturity date" -msgstr "" - -#. module: account_followup -#: model:account_followup.followup.line,description:account_followup.demo_followup_line2 -msgid "\n" -"Dear %(partner_name)s,\n" -"\n" -"We are disappointed to see that despite sending a reminder, that your account is now seriously overdue.\n" -"\n" -"It is essential that immediate payment is made, otherwise we will have to consider placing a stop on your account which means that we will no longer be able to supply your company with (goods/services).\n" -"Please, take appropriate measures in order to carry out this payment in the next 8 days\n" -"\n" -"If there is a problem with paying invoice that we are not aware of, do not hesitate to contact our accounting department at (+32).10.68.94.39. so that we can resolve the matter quickly.\n" -"\n" -"Details of due payments is printed below.\n" -"\n" -"Best Regards,\n" -" " -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Sub-Total:" -msgstr "" - -#. module: account_followup -#: selection:account_followup.followup.line,start:0 -msgid "Net Days" -msgstr "" - -#. module: account_followup -#: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form -#: model:ir.actions.act_window,name:account_followup.action_followup_stat -#: model:ir.model,name:account_followup.model_account_followup_followup -#: model:ir.ui.menu,name:account_followup.account_followup_menu -#: model:ir.ui.menu,name:account_followup.menu_action_followup_stat -msgid "Follow-Ups" -msgstr "" - -#. module: account_followup -#: wizard_view:account_followup.followup.print.all,next:0 -#: wizard_field:account_followup.followup.print.all,next,email_body:0 -msgid "Email body" -msgstr "" - -#. module: account_followup -#: field:account_followup.stat,date_move_last:0 -msgid "Last move" -msgstr "" - -#. module: account_followup -#: rml:account_followup.followup.print:0 -msgid "Maturity" -msgstr "" - -#. module: account_followup -#: model:ir.actions.report.xml,name:account_followup.account_followup_followup_report -msgid "Followup Report" -msgstr "" - -#. module: account_followup -#: model:account_followup.followup.line,description:account_followup.demo_followup_line3 -msgid "\n" -"Dear %(partner_name)s,\n" -"\n" -"Despite several reminders, your account is still not settled.\n" -"\n" -"Unless full payment is made in next 8 days , then legal action for the recovery of the debt, will be taken without further notice.\n" -"\n" -"I trust that this action will prove unnecessary and details of due payments is printed below.\n" -"\n" -"In case of any queries concerning this matter, do not hesitate to contact our accounting department at (+32).10.68.94.39.\n" -"\n" -"Best Regards,\n" -" " -msgstr "" - -#. module: account_followup -#: model:ir.model,name:account_followup.model_account_followup_stat -msgid "Followup statistics" -msgstr "" - -#. module: account_followup -#: view:account_followup.followup.line:0 -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "Legend" -msgstr "" - -#. module: account_followup -#: field:account_followup.followup.line,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_followup -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "%(heading)s: Move line header" -msgstr "" - -#. module: account_followup -#: view:account_followup.followup.line:0 -#: wizard_view:account_followup.followup.print.all,next:0 -msgid "%(partner_name)s: Partner name" -msgstr "" - -#. module: account_followup -#: wizard_field:account_followup.followup.print.all,next,email_conf:0 -msgid "Send email confirmation" -msgstr "" - -#. module: account_followup -#: wizard_field:account_followup.followup.print.all,init,followup_id:0 -msgid "Follow-up" -msgstr "" - -#. module: account_followup -#: field:account_followup.stat,name:0 -msgid "Partner" -msgstr "" - -#. module: account_followup -#: wizard_button:account_followup.followup.print.all,init,end:0 -#: wizard_button:account_followup.followup.print.all,next,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_followup -#: field:account_followup.followup.line,delay:0 -msgid "Days of delay" -msgstr "" - -#. module: account_followup -#: code:addons/account_followup/wizard/wizard_followup_print.py:0 -#, python-format -msgid "All emails have been successfully sent to Partners:.\n\n" -msgstr "" - -#. module: account_followup -#: wizard_button:account_followup.followup.print.all,next,print:0 -msgid "Print Follow Ups & Send Mails" -msgstr "" - diff --git a/addons/account_invoice_layout/i18n/tlh_TLH.po b/addons/account_invoice_layout/i18n/tlh_TLH.po deleted file mode 100644 index a19a268f5de..00000000000 --- a/addons/account_invoice_layout/i18n/tlh_TLH.po +++ /dev/null @@ -1,293 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_invoice_layout -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_invoice_layout -#: selection:account.invoice.line,state:0 -msgid "Sub Total" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Invoice Date:" -msgstr "" - -#. module: account_invoice_layout -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_invoice_layout -#: selection:account.invoice.line,state:0 -#: field:notify.message,name:0 -msgid "Title" -msgstr "" - -#. module: account_invoice_layout -#: model:ir.actions.wizard,name:account_invoice_layout.wizard_notify_message -msgid "Invoices with Layout and Message" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Disc. (%)" -msgstr "" - -#. module: account_invoice_layout -#: selection:account.invoice.line,state:0 -msgid "Note" -msgstr "" - -#. module: account_invoice_layout -#: wizard_button:wizard.notify_message,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_invoice_layout -#: help:notify.message,msg:0 -msgid "This notification will appear at the bottom of the Invoices when printed." -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Unit Price" -msgstr "" - -#. module: account_invoice_layout -#: model:ir.model,name:account_invoice_layout.model_notify_message -msgid "Notify By Messages" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Document" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_invoice_layout -#: field:account.invoice,abstract_line_ids:0 -msgid "Invoice Lines" -msgstr "" - -#. module: account_invoice_layout -#: view:account.invoice.line:0 -msgid "Seq." -msgstr "" - -#. module: account_invoice_layout -#: model:ir.ui.menu,name:account_invoice_layout.menu_finan_config_notify_message -msgid "Notification Message" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Customer Ref:" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Description" -msgstr "" - -#. module: account_invoice_layout -#: model:ir.module.module,shortdesc:account_invoice_layout.module_meta_information -msgid "account_invoice_layout" -msgstr "" - -#. module: account_invoice_layout -#: field:account.invoice.line,state:0 -msgid "Type" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Price" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Canceled Invoice" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Taxes:" -msgstr "" - -#. module: account_invoice_layout -#: field:account.invoice.line,functional_field:0 -msgid "Source Account" -msgstr "" - -#. module: account_invoice_layout -#: model:ir.actions.act_window,name:account_invoice_layout.notify_mesage_tree_form -msgid "Write Messages" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Base" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Fax :" -msgstr "" - -#. module: account_invoice_layout -#: field:notify.message,msg:0 -msgid "Special Message" -msgstr "" - -#. module: account_invoice_layout -#: view:notify.message:0 -msgid "Write a notification or a wishful message." -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid ":" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Tel. :" -msgstr "" - -#. module: account_invoice_layout -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_invoice_layout -#: selection:account.invoice.line,state:0 -msgid "Page Break" -msgstr "" - -#. module: account_invoice_layout -#: wizard_view:wizard.notify_message,init:0 -msgid "Select Message" -msgstr "" - -#. module: account_invoice_layout -#: view:notify.message:0 -msgid "Messages" -msgstr "" - -#. module: account_invoice_layout -#: selection:account.invoice.line,state:0 -msgid "Product" -msgstr "" - -#. module: account_invoice_layout -#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_1 -msgid "Invoices with Layout" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Amount" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Total (excl. taxes):" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Taxes" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Draft Invoice" -msgstr "" - -#. module: account_invoice_layout -#: field:account.invoice.line,sequence:0 -msgid "Sequence Number" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Quantity" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Refund" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "VAT :" -msgstr "" - -#. module: account_invoice_layout -#: selection:account.invoice.line,state:0 -msgid "Separator Line" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Supplier Invoice" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Tax" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "(incl. taxes):" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Invoice" -msgstr "" - -#. module: account_invoice_layout -#: wizard_button:wizard.notify_message,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Supplier Refund" -msgstr "" - -#. module: account_invoice_layout -#: wizard_field:wizard.notify_message,init,message:0 -msgid "Message" -msgstr "" - -#. module: account_invoice_layout -#: rml:account.invoice.layout:0 -msgid "Total" -msgstr "" - -#. module: account_invoice_layout -#: model:ir.ui.menu,name:account_invoice_layout.menu_notify_mesage_tree_form -msgid "All Notification Messages" -msgstr "" - diff --git a/addons/account_payment/i18n/tlh_TLH.po b/addons/account_payment/i18n/tlh_TLH.po deleted file mode 100644 index 816d5de22de..00000000000 --- a/addons/account_payment/i18n/tlh_TLH.po +++ /dev/null @@ -1,617 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_payment -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_payment -#: field:payment.order,date_planned:0 -msgid "Scheduled date if fixed" -msgstr "" - -#. module: account_payment -#: field:payment.line,currency:0 -msgid "Partner Currency" -msgstr "" - -#. module: account_payment -#: view:payment.order:0 -msgid "Set to draft" -msgstr "" - -#. module: account_payment -#: help:payment.order,mode:0 -msgid "Select the Payment Mode to be applied." -msgstr "" - -#. module: account_payment -#: field:payment.order,line_ids:0 -msgid "Payment lines" -msgstr "" - -#. module: account_payment -#: view:payment.line:0 -#: field:payment.line,info_owner:0 -#: view:payment.order:0 -msgid "Owner Account" -msgstr "" - -#. module: account_payment -#: help:account.invoice,amount_to_pay:0 -msgid "The amount which should be paid at the current date\n" -"minus the amount which is already in payment order" -msgstr "" - -#. module: account_payment -#: help:payment.line,date:0 -msgid "If no payment date is specified, the bank will treat this payment line directly" -msgstr "" - -#. module: account_payment -#: field:payment.order,date_prefered:0 -msgid "Preferred date" -msgstr "" - -#. module: account_payment -#: selection:payment.line,state:0 -msgid "Free" -msgstr "" - -#. module: account_payment -#: wizard_field:populate_payment,search,entries:0 -msgid "Entries" -msgstr "" - -#. module: account_payment -#: wizard_field:populate_payment,init,duedate:0 -msgid "Due Date" -msgstr "" - -#. module: account_payment -#: view:account.move.line:0 -msgid "Account Entry Line" -msgstr "" - -#. module: account_payment -#: wizard_button:populate_payment,search,create:0 -msgid "_Add to payment order" -msgstr "" - -#. module: account_payment -#: rml:payment.order:0 -#: view:payment.order:0 -msgid "Amount" -msgstr "" - -#. module: account_payment -#: rml:payment.order:0 -msgid "Execution date:" -msgstr "" - -#. module: account_payment -#: view:payment.order:0 -msgid "Total in Company Currency" -msgstr "" - -#. module: account_payment -#: selection:payment.order,state:0 -msgid "Cancelled" -msgstr "" - -#. module: account_payment -#: model:ir.actions.act_window,name:account_payment.action_payment_order_tree_new -#: model:ir.ui.menu,name:account_payment.menu_action_payment_order_form_new -msgid "New Payment Order" -msgstr "" - -#. module: account_payment -#: rml:payment.order:0 -#: field:payment.order,reference:0 -msgid "Reference" -msgstr "" - -#. module: account_payment -#: model:ir.actions.act_window,name:account_payment.action_payment_order_tree -#: model:ir.ui.menu,name:account_payment.menu_action_payment_order_form -msgid "Payment Orders" -msgstr "" - -#. module: account_payment -#: selection:payment.order,date_prefered:0 -msgid "Directly" -msgstr "" - -#. module: account_payment -#: model:ir.actions.act_window,name:account_payment.action_payment_line_form -#: model:ir.model,name:account_payment.model_payment_line -#: view:payment.line:0 -#: view:payment.order:0 -msgid "Payment Line" -msgstr "" - -#. module: account_payment -#: field:payment.type,suitable_bank_types:0 -msgid "Suitable bank types" -msgstr "" - -#. module: account_payment -#: view:payment.line:0 -msgid "Amount Total" -msgstr "" - -#. module: account_payment -#: selection:payment.order,state:0 -msgid "Confirmed" -msgstr "" - -#. module: account_payment -#: help:payment.line,ml_date_created:0 -msgid "Invoice Effective Date" -msgstr "" - -#. module: account_payment -#: help:payment.order,date_planned:0 -msgid "Select a date if you have chosen Preferred Date to be fixed." -msgstr "" - -#. module: account_payment -#: selection:payment.line,state:0 -msgid "Structured" -msgstr "" - -#. module: account_payment -#: field:payment.order,state:0 -msgid "State" -msgstr "" - -#. module: account_payment -#: view:payment.line:0 -#: view:payment.order:0 -msgid "Transaction Information" -msgstr "" - -#. module: account_payment -#: model:ir.actions.act_window,name:account_payment.action_payment_mode_form -#: model:ir.ui.menu,name:account_payment.menu_action_payment_mode_form -#: view:payment.mode:0 -msgid "Payment Mode" -msgstr "" - -#. module: account_payment -#: field:payment.line,ml_date_created:0 -msgid "Effective Date" -msgstr "" - -#. module: account_payment -#: field:payment.line,ml_inv_ref:0 -msgid "Invoice Ref." -msgstr "" - -#. module: account_payment -#: help:payment.order,date_prefered:0 -msgid "Choose an option for the Payment Order:'Fixed' stands for a date specified by you.'Directly' stands for the direct execution.'Due date' stands for the scheduled date of execution." -msgstr "" - -#. module: account_payment -#: code:addons/account_payment/account_move_line.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: account_payment -#: view:account.move.line:0 -msgid "Total debit" -msgstr "" - -#. module: account_payment -#: field:payment.order,date_done:0 -msgid "Execution date" -msgstr "" - -#. module: account_payment -#: selection:payment.order,date_prefered:0 -msgid "Fixed date" -msgstr "" - -#. module: account_payment -#: field:payment.line,info_partner:0 -msgid "Destination Account" -msgstr "" - -#. module: account_payment -#: view:payment.line:0 -#: view:payment.order:0 -msgid "Desitination Account" -msgstr "" - -#. module: account_payment -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_payment -#: wizard_button:populate_payment,init,end:0 -#: wizard_button:populate_payment,search,end:0 -#: wizard_button:populate_statement,init,end:0 -msgid "_Cancel" -msgstr "" - -#. module: account_payment -#: field:payment.line,create_date:0 -msgid "Created" -msgstr "" - -#. module: account_payment -#: view:payment.order:0 -msgid "Select Invoices to Pay" -msgstr "" - -#. module: account_payment -#: view:payment.line:0 -msgid "Currency Amount Total" -msgstr "" - -#. module: account_payment -#: view:payment.order:0 -msgid "Make Payments" -msgstr "" - -#. module: account_payment -#: field:payment.line,state:0 -msgid "Communication Type" -msgstr "" - -#. module: account_payment -#: model:ir.module.module,shortdesc:account_payment.module_meta_information -msgid "Payment Management" -msgstr "" - -#. module: account_payment -#: selection:payment.order,date_prefered:0 -msgid "Due date" -msgstr "" - -#. module: account_payment -#: field:account.invoice,amount_to_pay:0 -msgid "Amount to be paid" -msgstr "" - -#. module: account_payment -#: help:payment.line,info_owner:0 -msgid "Address of the Main Partner" -msgstr "" - -#. module: account_payment -#: help:payment.mode,name:0 -msgid "Mode of Payment" -msgstr "" - -#. module: account_payment -#: view:payment.type:0 -#: help:payment.type,name:0 -msgid "Payment Type" -msgstr "" - -#. module: account_payment -#: help:payment.line,amount_currency:0 -msgid "Payment amount in the partner currency" -msgstr "" - -#. module: account_payment -#: selection:payment.order,state:0 -msgid "Draft" -msgstr "" - -#. module: account_payment -#: field:payment.line,partner_id:0 -#: rml:payment.order:0 -msgid "Partner" -msgstr "" - -#. module: account_payment -#: help:payment.line,communication2:0 -msgid "The successor message of Communication." -msgstr "" - -#. module: account_payment -#: code:addons/account_payment/account_move_line.py:0 -#, python-format -msgid "No partner defined on entry line" -msgstr "" - -#. module: account_payment -#: help:payment.line,info_partner:0 -msgid "Address of the Ordering Customer." -msgstr "" - -#. module: account_payment -#: view:account.move.line:0 -msgid "Total credit" -msgstr "" - -#. module: account_payment -#: model:ir.actions.wizard,name:account_payment.wizard_populate_payment -msgid "Populate payment" -msgstr "" - -#. module: account_payment -#: field:payment.order,user_id:0 -msgid "User" -msgstr "" - -#. module: account_payment -#: model:ir.actions.act_window,name:account_payment.act_account_invoice_2_payment_line -#: wizard_field:populate_statement,init,lines:0 -msgid "Payment Lines" -msgstr "" - -#. module: account_payment -#: rml:payment.order:0 -msgid "Date" -msgstr "" - -#. module: account_payment -#: rml:payment.order:0 -msgid "Reference:" -msgstr "" - -#. module: account_payment -#: help:payment.line,move_line_id:0 -msgid "This Entry Line will be referred for the information of the ordering customer." -msgstr "" - -#. module: account_payment -#: field:payment.line,date:0 -msgid "Payment Date" -msgstr "" - -#. module: account_payment -#: field:payment.order,date_created:0 -msgid "Creation date" -msgstr "" - -#. module: account_payment -#: field:payment.line,ml_maturity_date:0 -msgid "Maturity Date" -msgstr "" - -#. module: account_payment -#: view:account.bank.statement:0 -msgid "Import payment lines" -msgstr "" - -#. module: account_payment -#: help:payment.type,code:0 -msgid "Specify the Code for Payment Type" -msgstr "" - -#. module: account_payment -#: field:account.move.line,amount_to_pay:0 -msgid "Amount to pay" -msgstr "" - -#. module: account_payment -#: field:payment.line,amount:0 -msgid "Amount in Company Currency" -msgstr "" - -#. module: account_payment -#: help:payment.line,partner_id:0 -msgid "The Ordering Customer" -msgstr "" - -#. module: account_payment -#: field:payment.type,code:0 -msgid "Code" -msgstr "" - -#. module: account_payment -#: help:payment.line,communication:0 -msgid "Used as the message between ordering customer and current company.Depicts 'What do you want to say to the receipent about this oder?'" -msgstr "" - -#. module: account_payment -#: view:payment.order:0 -msgid "Payment order" -msgstr "" - -#. module: account_payment -#: view:payment.line:0 -#: view:payment.order:0 -msgid "General Information" -msgstr "" - -#. module: account_payment -#: selection:payment.order,state:0 -msgid "Done" -msgstr "" - -#. module: account_payment -#: field:payment.line,communication:0 -msgid "Communication" -msgstr "" - -#. module: account_payment -#: view:payment.order:0 -msgid "Cancel" -msgstr "" - -#. module: account_payment -#: view:payment.line:0 -#: view:payment.order:0 -msgid "Information" -msgstr "" - -#. module: account_payment -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_payment -#: model:ir.actions.wizard,name:account_payment.wizard_pay_payment -msgid "Pay" -msgstr "" - -#. module: account_payment -#: model:ir.actions.report.xml,name:account_payment.payment_order1 -#: model:ir.model,name:account_payment.model_payment_order -msgid "Payment Order" -msgstr "" - -#. module: account_payment -#: model:ir.actions.act_window,name:account_payment.action_payment_order_draft -#: model:ir.ui.menu,name:account_payment.menu_action_payment_order_draft -msgid "Draft Payment Order" -msgstr "" - -#. module: account_payment -#: help:payment.line,amount:0 -msgid "Payment amount in the company currency" -msgstr "" - -#. module: account_payment -#: wizard_view:populate_payment,init:0 -msgid "Search Payment lines" -msgstr "" - -#. module: account_payment -#: field:payment.line,amount_currency:0 -msgid "Amount in Partner Currency" -msgstr "" - -#. module: account_payment -#: field:payment.line,communication2:0 -msgid "Communication 2" -msgstr "" - -#. module: account_payment -#: field:payment.line,bank_id:0 -msgid "Destination Bank account" -msgstr "" - -#. module: account_payment -#: help:payment.mode,journal:0 -msgid "Cash Journal for the Payment Mode" -msgstr "" - -#. module: account_payment -#: field:payment.mode,bank_id:0 -#: rml:payment.order:0 -msgid "Bank account" -msgstr "" - -#. module: account_payment -#: view:payment.order:0 -msgid "Confirm Payments" -msgstr "" - -#. module: account_payment -#: field:payment.line,company_currency:0 -msgid "Company Currency" -msgstr "" - -#. module: account_payment -#: model:ir.ui.menu,name:account_payment.menu_main -#: model:ir.ui.menu,name:account_payment.next_id_44 -#: view:payment.line:0 -#: view:payment.order:0 -msgid "Payment" -msgstr "" - -#. module: account_payment -#: field:payment.line,move_line_id:0 -msgid "Entry line" -msgstr "" - -#. module: account_payment -#: field:payment.mode,name:0 -#: field:payment.type,name:0 -msgid "Name" -msgstr "" - -#. module: account_payment -#: wizard_button:populate_payment,init,search:0 -msgid "_Search" -msgstr "" - -#. module: account_payment -#: view:payment.line:0 -#: view:payment.order:0 -msgid "Entry Information" -msgstr "" - -#. module: account_payment -#: code:addons/account_payment/account_move_line.py:0 -#, python-format -msgid "Partner '+ line.partner_id.name+ ' has no bank account defined" -msgstr "" - -#. module: account_payment -#: model:ir.actions.wizard,name:account_payment.wizard_populate_statement -msgid "Populate Statement with Payment lines" -msgstr "" - -#. module: account_payment -#: field:payment.line,order_id:0 -msgid "Order" -msgstr "" - -#. module: account_payment -#: model:ir.actions.act_window,name:account_payment.action_payment_order_open -#: model:ir.ui.menu,name:account_payment.menu_action_payment_order_open -msgid "Payment Orders to Validate" -msgstr "" - -#. module: account_payment -#: model:ir.model,name:account_payment.model_payment_type -#: field:payment.mode,type:0 -msgid "Payment type" -msgstr "" - -#. module: account_payment -#: field:payment.order,total:0 -msgid "Total" -msgstr "" - -#. module: account_payment -#: wizard_button:populate_statement,init,add:0 -msgid "_Add" -msgstr "" - -#. module: account_payment -#: help:payment.mode,type:0 -msgid "Select the Payment Type for the Payment Mode." -msgstr "" - -#. module: account_payment -#: model:ir.model,name:account_payment.model_payment_mode -#: field:payment.order,mode:0 -msgid "Payment mode" -msgstr "" - -#. module: account_payment -#: help:payment.mode,bank_id:0 -msgid "Bank Account for the Payment Mode" -msgstr "" - -#. module: account_payment -#: field:payment.line,name:0 -msgid "Your Reference" -msgstr "" - -#. module: account_payment -#: field:payment.mode,journal:0 -msgid "Journal" -msgstr "" - diff --git a/addons/account_report/i18n/tlh_TLH.po b/addons/account_report/i18n/tlh_TLH.po deleted file mode 100644 index f1a93b972ae..00000000000 --- a/addons/account_report/i18n/tlh_TLH.po +++ /dev/null @@ -1,528 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: code:addons/account_report/account.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "When the indicators are printed, if one indicator is set with this field to True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Note: The second arguement 'fiscalyear' and 'period' are optional arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: code:addons/account_report/account.py:0 -#, python-format -msgid "You cannot delete an indicator history record. You may have to delete the concerned Indicator!" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "If the field is set to True, information will be printed as a Graph, otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" - diff --git a/addons/account_reporting/i18n/tlh_TLH.po b/addons/account_reporting/i18n/tlh_TLH.po deleted file mode 100644 index 0b3390ed916..00000000000 --- a/addons/account_reporting/i18n/tlh_TLH.po +++ /dev/null @@ -1,236 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_reporting -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_reporting -#: field:color.rml,code:0 -msgid "code" -msgstr "" - -#. module: account_reporting -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,font_style:0 -msgid "Helvetica-Bold" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,font_style:0 -msgid "Helvetica" -msgstr "" - -#. module: account_reporting -#: field:account.report.bs,note:0 -msgid "Note" -msgstr "" - -#. module: account_reporting -#: field:account.report.bs,report_type:0 -msgid "Report Type" -msgstr "" - -#. module: account_reporting -#: model:ir.ui.menu,name:account_reporting.action_account_report_bs_form -#: model:ir.ui.menu,name:account_reporting.menu_finan_config_BSheet -msgid "Balance Sheet Report" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,font_style:0 -msgid "Courier" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,font_style:0 -msgid "Courier-BoldOblique" -msgstr "" - -#. module: account_reporting -#: wizard_button:account.account.balancesheet.report,init,report:0 -msgid "Print BalanceSheet" -msgstr "" - -#. module: account_reporting -#: help:account.account.balancesheet.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_reporting -#: field:account.report.bs,color_font:0 -msgid "Font Color" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,report_type:0 -msgid "Report Objects With Accounts and child of Accounts" -msgstr "" - -#. module: account_reporting -#: model:ir.module.module,description:account_reporting.module_meta_information -msgid "Financial and accounting reporting\n" -" Balance Sheet Report" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,report_type:0 -msgid "Report Objects With Accounts" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,font_style:0 -msgid "Courier-Oblique" -msgstr "" - -#. module: account_reporting -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_reporting -#: field:account.report.bs,name:0 -#: field:color.rml,name:0 -msgid "Name" -msgstr "" - -#. module: account_reporting -#: view:account.report.bs:0 -msgid "Account reporting" -msgstr "" - -#. module: account_reporting -#: model:ir.ui.menu,name:account_reporting.bs_report_action_form -msgid "Balance Sheet Report Form" -msgstr "" - -#. module: account_reporting -#: view:account.report.bs:0 -msgid "Notes" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,font_style:0 -msgid "Times-BoldItalic" -msgstr "" - -#. module: account_reporting -#: model:ir.model,name:account_reporting.model_account_report_bs -msgid "Account reporting for Balance Sheet" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,font_style:0 -msgid "Courier-Bold" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,font_style:0 -msgid "Times-Italic" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,report_type:0 -msgid "Report Objects Only" -msgstr "" - -#. module: account_reporting -#: model:ir.model,name:account_reporting.model_color_rml -msgid "Rml Colors" -msgstr "" - -#. module: account_reporting -#: model:ir.module.module,shortdesc:account_reporting.module_meta_information -msgid "Reporting of Balancesheet for accounting" -msgstr "" - -#. module: account_reporting -#: field:account.report.bs,code:0 -msgid "Code" -msgstr "" - -#. module: account_reporting -#: field:account.report.bs,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_reporting -#: field:account.report.bs,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,font_style:0 -msgid "Times-Bold" -msgstr "" - -#. module: account_reporting -#: view:account.report.bs:0 -msgid "General" -msgstr "" - -#. module: account_reporting -#: wizard_field:account.account.balancesheet.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_reporting -#: view:account.report.bs:0 -#: field:account.report.bs,account_id:0 -msgid "Accounts" -msgstr "" - -#. module: account_reporting -#: wizard_field:account.account.balancesheet.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_reporting -#: field:account.report.bs,color_back:0 -msgid "Back Color" -msgstr "" - -#. module: account_reporting -#: field:account.report.bs,child_id:0 -msgid "Children" -msgstr "" - -#. module: account_reporting -#: wizard_button:account.account.balancesheet.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,font_style:0 -msgid "Times-Roman" -msgstr "" - -#. module: account_reporting -#: selection:account.report.bs,font_style:0 -msgid "Helvetica-Oblique" -msgstr "" - -#. module: account_reporting -#: field:account.report.bs,font_style:0 -msgid "Font" -msgstr "" - -#. module: account_reporting -#: wizard_view:account.account.balancesheet.report,init:0 -msgid "Customize Report" -msgstr "" - diff --git a/addons/account_tax_include/i18n/tlh_TLH.po b/addons/account_tax_include/i18n/tlh_TLH.po deleted file mode 100644 index ae7b0596634..00000000000 --- a/addons/account_tax_include/i18n/tlh_TLH.po +++ /dev/null @@ -1,52 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_tax_include -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_tax_include -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_tax_include -#: field:account.invoice,price_type:0 -msgid "Price method" -msgstr "" - -#. module: account_tax_include -#: model:ir.module.module,shortdesc:account_tax_include.module_meta_information -msgid "Invoices and prices with taxes included" -msgstr "" - -#. module: account_tax_include -#: selection:account.invoice,price_type:0 -msgid "Tax included" -msgstr "" - -#. module: account_tax_include -#: selection:account.invoice,price_type:0 -msgid "Tax excluded" -msgstr "" - -#. module: account_tax_include -#: view:account.tax:0 -msgid "Compute Code for Taxes included prices" -msgstr "" - -#. module: account_tax_include -#: field:account.invoice.line,price_subtotal_incl:0 -msgid "Subtotal" -msgstr "" - diff --git a/addons/account_voucher/i18n/tlh_TLH.po b/addons/account_voucher/i18n/tlh_TLH.po deleted file mode 100644 index f1b0ee7287d..00000000000 --- a/addons/account_voucher/i18n/tlh_TLH.po +++ /dev/null @@ -1,471 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_voucher -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_voucher -#: field:account.voucher,type:0 -#: field:account.voucher.line,type:0 -msgid "Type" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "State :" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher -msgid "Accounting Voucher" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "On Account of :" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.report.xml,name:account_voucher.report_account_voucher -msgid "Voucher Report" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_payments_bankpay_voucher_list -#: model:ir.actions.act_window,name:account_voucher.action_payments_cashpay_voucher_list -#: model:ir.actions.act_window,name:account_voucher.action_payments_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_voucher_list -msgid "Payment Vouchers" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Other Info" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Create" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Ref. :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_bakreceipt_voucher_list -msgid "Bank Receipts" -msgstr "" - -#. module: account_voucher -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Particulars" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_performa_cash_rec_voucher_form -msgid "Pro-forma Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Receiver's Signature" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_rec_voucher_form -msgid "New Cash Receipt" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Draft" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_bankpay_voucher_list -msgid "Bank Payments" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_sale_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_sale_voucher_form -msgid "Journal Sale Voucher" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Debit" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_other_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_other_voucher_list -msgid "Other Vouchers" -msgstr "" - -#. module: account_voucher -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: account_voucher -#: model:ir.module.module,shortdesc:account_voucher.module_meta_information -msgid "Accounting - Voucher Management" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_ids:0 -msgid "Real Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_voucher_list -msgid "Voucher Entries" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cont_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cont_voucher_form -msgid "Contra Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_cancel_cash_rec_voucher_form -msgid "Cancel Cash Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,name:0 -msgid "Description" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_cashreceipt_voucher_list -msgid "Cash Receipt" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Authorised Signatory" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "-" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: model:ir.actions.act_window,name:account_voucher.action_voucher_list -msgid "Vouchers" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Set to Draft" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_jour_pur_voucher_form -#: model:ir.ui.menu,name:account_voucher.menu_action_view_jour_pur_voucher_form -msgid "Journal Purchase Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_pay_voucher_form -msgid "New Cash Payment" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form -msgid "New Bank Payment" -msgstr "" - -#. module: account_voucher -#: view:account.account:0 -msgid "Closing Balance" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,ref:0 -msgid "Ref." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,date:0 -msgid "Date" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid ":" -msgstr "" - -#. module: account_voucher -#: model:ir.model,name:account_voucher.model_account_voucher_line -msgid "Voucher Line" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,state:0 -#: rml:voucher.cash_receipt:0 -msgid "Posted" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Through :" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,account_id:0 -#: field:account.voucher.line,account_id:0 -msgid "Account" -msgstr "" - -#. module: account_voucher -#: field:account.account,type1:0 -msgid "Dr/Cr" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,name:0 -msgid "Name" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference_type:0 -msgid "Reference Type" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,narration:0 -msgid "Narration" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Dated :" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_cashreceipt_voucher_list -msgid "Cash Receipts" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,amount:0 -#: field:account.voucher.line,amount:0 -msgid "Amount" -msgstr "" - -#. module: account_voucher -#: field:account.account,diff:0 -msgid "Difference of Opening Bal." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,reference:0 -msgid "Voucher Reference" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_vou_voucher_list -#: model:ir.ui.menu,name:account_voucher.menu_action_receipt_vou_voucher_list -msgid "Receipt Vouchers" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -msgid "None" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -msgid "Entry" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_posted_cash_rec_voucher_form -msgid "Posted Cash Receipt" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_draft_cash_rec_voucher_form -msgid "Draf Cash Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher,payment_ids:0 -msgid "Voucher Lines" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "No." -msgstr "" - -#. module: account_voucher -#: field:account.voucher,company_id:0 -msgid "Company" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,move_id:0 -msgid "Account Entry" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,state:0 -msgid "State" -msgstr "" - -#. module: account_voucher -#: selection:account.account,type1:0 -#: selection:account.voucher.line,type:0 -#: rml:voucher.cash_receipt:0 -msgid "Credit" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_rec_voucher_form -msgid "New Bank Receipt" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Pro-forma" -msgstr "" - -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_payments_cashpay_voucher_list -msgid "Cash Payments" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,number:0 -msgid "Number" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Amount (in words) :" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_cancel_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_draft_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_performa_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_posted_cash_rec_voucher_form -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_rec_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Receipt Voucher" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: account_voucher -#: rml:voucher.cash_receipt:0 -msgid "Canceled" -msgstr "" - -#. module: account_voucher -#: field:account.account,open_bal:0 -msgid "Opening Balance" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: field:account.voucher.line,voucher_id:0 -#: model:res.request.link,name:account_voucher.req_link_voucher -msgid "Voucher" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_bank_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Bank Payment Voucher" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_cash_pay_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Cash Payment Voucher" -msgstr "" - -#. module: account_voucher -#: view:account.voucher:0 -#: selection:account.voucher,state:0 -msgid "Cancel" -msgstr "" - -#. module: account_voucher -#: field:account.voucher.line,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: account_voucher -#: selection:account.voucher,type:0 -#: model:ir.actions.act_window,name:account_voucher.action_view_bank_rec_voucher_form -#: rml:voucher.cash_receipt:0 -msgid "Bank Receipt Voucher" -msgstr "" - -#. module: account_voucher -#: model:ir.actions.act_window,name:account_voucher.action_receipt_bakreceipt_voucher_list -msgid "Bank Receipt" -msgstr "" - -#. module: account_voucher -#: field:account.voucher,journal_id:0 -msgid "Journal" -msgstr "" - diff --git a/addons/analytic_journal_billing_rate/i18n/tlh_TLH.po b/addons/analytic_journal_billing_rate/i18n/tlh_TLH.po deleted file mode 100644 index d30b4cd33d1..00000000000 --- a/addons/analytic_journal_billing_rate/i18n/tlh_TLH.po +++ /dev/null @@ -1,62 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * analytic_journal_billing_rate -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: analytic_journal_billing_rate -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: analytic_journal_billing_rate -#: field:analytic_journal_rate_grid,journal_id:0 -msgid "Analytic Journal" -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 "" - -#. module: analytic_journal_billing_rate -#: view:analytic_journal_rate_grid:0 -msgid "Billing Rate per Journal for this Analytic Account" -msgstr "" - -#. module: analytic_journal_billing_rate -#: field:analytic_journal_rate_grid,account_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: analytic_journal_billing_rate -#: model:ir.model,name:analytic_journal_billing_rate.model_analytic_journal_rate_grid -msgid "Relation table between journals and billing rates" -msgstr "" - -#. module: analytic_journal_billing_rate -#: field:account.analytic.account,journal_rate_ids:0 -msgid "Invoicing Rate per Journal" -msgstr "" - -#. module: analytic_journal_billing_rate -#: model:ir.module.module,shortdesc:analytic_journal_billing_rate.module_meta_information -msgid "Analytic Journal Billing Rate" -msgstr "" - -#. module: analytic_journal_billing_rate -#: field:analytic_journal_rate_grid,rate_id:0 -msgid "Invoicing Rate" -msgstr "" - diff --git a/addons/analytic_user_function/i18n/tlh_TLH.po b/addons/analytic_user_function/i18n/tlh_TLH.po deleted file mode 100644 index 12a59317549..00000000000 --- a/addons/analytic_user_function/i18n/tlh_TLH.po +++ /dev/null @@ -1,63 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * analytic_user_function -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: analytic_user_function -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: analytic_user_function -#: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid -msgid "Relation table between users and products on a analytic account" -msgstr "" - -#. module: analytic_user_function -#: field:analytic_user_funct_grid,product_id:0 -msgid "Product" -msgstr "" - -#. module: analytic_user_function -#: field:analytic_user_funct_grid,account_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: analytic_user_function -#: view:account.analytic.account:0 -#: field:account.analytic.account,user_product_ids:0 -msgid "Users/Products Rel." -msgstr "" - -#. module: analytic_user_function -#: field:analytic_user_funct_grid,user_id:0 -msgid "User" -msgstr "" - -#. module: analytic_user_function -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: analytic_user_function -#: model:ir.module.module,shortdesc:analytic_user_function.module_meta_information -msgid "Analytic User Function" -msgstr "" - -#. module: analytic_user_function -#: view:analytic_user_funct_grid:0 -msgid "User's Product for this Analytic Account" -msgstr "" - diff --git a/addons/auction/i18n/tlh_TLH.po b/addons/auction/i18n/tlh_TLH.po deleted file mode 100644 index 19a0952e545..00000000000 --- a/addons/auction/i18n/tlh_TLH.po +++ /dev/null @@ -1,2569 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * auction -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: auction -#: field:report.deposit.border,total_marge:0 -msgid "Total margin" -msgstr "" - -#. module: auction -#: wizard_view:auction.lots.sms_send,init:0 -msgid "SMS - Gateway: clickatell" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -msgid "Set to draft" -msgstr "" - -#. module: auction -#: field:auction.deposit,partner_id:0 -#: view:auction.lots:0 -#: xsl:report.auction.seller.list:0 -#: field:report.deposit.border,seller:0 -#: field:report.seller.auction,seller:0 -#: field:report.seller.auction2,seller:0 -msgid "Seller" -msgstr "" - -#. module: auction -#: selection:auction.lots.send.aie,date_ask,numerotation:0 -#: selection:auction.lots.send.aie,init,numerotation:0 -msgid "Provisoire" -msgstr "" - -#. module: auction -#: selection:auction.lots.send.aie,date_ask,numerotation:0 -#: selection:auction.lots.send.aie,init,numerotation:0 -msgid "Definitive (ordre catalogue)" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_report_auction_object_date_tree1_my -msgid "My Encoded Objects Per Day" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_auction_lot_history -msgid "Lot history" -msgstr "" - -#. module: auction -#: field:report.seller.auction,avg_estimation:0 -msgid "Avg estimation" -msgstr "" - -#. module: auction -#: field:report.auction.object.date,obj_num:0 -#: field:report.auction.view2,obj_number:0 -msgid "# of Objects" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_action_bids_form -msgid "Bids line" -msgstr "" - -#. module: auction -#: xsl:report.auction.deposit:0 -msgid "Deposit Form" -msgstr "" - -#. module: auction -#: rml:auction.bids:0 -#: view:auction.lots:0 -#: field:auction.lots,ach_uid:0 -#: wizard_field:auction.lots.buyer_map,check,ach_uid:0 -#: wizard_field:auction.lots.make_invoice_buyer,init,buyer_id:0 -#: wizard_field:auction.pay.buy,init,buyer_id:0 -#: rml:buyer.list:0 -#: model:ir.ui.menu,name:auction.auction_report_buyer_menu -#: rml:report.auction.buyer.result:0 -#: field:report.buyer.auction,buyer:0 -#: field:report.buyer.auction2,buyer:0 -msgid "Buyer" -msgstr "" - -#. module: auction -#: field:report.auction.view,nobjects:0 -#: field:report.buyer.auction,object:0 -msgid "No of objects" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_report_auction_adjudication_tree -msgid "Adjudication by Auction" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "# of paid items (based on invoices):" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.wizard_numerotate_lot -msgid "Numerotation (per lot)" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Books, manuscripts, eso." -msgstr "" - -#. module: auction -#: view:auction.deposit:0 -#: model:ir.model,name:auction.model_auction_deposit -msgid "Deposit Border" -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.make_invoice,init,amount:0 -#: wizard_field:auction.lots.make_invoice_buyer,init,amount:0 -msgid "Invoiced Amount" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Tin / Copper wares" -msgstr "" - -#. module: auction -#: field:auction.lots,paid_ach:0 -msgid "Buyer invoice reconciled" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.auction_wizard_able_taken -msgid "Mark as taken away" -msgstr "" - -#. module: auction -#: xsl:report.auction.seller.list:0 -msgid "Inv." -msgstr "" - -#. module: auction -#: field:auction.deposit.cost,amount:0 -msgid "Amount" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.action_deposit_border -#: model:ir.ui.menu,name:auction.menu_auction_deposit_border -msgid "Deposit border" -msgstr "" - -#. module: auction -#: xsl:report.auction.deposit:0 -msgid "VAT" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -msgid "Statements" -msgstr "" - -#. module: auction -#: xsl:flagey.huissier:0 -msgid "Adjudication" -msgstr "" - -#. module: auction -#: field:auction.dates,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Unclassifieds" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_auction_dates_next_by_auction -msgid "Objects by Auction" -msgstr "" - -#. module: auction -#: field:auction.lots,lot_num:0 -#: field:report.unclassified.objects,lot_num:0 -msgid "List Number" -msgstr "" - -#. module: auction -#: field:auction.deposit.cost,name:0 -msgid "Cost Name" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antiques" -msgstr "" - -#. module: auction -#: view:auction.dates:0 -msgid "State" -msgstr "" - -#. module: auction -#: field:report.auction.estimation.adj.category,lot_type:0 -msgid "Object Type" -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.sms_send,init,text:0 -msgid "SMS Message" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Contemporary Art" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -#: view:report.unclassified.objects:0 -msgid "Ref" -msgstr "" - -#. module: auction -#: field:report.auction.view,nseller:0 -msgid "No of sellers" -msgstr "" - -#. module: auction -#: selection:auction.lots.send.aie,date_ask,lang:0 -msgid "ned" -msgstr "" - -#. module: auction -#: constraint:hr.attendance:0 -msgid "Error: Sign in (resp. Sign out) must follow Sign out (resp. Sign in)" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -#: field:report.buyer.auction,total_price:0 -msgid "Total Adj." -msgstr "" - -#. module: auction -#: field:report.auction.view2,obj_margin_procent:0 -msgid "Net margin (%)" -msgstr "" - -#. module: auction -#: selection:auction.lots,state:0 -#: selection:report.object.encoded,state:0 -#: selection:report.seller.auction,state:0 -#: selection:report.unclassified.objects,state:0 -msgid "Unsold" -msgstr "" - -#. module: auction -#: view:auction.dates:0 -msgid "Dates" -msgstr "" - -#. module: auction -#: constraint:product.template:0 -msgid "Error: UOS must be in a different category than the UOM" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "Items" -msgstr "" - -#. module: auction -#: model:account.tax,name:auction.auction_tax5 -#: field:auction.dates,seller_costs:0 -msgid "Seller Costs" -msgstr "" - -#. module: auction -#: view:auction.bid:0 -#: view:auction.bid_line:0 -#: view:auction.lots:0 -#: field:auction.lots,bid_lines:0 -#: model:ir.actions.report.xml,name:auction.bid_auction -#: model:ir.ui.menu,name:auction.menu_action_bid_open -msgid "Bids" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.auction_all_objects_menu -msgid "All objects" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.action_auction_buyer_reporting_all2 -msgid "Buyer's auction for all months" -msgstr "" - -#. module: auction -#: field:auction.bid,contact_tel:0 -msgid "Contact" -msgstr "" - -#. module: auction -#: field:report.auction.view,obj_ret:0 -#: field:report.object.encoded,obj_ret:0 -#: field:report.object.encoded.manager,obj_ret:0 -msgid "# obj ret" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.sms_send,init,send:0 -msgid "Send SMS" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Cont. Art/Painting" -msgstr "" - -#. module: auction -#: field:auction.lots,sel_inv_id:0 -msgid "Seller Invoice" -msgstr "" - -#. module: auction -#: view:auction.dates:0 -msgid "Commissions" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.numerotate,search,init:0 -msgid "Back" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.action_all_objects_unsold -msgid "Unsold objects" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_all_objects_sold1 -msgid "Sold Objects" -msgstr "" - -#. module: auction -#: view:report.buyer.auction2:0 -#: view:report.seller.auction2:0 -msgid "Sum net margin" -msgstr "" - -#. module: auction -#: view:auction.deposit:0 -msgid "Deposit Border Form" -msgstr "" - -#. module: auction -#: field:auction.bid,bid_lines:0 -#: rml:auction.bids:0 -#: rml:bids.lots:0 -#: model:ir.model,name:auction.model_auction_bid_line -msgid "Bid" -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.send.aie,date_ask,lang:0 -msgid "Langage" -msgstr "" - -#. module: auction -#: field:auction.bid_line,lot_id:0 -#: field:auction.lot.history,lot_id:0 -#: view:auction.lots:0 -#: model:ir.model,name:auction.model_auction_lots -msgid "Object" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.wizard_map_user -msgid "Map buyer username to Partners" -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.numerotate,search,lot_num:0 -msgid "Inventory Number" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.buyer_map,check,end:0 -#: wizard_button:auction.lots.numerotate,not_exist,end:0 -#: wizard_button:auction.lots.numerotate,search,end:0 -#: wizard_button:auction.lots.numerotate_cont,init,end:0 -msgid "Exit" -msgstr "" - -#. module: auction -#: field:report.buyer.auction2,net_revenue:0 -msgid "Net Revenue" -msgstr "" - -#. module: auction -#: view:report.buyer.auction:0 -msgid "Auction buyer reporting form view" -msgstr "" - -#. module: auction -#: field:auction.dates,state:0 -#: field:auction.lots,state:0 -#: field:report.auction.adjudication,state:0 -#: field:report.object.encoded,state:0 -#: field:report.seller.auction,state:0 -#: field:report.unclassified.objects,state:0 -msgid "Status" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.wizard_sms -msgid "SMS Send" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Cartoons" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -#: selection:auction.lots,state:0 -#: selection:report.seller.auction,state:0 -#: selection:report.unclassified.objects,state:0 -msgid "Sold" -msgstr "" - -#. module: auction -#: constraint:hr.employee:0 -msgid "Error ! You cannot create recursive Hierarchy of Employees." -msgstr "" - -#. module: auction -#: field:auction.bid_line,name:0 -msgid "Bid date" -msgstr "" - -#. module: auction -#: field:auction.dates,acc_expense:0 -msgid "Expense Account" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_wizard_emporte -msgid "Deliveries Management" -msgstr "" - -#. module: auction -#: field:auction.lots,obj_desc:0 -msgid "Object Description" -msgstr "" - -#. module: auction -#: selection:auction.deposit,method:0 -msgid "Contact the Seller" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -msgid "Auction Objects" -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" -msgstr "" - -#. module: auction -#: view:report.seller.auction2:0 -msgid "Auction reporting2 form view" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.wizard_pay -msgid "Pay objects of the buyer" -msgstr "" - -#. module: auction -#: view:report.deposit.border:0 -msgid "Depositer's statistics" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -msgid "Buyer information" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_seller_auction -msgid "Auction Reporting on seller view" -msgstr "" - -#. module: auction -#: field:auction.lots,name2:0 -msgid "Short Description (2)" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_auction_dates -msgid "auction.dates" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -#: model:ir.ui.menu,name:auction.auction_buyers_menu -msgid "Buyers" -msgstr "" - -#. module: auction -#: wizard_field:auction.pay.buy,init,amount:0 -#: wizard_field:auction.pay.buy,init,amount2:0 -#: wizard_field:auction.pay.buy,init,amount3:0 -msgid "Amount paid" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_report_latest_doposit_tree -msgid "My Latest Deposits" -msgstr "" - -#. module: auction -#: field:auction.lots,lot_est1:0 -#: wizard_field:auction.lots.numerotate,search,lot_est1:0 -#: field:report.auction.estimation.adj.category,lot_est1:0 -#: field:report.auction.view,min_est:0 -#: field:report.unclassified.objects,lot_est1:0 -msgid "Minimum Estimation" -msgstr "" - -#. module: auction -#: view:auction.dates:0 -msgid "Accounting" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_buyer_allmonth_view2 -msgid "Buyer's Revenues" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_auction_adjudication -msgid "report_auction_adjudication" -msgstr "" - -#. module: auction -#: field:auction.bid_line,price:0 -msgid "Maximum Price" -msgstr "" - -#. module: auction -#: selection:auction.lots.send.aie,date_ask,lang:0 -msgid "eng" -msgstr "" - -#. module: auction -#: view:report.buyer.auction2:0 -msgid "Auction buyer reporting tree view2" -msgstr "" - -#. module: auction -#: wizard_view:auction.lots.sms_send,init:0 -msgid "Bulk SMS send" -msgstr "" - -#. module: auction -#: wizard_view:auction.taken,init:0 -msgid "Select lots which are Sold" -msgstr "" - -#. module: auction -#: field:auction.lots,statement_id:0 -msgid "Payment" -msgstr "" - -#. module: auction -#: selection:auction.lots.send.aie,date_ask,lang:0 -msgid "fr" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Old weapons and militaria" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Oriental Arts/Chineese furnitures" -msgstr "" - -#. module: auction -#: selection:auction.deposit,method:0 -msgid "Keep until sold" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.numerotate,init,choice:0 -#: wizard_button:auction.lots.send.aie,init,date_ask:0 -#: wizard_button:auction.lots.send.aie.results,init,date_ask:0 -msgid "Continue" -msgstr "" - -#. module: auction -#: field:report.object.encoded,obj_num:0 -#: field:report.object.encoded.manager,obj_num:0 -msgid "# of Encoded obj." -msgstr "" - -#. module: auction -#: xsl:report.auction.vnd_bordereau:0 -msgid "List N." -msgstr "" - -#. module: auction -#: field:report.deposit.border,moy_est:0 -msgid "Avg. Est" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "# of sellers:" -msgstr "" - -#. module: auction -#: constraint:product.product:0 -msgid "Error: Invalid ean code" -msgstr "" - -#. module: auction -#: model:ir.module.module,description:auction.module_meta_information -msgid "This module provides functionality to \n" -" manage artists, articles, sellers, buyers and auction.\n" -" Manage bids, track of sold, paid and unpaid objects.\n" -" Delivery Management. \n" -" " -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "# of items taken away:" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_auction_allmonth_view1 -msgid "Auction's Summary" -msgstr "" - -#. module: auction -#: rml:buyer.list:0 -msgid "%)" -msgstr "" - -#. module: auction -#: wizard_view:auction.lots.able,init:0 -msgid "Confirmation set taken away" -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.make_invoice,init,objects:0 -#: wizard_field:auction.lots.make_invoice_buyer,init,objects:0 -#: wizard_field:auction.lots.send.aie,date_ask,objects:0 -#: wizard_field:auction.lots.send.aie.results,date_ask,objects:0 -#: field:report.deposit.border,nb_obj:0 -msgid "# of objects" -msgstr "" - -#. module: auction -#: field:auction.lots,lot_est2:0 -#: wizard_field:auction.lots.numerotate,search,lot_est2:0 -#: field:report.auction.estimation.adj.category,lot_est2:0 -#: field:report.auction.view,max_est:0 -#: field:report.unclassified.objects,lot_est2:0 -msgid "Maximum Estimation" -msgstr "" - -#. module: auction -#: field:auction.lots,buyer_price:0 -msgid "Buyer price" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.auction_wizard_payer_sel -msgid "Mark as paid for seller" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.seller_form_id -msgid "Seller List" -msgstr "" - -#. module: auction -#: field:auction.lots,is_ok:0 -msgid "Buyer's payment" -msgstr "" - -#. module: auction -#: view:auction.dates:0 -msgid "Close + Create all invoices" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.auction_catalog_flagy -msgid "Auction Catalog Flagey" -msgstr "" - -#. module: auction -#: field:auction.lot.history,price:0 -msgid "Withdrawn price" -msgstr "" - -#. module: auction -#: model:account.tax,name:auction.auction_tax4 -msgid "Seller Costs1" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Verreries" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Toys" -msgstr "" - -#. module: auction -#: field:auction.deposit,create_uid:0 -#: field:auction.lots,create_uid:0 -msgid "Created by" -msgstr "" - -#. module: auction -#: xsl:report.auction.ach_bordereau:0 -msgid "Buyer form" -msgstr "" - -#. module: auction -#: xsl:report.auction.deposit:0 -msgid "Estimate" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "# of buyers:" -msgstr "" - -#. module: auction -#: field:auction.lots,costs:0 -msgid "Indirect costs" -msgstr "" - -#. module: auction -#: xsl:report.auction.ach_bordereau:0 -msgid "Cat" -msgstr "" - -#. module: auction -#: constraint:account.tax.code:0 -msgid "Error ! You can not create recursive accounts." -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.auction_menu_root -msgid "Auction Management" -msgstr "" - -#. module: auction -#: field:auction.dates,journal_seller_id:0 -msgid "Seller Journal" -msgstr "" - -#. module: auction -#: view:report.buyer.auction:0 -msgid "Auction buyer reporting tree view" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_auction_artist -msgid "Define Artists" -msgstr "" - -#. module: auction -#: field:auction.lot.category,name:0 -msgid "Category Name" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_report_auction_estimation_adj_category_manager -#: model:ir.ui.menu,name:auction.menu_report_auction_estimation_adj_category_member -msgid "Comparison of estimations" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.v_report_barcode_lot -msgid "Code barres du lot" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.numerotate,not_exist,init:0 -msgid "Retry" -msgstr "" - -#. module: auction -#: field:auction.artists,birth_death_dates:0 -msgid "Birth / Death dates" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Jewelry" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_unclassified_objects -msgid "Unclassified objects " -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.numerotate_cont,init,set_number:0 -#: wizard_field:auction.lots.send.aie,date_ask,numerotation:0 -#: wizard_field:auction.lots.send.aie,init,numerotation:0 -msgid "Numerotation" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.act_auction_lot_open_deposit -msgid "Bordereau de dépôt" -msgstr "" - -#. module: auction -#: xsl:report.auction.deposit:0 -msgid "Document type" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_auction_estimation_adj_category -msgid "comparaison estimate/adjudication " -msgstr "" - -#. module: auction -#: rml:buyer.list:0 -msgid "Adj(EUR)" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Cont. Art/Other Media" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.wizard_emporte -msgid "Gestion emporte" -msgstr "" - -#. module: auction -#: xsl:report.auction.lots.list.landscape:0 -#: xsl:report.auction.vnd_bordereau:0 -msgid "Cat. N." -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_auction_object_cat -msgid "Object Categories" -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.send.aie,date_ask,img_send:0 -msgid "Send Image also ?" -msgstr "" - -#. module: auction -#: view:auction.deposit:0 -msgid "General Informations" -msgstr "" - -#. module: auction -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: auction -#: view:report.auction.view:0 -msgid "Auctions results" -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.sms_send,init,app_id:0 -msgid "API ID" -msgstr "" - -#. module: auction -#: field:auction.bid,name:0 -#: field:auction.bid_line,bid_id:0 -msgid "Bid ID" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "Min Estimate:" -msgstr "" - -#. module: auction -#: field:report.buyer.auction2,net_margin:0 -msgid "Net Margin" -msgstr "" - -#. module: auction -#: field:auction.lots,vnd_lim_net:0 -msgid "Net limit ?" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "# of commissions:" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.action_unclassified_objects -#: model:ir.ui.menu,name:auction.menu_all_objects_unclassified -#: view:report.unclassified.objects:0 -msgid "Unclassified objects" -msgstr "" - -#. module: auction -#: wizard_view:auction.lots.make_invoice_buyer,init:0 -msgid "(Keep empty for automatic number)" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_auction_object_date -#: view:report.auction.object.date:0 -msgid "Objects per day" -msgstr "" - -#. module: auction -#: model:product.template,name:auction.monproduit_product_template -msgid "Oeuvres a 21%" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Carpet and textilles" -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 "" - -#. module: auction -#: field:auction.lot.history,name:0 -#: field:report.attendance,name:0 -#: field:report.auction.adjudication,date:0 -#: xsl:report.auction.deposit:0 -#: field:report.auction.estimation.adj.category,date:0 -msgid "Date" -msgstr "" - -#. module: auction -#: field:auction.lots,obj_ret:0 -msgid "Price retired" -msgstr "" - -#. module: auction -#: view:auction.deposit:0 -msgid "Extra Costs" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_auction_dates_new -msgid "New Auction Dates" -msgstr "" - -#. module: auction -#: field:auction.lots,paid_vnd:0 -msgid "Seller Paid" -msgstr "" - -#. module: auction -#: field:auction.deposit,date_dep:0 -msgid "Deposit date" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.id_deposit -msgid "Deposits" -msgstr "" - -#. module: auction -#: field:auction.deposit,specific_cost_ids:0 -msgid "Specific Costs" -msgstr "" - -#. module: auction -#: view:report.buyer.auction2:0 -#: view:report.seller.auction2:0 -msgid "Sum adj" -msgstr "" - -#. module: auction -#: view:auction.dates:0 -#: view:report.auction.view2:0 -msgid "Auctions" -msgstr "" - -#. module: auction -#: field:report.seller.auction,object_number:0 -msgid "No of Objects" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -msgid "History" -msgstr "" - -#. module: auction -#: field:auction.lot.category,priority:0 -msgid "Priority" -msgstr "" - -#. module: auction -#: rml:auction.code_bar_lot:0 -msgid "Nr." -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Painting" -msgstr "" - -#. module: auction -#: field:auction.lot.category,aie_categ:0 -msgid "Aie Category" -msgstr "" - -#. module: auction -#: xsl:flagey.huissier:0 -#: rml:report.auction.buyer.result:0 -#: xsl:report.auction.deposit:0 -msgid "Num" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.able,init,end:0 -#: wizard_button:auction.lots.auction_move,init,end:0 -#: wizard_button:auction.lots.enable,init,end:0 -#: wizard_button:auction.lots.make_invoice,init,end:0 -#: wizard_button:auction.lots.make_invoice_buyer,init,end:0 -#: wizard_button:auction.lots.numerotate,init,end:0 -#: wizard_button:auction.lots.send.aie,date_ask,end:0 -#: wizard_button:auction.lots.send.aie,init,end:0 -#: wizard_button:auction.lots.send.aie.results,date_ask,end:0 -#: wizard_button:auction.lots.send.aie.results,init,end:0 -#: wizard_button:auction.lots.sms_send,init,end:0 -#: wizard_button:auction.pay.buy,init,end:0 -#: wizard_button:auction.payer.sel,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: auction -#: view:auction.dates:0 -msgid "Beginning of the auction" -msgstr "" - -#. module: auction -#: field:auction.artists,biography:0 -msgid "Biography" -msgstr "" - -#. module: auction -#: field:auction.lots,lot_local:0 -msgid "Location" -msgstr "" - -#. module: auction -#: wizard_view:auction.payer.sel,init:0 -msgid "Check payment for seller" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.view_report_object_by_auction -msgid "Detailed lots" -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" -msgstr "" - -#. module: auction -#: view:auction.dates:0 -msgid "Analytic" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.wizard_results -msgid "Send results to Auction-in-europe.com" -msgstr "" - -#. module: auction -#: rml:bids.lots:0 -#: rml:bids.phones.details:0 -msgid "Cat.N" -msgstr "" - -#. module: auction -#: selection:auction.deposit,method:0 -msgid "Decrease limit of 10%" -msgstr "" - -#. module: auction -#: field:auction.dates,adj_total:0 -#: field:report.auction.adjudication,adj_total:0 -#: field:report.auction.estimation.adj.category,adj_total:0 -msgid "Total Adjudication" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.action_auction_reporting1 -#: model:ir.actions.act_window,name:auction.action_auction_reporting_all1 -#: model:ir.actions.act_window,name:auction.action_auction_reporting_all2 -msgid "Seller's auction" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.wizard_invoice_buyer1 -msgid "Invoice Buyer objects" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_seller_allmonth_view2 -msgid "Seller's Revenues" -msgstr "" - -#. module: auction -#: xsl:flagey.huissier:0 -msgid "Price" -msgstr "" - -#. module: auction -#: rml:bids.phones.details:0 -msgid "-" -msgstr "" - -#. module: auction -#: xsl:report.auction.ach_bordereau:0 -#: xsl:report.auction.vnd_bordereau:0 -msgid "Subtotal:" -msgstr "" - -#. module: auction -#: view:auction.deposit:0 -msgid "Photos" -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.make_invoice,init,number:0 -#: wizard_field:auction.lots.make_invoice_buyer,init,number:0 -msgid "Invoice Number" -msgstr "" - -#. module: auction -#: field:report.buyer.auction,date:0 -#: field:report.buyer.auction2,date:0 -#: field:report.object.encoded,date:0 -#: field:report.object.encoded.manager,date:0 -#: field:report.seller.auction,date:0 -msgid "Create Date" -msgstr "" - -#. module: auction -#: code:addons/auction/wizard/wizard_aie_send.py:0 -#: code:addons/auction/wizard/wizard_aie_send_result.py:0 -#, python-format -msgid "Connection to WWW.Auction-in-Europe.com failed !" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_buyer_allmonth_view1 -msgid "Buyer's Summary" -msgstr "" - -#. module: auction -#: xsl:report.auction.ach_bordereau:0 -msgid "Customer Reference" -msgstr "" - -#. module: auction -#: rml:bids.lots:0 -msgid "Name" -msgstr "" - -#. module: auction -#: field:auction.deposit,name:0 -#: field:auction.lots,bord_vnd_id:0 -#: wizard_field:auction.lots.numerotate,init,bord_vnd_id:0 -#: field:report.deposit.border,bord:0 -#: field:report.unclassified.objects,bord_vnd_id:0 -msgid "Depositer Inventory" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_report_deposit_tree_m -#: model:ir.ui.menu,name:auction.menu_report_deposit_tree_member -msgid "Depositer's Statistics" -msgstr "" - -#. module: auction -#: view:report.object.encoded.manager:0 -msgid "Total adj." -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.send.aie,date_ask,uname:0 -#: wizard_field:auction.lots.send.aie,init,uname:0 -#: wizard_field:auction.lots.send.aie.results,date_ask,uname:0 -#: wizard_field:auction.lots.send.aie.results,init,uname:0 -#: wizard_field:auction.lots.sms_send,init,user:0 -msgid "Login" -msgstr "" - -#. module: auction -#: rml:buyer.list:0 -#: xsl:report.auction.seller.list:0 -msgid "To pay" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.enable,init,go:0 -msgid "Enable Taken away" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Others" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.seller_lots_3 -msgid "Seller Form" -msgstr "" - -#. module: auction -#: field:auction.lots,lot_type:0 -#: field:report.unclassified.objects,lot_type:0 -msgid "Object category" -msgstr "" - -#. module: auction -#: wizard_view:auction.taken,init:0 -msgid "Mark Lots" -msgstr "" - -#. module: auction -#: field:auction.lots,obj_num:0 -#: wizard_field:auction.lots.enable,init,confirm_en:0 -#: wizard_field:auction.lots.numerotate,search,obj_num:0 -#: field:report.unclassified.objects,obj_num:0 -msgid "Catalog Number" -msgstr "" - -#. module: auction -#: view:report.auction.view2:0 -msgid "Auction Reporting tree view2" -msgstr "" - -#. module: auction -#: view:report.buyer.auction2:0 -msgid "Auction buyer reporting form view2" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.bid_phone -msgid "Bids phones" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.action_report_object_by_auction -msgid "Auction dates" -msgstr "" - -#. module: auction -#: view:report.seller.auction2:0 -msgid "Auction seller reporting2 graph view" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_report_auction_object_date_tree -msgid "Encoded Objects Per Day" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_buyer_auction -#: model:ir.model,name:auction.model_report_buyer_auction2 -msgid "Auction Reporting on buyer view" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "Debit:" -msgstr "" - -#. module: auction -#: field:auction.lots,author_right:0 -msgid "Author rights" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -msgid "Payment's history" -msgstr "" - -#. module: auction -#: xsl:report.auction.ach_bordereau:0 -#: xsl:report.auction.vnd_bordereau:0 -msgid "Document" -msgstr "" - -#. module: auction -#: xsl:report.auction.lots.list.landscape:0 -msgid ", TEL:" -msgstr "" - -#. module: auction -#: view:report.auction.view:0 -msgid "Auction results" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_auction_allmonth_view2 -msgid "Auction's Revenues" -msgstr "" - -#. module: auction -#: view:report.object.encoded.manager:0 -msgid "Total net rev." -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.buyer_map,check,set_buyer:0 -msgid "Update" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -#: model:ir.ui.menu,name:auction.auction_report_seller_menu -#: model:ir.ui.menu,name:auction.auction_seller_menu -msgid "Sellers" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Metal Ware" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.res_w_buyer -msgid "Results with buyer" -msgstr "" - -#. module: auction -#: selection:auction.lots.send.aie,date_ask,lang:0 -msgid "de" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.auction_move,init,set_date:0 -msgid "Move to Auction date" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.action_auction_dates_old -msgid "Old Auctions" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "# of unsold items:" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Cont. Art/Curiosa" -msgstr "" - -#. module: auction -#: field:auction.bid,auction_id:0 -#: field:auction.lots,auction_id:0 -#: wizard_field:auction.lots.auction_move,init,auction_id:0 -#: wizard_field:auction.lots.send.aie,date_ask,dates:0 -#: wizard_field:auction.lots.send.aie,init,dates:0 -#: wizard_field:auction.lots.send.aie.results,date_ask,dates:0 -#: wizard_field:auction.lots.send.aie.results,init,dates:0 -msgid "Auction Date" -msgstr "" - -#. module: auction -#: rml:auction.code_bar_lot:0 -msgid ", ID" -msgstr "" - -#. module: auction -#: model:ir.module.module,shortdesc:auction.module_meta_information -msgid "Auction module" -msgstr "" - -#. module: auction -#: field:auction.bid_line,auction:0 -msgid "Auction Name" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_report_auction_sign_in_out_manager_tree1 -#: model:ir.ui.menu,name:auction.menu_report_auction_sign_in_out_member_tree1 -msgid "Attendance" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -msgid "Seller information" -msgstr "" - -#. module: auction -#: field:auction.lots,ach_login:0 -#: wizard_field:auction.lots.buyer_map,check,ach_login:0 -#: field:report.unclassified.objects,ach_login:0 -msgid "Buyer Username" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Cont. Art/Jewelry" -msgstr "" - -#. module: auction -#: xsl:report.auction.deposit:0 -#: xsl:report.auction.vnd_bordereau:0 -msgid "Inventory" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.action_auction_dates_next -msgid "Next Auctions" -msgstr "" - -#. module: auction -#: rml:buyer.list:0 -#: xsl:report.auction.seller.list:0 -msgid "#" -msgstr "" - -#. module: auction -#: field:auction.lots,ach_emp:0 -msgid "Taken Away" -msgstr "" - -#. module: auction -#: view:report.object.encoded.manager:0 -msgid "Total gross rev." -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Miniatures / Collections" -msgstr "" - -#. module: auction -#: wizard_view:auction.lots.numerotate,not_exist:0 -msgid "This lot does not exist !" -msgstr "" - -#. module: auction -#: view:auction.dates:0 -msgid "End of auction" -msgstr "" - -#. module: auction -#: field:auction.bid_line,call:0 -msgid "To be Called" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.action_report_auction_estimation_adj_category_manager_tree -#: model:ir.actions.act_window,name:auction.action_report_auction_estimation_adj_category_member_tree -#: view:report.auction.estimation.adj.category:0 -msgid "Min est/Adj/Max est" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.lot_list_inv -msgid "Lots List - Landscape" -msgstr "" - -#. module: auction -#: view:report.seller.auction:0 -msgid "Auction reporting tree view" -msgstr "" - -#. module: auction -#: wizard_view:auction.lots.auction_move,init:0 -#: model:ir.actions.wizard,name:auction.wizard_change_auction -msgid "Change Auction Date" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Cont. Art/Photo" -msgstr "" - -#. module: auction -#: field:auction.deposit,method:0 -msgid "Withdrawned method" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "Max Estimate:" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_auction_bid -msgid "Bid auctions" -msgstr "" - -#. module: auction -#: field:report.auction.view2,obj_margin:0 -msgid "Avg margin" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Art from the Ivory Coast" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Religiosa" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.make_invoice,init,invoice:0 -#: wizard_button:auction.lots.make_invoice_buyer,init,invoice:0 -msgid "Create invoices" -msgstr "" - -#. module: auction -#: constraint:product.template:0 -msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "" - -#. module: auction -#: xsl:report.auction.vnd_bordereau:0 -msgid "Lot" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_all_objects_unplanned1 -msgid "Unplanned objects" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Cont. Art/Sculpture" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_auction_artists -msgid "auction.artists" -msgstr "" - -#. module: auction -#: field:auction.dates,journal_id:0 -msgid "Buyer Journal" -msgstr "" - -#. module: auction -#: selection:auction.lots,state:0 -#: xsl:report.auction.ach_bordereau:0 -#: selection:report.object.encoded,state:0 -#: selection:report.unclassified.objects,state:0 -msgid "Paid" -msgstr "" - -#. module: auction -#: rml:bids.lots:0 -#: rml:bids.phones.details:0 -msgid "Phone" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Argenterie" -msgstr "" - -#. module: auction -#: wizard_button:auction.pay.buy,init,pay:0 -#: wizard_button:auction.payer.sel,init,pay2:0 -msgid "Pay" -msgstr "" - -#. module: auction -#: field:auction.lot.category,active:0 -msgid "Active" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Lightings" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Sculpture, bronze, eso." -msgstr "" - -#. module: auction -#: rml:buyer.list:0 -#: xsl:report.auction.ach_bordereau:0 -#: xsl:report.auction.seller.list:0 -#: xsl:report.auction.vnd_bordereau:0 -msgid "Total:" -msgstr "" - -#. module: auction -#: model:account.tax,name:auction.auction_tax2 -msgid "TVA1" -msgstr "" - -#. module: auction -#: view:report.auction.object.date:0 -msgid "Objects per Day" -msgstr "" - -#. module: auction -#: xsl:report.auction.deposit:0 -msgid "Document Number" -msgstr "" - -#. module: auction -#: view:report.object.encoded:0 -#: view:report.object.encoded.manager:0 -msgid "Objects statistics" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.numerotate,search,set_number:0 -msgid "Numerotate" -msgstr "" - -#. module: auction -#: xsl:report.auction.lots.list.landscape:0 -msgid "Buyer, Price" -msgstr "" - -#. module: auction -#: rml:auction.code_bar_lot:0 -msgid "Flagey" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.v_huissier -msgid "Listing Huissiers" -msgstr "" - -#. module: auction -#: field:auction.lots,vnd_lim:0 -msgid "Seller limit" -msgstr "" - -#. module: auction -#: wizard_view:auction.lots.buyer_map,done:0 -msgid "All objects are assigned to buyers !" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.able,init,go:0 -msgid "Able Taken away" -msgstr "" - -#. module: auction -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: auction -#: field:auction.deposit,transfer:0 -msgid "Transfer" -msgstr "" - -#. module: auction -#: view:report.auction.adjudication:0 -#: field:report.seller.auction,total_price:0 -msgid "Total adjudication" -msgstr "" - -#. module: auction -#: field:auction.lots,artist2_id:0 -msgid "Artist/Author 2" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_seller_allmonth_view1 -msgid "Seller's Summary" -msgstr "" - -#. module: auction -#: view:report.seller.auction:0 -msgid "Auction reporting graph view" -msgstr "" - -#. module: auction -#: wizard_field:auction.taken,init,lot_ids:0 -msgid "Lots Emportes" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.send.aie,date_ask,send:0 -#: wizard_button:auction.lots.send.aie.results,date_ask,send:0 -msgid "Send on your website" -msgstr "" - -#. module: auction -#: field:auction.lots,net_margin:0 -msgid "Net Margin (%)" -msgstr "" - -#. module: auction -#: field:report.auction.object.date,month:0 -msgid "Month" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.auction_lots_open -msgid "Simplified lots for adjudication" -msgstr "" - -#. module: auction -#: field:auction.lots,product_id:0 -msgid "Product" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_auction_view -msgid "Auction Reporting on view1" -msgstr "" - -#. module: auction -#: field:report.seller.auction2,sum_adj:0 -msgid "Sum Adjustication" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Porcelain, Ceramics, Glassmaking, ..." -msgstr "" - -#. module: auction -#: xsl:report.auction.ach_bordereau:0 -msgid "Plate Number:" -msgstr "" - -#. module: auction -#: view:auction.deposit:0 -#: field:auction.deposit,lot_id:0 -#: model:ir.ui.menu,name:auction.auction_objects_menu -msgid "Objects" -msgstr "" - -#. module: auction -#: wizard_view:auction.lots.numerotate,init:0 -#: wizard_view:auction.lots.numerotate,search:0 -msgid "Object Reference" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "Paid:" -msgstr "" - -#. module: auction -#: field:auction.deposit,total_neg:0 -msgid "Allow Negative Amount" -msgstr "" - -#. module: auction -#: rml:auction.bids:0 -#: view:auction.lots:0 -#: rml:auction.total.rml:0 -#: model:ir.ui.menu,name:auction.auction_report_auction_menu -#: xsl:report.auction.ach_bordereau:0 -#: xsl:report.auction.deposit:0 -msgid "Auction" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Cont. Art/Shows" -msgstr "" - -#. module: auction -#: field:auction.dates,name:0 -#: field:auction.lot.history,auction_id:0 -#: field:report.auction.adjudication,name:0 -#: field:report.auction.view,auction_id:0 -#: field:report.auction.view2,auction:0 -#: field:report.auction.view2,date:0 -#: field:report.buyer.auction,auction:0 -#: field:report.buyer.auction2,auction:0 -#: field:report.seller.auction,auction:0 -#: field:report.seller.auction2,auction:0 -#: field:report.seller.auction2,date:0 -#: field:report.unclassified.objects,auction:0 -msgid "Auction date" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_all_objects_unsold -msgid "Unsold Objects" -msgstr "" - -#. module: auction -#: field:report.buyer.auction,avg_price:0 -msgid "Avg Adj." -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_auction_deposit_cost -msgid "auction.deposit.cost" -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.numerotate,search,bord_vnd_id:0 -msgid "Object Inventory" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Art from the Ivory Coast/African Arts" -msgstr "" - -#. module: auction -#: field:auction.dates,auction1:0 -msgid "First Auction Day" -msgstr "" - -#. module: auction -#: view:report.attendance:0 -msgid "User's pointing" -msgstr "" - -#. module: auction -#: view:auction.lot.category:0 -msgid "Lot Category" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.auction_report_manager_menu -msgid "Manager" -msgstr "" - -#. module: auction -#: view:auction.dates:0 -msgid "Names" -msgstr "" - -#. module: auction -#: view:auction.artists:0 -msgid "Artists" -msgstr "" - -#. module: auction -#: field:report.attendance,total_attendance:0 -#: xsl:report.auction.ach_bordereau:0 -msgid "Total" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.act_auction_lot_line_open -msgid "Open lots" -msgstr "" - -#. module: auction -#: view:report.seller.auction:0 -msgid "Auction reporting form view" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -msgid "Lots" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.wizard_send -msgid "Send to website" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_auction_dates_old -msgid "Old Auction Dates" -msgstr "" - -#. module: auction -#: field:auction.lots,seller_price:0 -msgid "Seller price" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_seller_auction2 -msgid "Auction Reporting on seller view2" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.buy_id_list -msgid "Buyer List" -msgstr "" - -#. module: auction -#: rml:buyer.list:0 -msgid "Buyer costs(" -msgstr "" - -#. module: auction -#: wizard_field:auction.pay.buy,init,statement_id1:0 -#: wizard_field:auction.pay.buy,init,statement_id2:0 -#: wizard_field:auction.pay.buy,init,statement_id3:0 -msgid "Statement" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Engravings" -msgstr "" - -#. module: auction -#: model:account.tax,name:auction.auction_tax20 -#: model:account.tax,name:auction.auction_tax6 -msgid "Frais de vente" -msgstr "" - -#. module: auction -#: wizard_view:auction.lots.numerotate_cont,init:0 -#: wizard_field:auction.lots.numerotate_cont,init,number:0 -msgid "First Number" -msgstr "" - -#. module: auction -#: model:account.tax,name:auction.auction_tax -msgid "Droit d'auteur" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_auction_view2 -msgid "Auction Reporting on view2" -msgstr "" - -#. module: auction -#: field:auction.dates,expo1:0 -msgid "First Exposition Day" -msgstr "" - -#. module: auction -#: wizard_view:auction.lots.auction_move,init:0 -msgid "Warning, this will erase the object adjudication price and its buyer !" -msgstr "" - -#. module: auction -#: field:report.auction.object.date,name:0 -msgid "Created date" -msgstr "" - -#. module: auction -#: view:auction.bid:0 -msgid "Bid information" -msgstr "" - -#. module: auction -#: xsl:report.auction.lots.list.landscape:0 -msgid "TEL:" -msgstr "" - -#. module: auction -#: field:auction.dates,acc_income:0 -msgid "Income Account" -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" -msgstr "" - -#. module: auction -#: xsl:report.auction.deposit:0 -#: xsl:report.auction.lots.list.landscape:0 -msgid "Limit" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_report_latest_doposit_tree_manager -msgid "Latest Deposits" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "# of items:" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Musical Instruments" -msgstr "" - -#. module: auction -#: field:report.object.encoded,estimation:0 -#: field:report.object.encoded.manager,estimation:0 -msgid "Estimation" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Graphic Arts" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.buyer_form_id -msgid "Buyer Form" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.wizard_invoice -msgid "Invoice Seller objects" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Oriental Arts" -msgstr "" - -#. module: auction -#: field:auction.bid,partner_id:0 -msgid "Buyer Name" -msgstr "" - -#. module: auction -#: field:report.auction.view2,sum_adj:0 -msgid "Sum of adjudication" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.auction_wizard_enable_taken -msgid "Unmark as taken away" -msgstr "" - -#. module: auction -#: field:auction.lots,gross_margin:0 -msgid "Gross Margin (%)" -msgstr "" - -#. module: auction -#: selection:auction.dates,state:0 -#: selection:report.auction.adjudication,state:0 -msgid "Closed" -msgstr "" - -#. module: auction -#: field:auction.lots,obj_comm:0 -#: field:report.unclassified.objects,obj_comm:0 -msgid "Commission" -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.numerotate,init,lot_num:0 -msgid "Lot Number" -msgstr "" - -#. module: auction -#: constraint:res.partner:0 -msgid "The VAT doesn't seem to be correct." -msgstr "" - -#. module: auction -#: field:report.attendance,employee_id:0 -msgid "Employee" -msgstr "" - -#. module: auction -#: xsl:report.auction.ach_bordereau:0 -#: xsl:report.auction.vnd_bordereau:0 -msgid "Adj.(EUR)" -msgstr "" - -#. module: auction -#: xsl:report.auction.lots.list.landscape:0 -msgid "Est." -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.auction_report_menu -msgid "Reporting" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -msgid "Catalog" -msgstr "" - -#. module: auction -#: field:auction.deposit.cost,account:0 -msgid "Destination Account" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_deposit_border -msgid "Report deposit border" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.auction_config_menu -msgid "Configuration" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.auction_outils_menu -msgid "Tools Bar Codes" -msgstr "" - -#. module: auction -#: field:auction.deposit.cost,deposit_id:0 -msgid "Deposit" -msgstr "" - -#. module: auction -#: field:auction.dates,expo2:0 -msgid "Last Exposition Day" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.action_auction_report_allmonth_view1 -#: model:ir.actions.act_window,name:auction.action_auction_report_allmonth_view2 -#: model:ir.actions.act_window,name:auction.action_auction_report_thismonth_view2 -msgid "Auction report" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_auction_lot_category -msgid "auction.lot.category" -msgstr "" - -#. module: auction -#: field:auction.artists,name:0 -msgid "Artist/Author Name" -msgstr "" - -#. module: auction -#: field:auction.lots,image:0 -msgid "Image" -msgstr "" - -#. module: auction -#: selection:report.object.encoded,state:0 -msgid "Invoiced" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -#: selection:auction.lots,state:0 -msgid "Taken away" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Collectible & art objects" -msgstr "" - -#. module: auction -#: xsl:report.auction.lots.list.landscape:0 -msgid "BID:" -msgstr "" - -#. module: auction -#: model:ir.actions.act_window,name:auction.action_auction_buyer_reporting -#: model:ir.actions.act_window,name:auction.action_auction_buyer_reporting2 -#: model:ir.actions.act_window,name:auction.action_auction_buyer_reporting_all1 -msgid "Buyer's auction" -msgstr "" - -#. module: auction -#: view:report.seller.auction2:0 -msgid "Auction reporting2 tree view" -msgstr "" - -#. module: auction -#: view:auction.deposit:0 -msgid "Deposit Costs" -msgstr "" - -#. module: auction -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." -msgstr "" - -#. module: auction -#: selection:auction.dates,state:0 -#: selection:auction.lots,state:0 -#: selection:report.auction.adjudication,state:0 -#: selection:report.object.encoded,state:0 -#: selection:report.seller.auction,state:0 -#: selection:report.unclassified.objects,state:0 -msgid "Draft" -msgstr "" - -#. module: auction -#: rml:buyer.list:0 -msgid "........." -msgstr "" - -#. module: auction -#: xsl:report.auction.ach_bordereau:0 -msgid "Buyer Cost:" -msgstr "" - -#. module: auction -#: xsl:report.auction.lots.list.landscape:0 -msgid "NET" -msgstr "" - -#. module: auction -#: rml:report.auction.buyer.result:0 -msgid "Adj" -msgstr "" - -#. module: auction -#: view:auction.dates:0 -#: model:ir.ui.menu,name:auction.auction_date_menu -msgid "Auction Dates" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Furnitures" -msgstr "" - -#. module: auction -#: xsl:report.auction.ach_bordereau:0 -msgid "Customer Contact" -msgstr "" - -#. module: auction -#: xsl:report.auction.lots.list.landscape:0 -msgid "Inv, Name" -msgstr "" - -#. module: auction -#: field:report.auction.adjudication,user_id:0 -#: field:report.auction.estimation.adj.category,user_id:0 -#: field:report.auction.object.date,user_id:0 -#: field:report.object.encoded,user_id:0 -#: field:report.object.encoded.manager,user_id:0 -msgid "User" -msgstr "" - -#. module: auction -#: view:report.unplanned.object:0 -msgid "Unplanned Objects" -msgstr "" - -#. module: auction -#: field:report.buyer.auction2,gross_revenue:0 -msgid "Gross Revenue" -msgstr "" - -#. module: auction -#: field:auction.artists,pseudo:0 -msgid "Pseudo" -msgstr "" - -#. module: auction -#: field:auction.lots,important:0 -msgid "To be Emphatized" -msgstr "" - -#. module: auction -#: view:auction.lots:0 -msgid "Not sold" -msgstr "" - -#. module: auction -#: model:account.tax,name:auction.auction_tax3 -#: field:auction.dates,buyer_costs:0 -msgid "Buyer Costs" -msgstr "" - -#. module: auction -#: model:ir.actions.wizard,name:auction.wizard_numerotate_automatic -msgid "Numerotation (automatic)" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "Auction Date:" -msgstr "" - -#. module: auction -#: code:addons/auction/wizard/wizard_aie_send.py:0 -#: code:addons/auction/wizard/wizard_aie_send_result.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: auction -#: field:auction.lots,ach_inv_id:0 -msgid "Buyer Invoice" -msgstr "" - -#. module: auction -#: rml:auction.bids:0 -msgid "Tel" -msgstr "" - -#. module: auction -#: wizard_field:auction.pay.buy,init,total:0 -msgid "Amount to paid" -msgstr "" - -#. module: auction -#: field:auction.lots,artist_id:0 -msgid "Artist/Author" -msgstr "" - -#. module: auction -#: model:account.tax,name:auction.auction_tax1 -msgid "TVA" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.total_result1 -msgid "Auction Totals with lists" -msgstr "" - -#. module: auction -#: wizard_button:auction.lots.buyer_map,done,end:0 -msgid "Close" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_object_encoded -#: model:ir.model,name:auction.model_report_object_encoded_manager -msgid "Object encoded" -msgstr "" - -#. module: auction -#: rml:bids.phones.details:0 -msgid "Est" -msgstr "" - -#. module: auction -#: field:report.auction.view,nbuyer:0 -msgid "No of buyers" -msgstr "" - -#. module: auction -#: field:report.seller.auction,avg_price:0 -msgid "Avg adjudication" -msgstr "" - -#. module: auction -#: view:report.object.encoded.manager:0 -msgid "Object statistic" -msgstr "" - -#. module: auction -#: field:auction.dates,auction2:0 -msgid "Last Auction Day" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_auction_dates_next1 -msgid "Next Auction Dates" -msgstr "" - -#. module: auction -#: model:ir.model,name:auction.model_report_attendance -msgid "Report Sign In/Out" -msgstr "" - -#. module: auction -#: view:auction.deposit:0 -#: field:auction.deposit,info:0 -#: view:auction.lots:0 -#: wizard_field:auction.lots.numerotate,search,obj_desc:0 -#: rml:bids.phones.details:0 -#: xsl:flagey.huissier:0 -#: xsl:report.auction.ach_bordereau:0 -#: xsl:report.auction.deposit:0 -#: xsl:report.auction.lots.list.landscape:0 -#: xsl:report.auction.vnd_bordereau:0 -msgid "Description" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Cont. Art/Arts" -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" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.menu_all_objects_to_sell -msgid "Objects to sell" -msgstr "" - -#. module: auction -#: xsl:flagey.huissier:0 -msgid "Ref." -msgstr "" - -#. module: auction -#: wizard_field:auction.lots.send.aie,date_ask,password:0 -#: wizard_field:auction.lots.send.aie,init,password:0 -#: wizard_field:auction.lots.send.aie.results,date_ask,password:0 -#: wizard_field:auction.lots.send.aie.results,init,password:0 -#: wizard_field:auction.lots.sms_send,init,password:0 -msgid "Password" -msgstr "" - -#. module: auction -#: field:auction.lots,ach_avance:0 -msgid "Buyer Advance" -msgstr "" - -#. module: auction -#: field:auction.lots,name:0 -#: wizard_field:auction.lots.numerotate,search,name:0 -#: field:report.unclassified.objects,name:0 -msgid "Short Description" -msgstr "" - -#. module: auction -#: model:ir.ui.menu,name:auction.auction_report_employees_menu -msgid "Employees" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Clocks and watches" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Scientific Instruments" -msgstr "" - -#. module: auction -#: wizard_view:auction.lots.enable,init:0 -msgid "Confirmation enable taken away" -msgstr "" - -#. module: auction -#: wizard_view:auction.pay.buy,init:0 -msgid "Pay objects" -msgstr "" - -#. module: auction -#: view:report.object.encoded:0 -#: view:report.object.encoded.manager:0 -msgid "# objects" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "Adjudication:" -msgstr "" - -#. module: auction -#: field:report.buyer.auction2,sumadj:0 -msgid "Sum of adjustication" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.details_bids_phones -msgid "Bids per lot (phone)" -msgstr "" - -#. module: auction -#: field:report.buyer.auction,buyer_login:0 -#: field:report.buyer.auction2,buyer_login:0 -msgid "Buyer Login" -msgstr "" - -#. module: auction -#: field:auction.deposit,tax_id:0 -msgid "Expenses" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Wine" -msgstr "" - -#. module: auction -#: rml:auction.total.rml:0 -msgid "Auction name:" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/African Arts" -msgstr "" - -#. module: auction -#: model:ir.actions.report.xml,name:auction.art2 -msgid "Artists Biography" -msgstr "" - -#. module: auction -#: selection:auction.lot.category,aie_categ:0 -msgid "Antique/Posters" -msgstr "" - -#. module: auction -#: field:auction.lots,history_ids:0 -msgid "Auction history" -msgstr "" - -#. module: auction -#: xsl:report.auction.lots.list.landscape:0 -msgid "Orders" -msgstr "" - diff --git a/addons/audittrail/i18n/tlh_TLH.po b/addons/audittrail/i18n/tlh_TLH.po deleted file mode 100644 index 8eccee92f2a..00000000000 --- a/addons/audittrail/i18n/tlh_TLH.po +++ /dev/null @@ -1,299 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * audittrail -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: audittrail -#: model:ir.module.module,shortdesc:audittrail.module_meta_information -msgid "Audit Trail" -msgstr "" - -#. module: audittrail -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: audittrail -#: field:audittrail.log.line,log_id:0 -msgid "Log" -msgstr "" - -#. module: audittrail -#: selection:audittrail.rule,state:0 -msgid "Subscribed" -msgstr "" - -#. module: audittrail -#: view:audittrail.log:0 -msgid "Old Value : " -msgstr "" - -#. module: audittrail -#: selection:audittrail.log,method:0 -msgid "Create" -msgstr "" - -#. module: audittrail -#: wizard_view:audittrail.view.log,init:0 -msgid "Audit Logs" -msgstr "" - -#. module: audittrail -#: field:audittrail.rule,state:0 -msgid "State" -msgstr "" - -#. module: audittrail -#: selection:audittrail.rule,state:0 -msgid "Draft" -msgstr "" - -#. module: audittrail -#: field:audittrail.log.line,old_value:0 -msgid "Old Value" -msgstr "" - -#. module: audittrail -#: model:ir.actions.wizard,name:audittrail.wizard_audittrail_log -msgid "View log" -msgstr "" - -#. module: audittrail -#: model:ir.model,name:audittrail.model_audittrail_log_line -msgid "audittrail.log.line" -msgstr "" - -#. module: audittrail -#: field:audittrail.log,method:0 -msgid "Method" -msgstr "" - -#. module: audittrail -#: wizard_field:audittrail.view.log,init,from:0 -msgid "Log From" -msgstr "" - -#. module: audittrail -#: field:audittrail.log.line,log:0 -msgid "Log ID" -msgstr "" - -#. module: audittrail -#: field:audittrail.log,res_id:0 -msgid "Resource Id" -msgstr "" - -#. module: audittrail -#: selection:audittrail.log,method:0 -msgid "Write" -msgstr "" - -#. module: audittrail -#: model:ir.ui.menu,name:audittrail.menu_action_audittrail -msgid "Audittrails" -msgstr "" - -#. module: audittrail -#: view:audittrail.log:0 -msgid "Log Lines" -msgstr "" - -#. module: audittrail -#: view:audittrail.rule:0 -msgid "Subscribe" -msgstr "" - -#. module: audittrail -#: selection:audittrail.log,method:0 -msgid "Read" -msgstr "" - -#. module: audittrail -#: field:audittrail.log,object_id:0 -#: field:audittrail.rule,object_id:0 -msgid "Object" -msgstr "" - -#. module: audittrail -#: view:audittrail.rule:0 -msgid "AuditTrail Rule" -msgstr "" - -#. module: audittrail -#: wizard_field:audittrail.view.log,init,to:0 -msgid "Log To" -msgstr "" - -#. module: audittrail -#: view:audittrail.log:0 -msgid "New Value Text: " -msgstr "" - -#. module: audittrail -#: model:ir.module.module,description:audittrail.module_meta_information -msgid "Allows the administrator to track every user operations on all objects of the system.\n" -" Subscribe Rules for read, write, create and delete on objects and check logs" -msgstr "" - -#. module: audittrail -#: field:audittrail.log,timestamp:0 -msgid "Date" -msgstr "" - -#. module: audittrail -#: field:audittrail.log,user_id:0 -msgid "User" -msgstr "" - -#. module: audittrail -#: view:audittrail.log:0 -msgid "Old Value Text : " -msgstr "" - -#. module: audittrail -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: audittrail -#: field:audittrail.log,name:0 -msgid "Name" -msgstr "" - -#. module: audittrail -#: field:audittrail.log,line_ids:0 -msgid "Log lines" -msgstr "" - -#. module: audittrail -#: model:ir.ui.menu,name:audittrail.menu_action_audittrail_rule_tree_sub -msgid "Subscribed Rules" -msgstr "" - -#. module: audittrail -#: field:audittrail.log.line,field_id:0 -msgid "Fields" -msgstr "" - -#. module: audittrail -#: view:audittrail.rule:0 -msgid "AuditTrail Rules" -msgstr "" - -#. module: audittrail -#: model:ir.model,name:audittrail.model_audittrail_rule -msgid "audittrail.rule" -msgstr "" - -#. module: audittrail -#: view:audittrail.rule:0 -msgid "UnSubscribe" -msgstr "" - -#. module: audittrail -#: field:audittrail.rule,log_write:0 -msgid "Log writes" -msgstr "" - -#. module: audittrail -#: model:ir.model,name:audittrail.model_audittrail_log -msgid "audittrail.log" -msgstr "" - -#. module: audittrail -#: field:audittrail.log.line,field_description:0 -msgid "Field Description" -msgstr "" - -#. module: audittrail -#: selection:audittrail.log,method:0 -msgid "Delete" -msgstr "" - -#. module: audittrail -#: wizard_button:audittrail.view.log,init,open:0 -msgid "Open Logs" -msgstr "" - -#. module: audittrail -#: field:audittrail.log.line,new_value_text:0 -msgid "New value Text" -msgstr "" - -#. module: audittrail -#: field:audittrail.rule,name:0 -msgid "Rule Name" -msgstr "" - -#. module: audittrail -#: field:audittrail.rule,log_read:0 -msgid "Log reads" -msgstr "" - -#. module: audittrail -#: model:ir.ui.menu,name:audittrail.menu_action_audittrail_log_tree -msgid "Logs" -msgstr "" - -#. module: audittrail -#: field:audittrail.log.line,new_value:0 -msgid "New Value" -msgstr "" - -#. module: audittrail -#: model:ir.ui.menu,name:audittrail.menu_action_log_tree2 -msgid "View Logs" -msgstr "" - -#. module: audittrail -#: field:audittrail.rule,log_create:0 -msgid "Log creates" -msgstr "" - -#. module: audittrail -#: view:audittrail.log:0 -msgid "AuditTrail Logs" -msgstr "" - -#. module: audittrail -#: model:ir.ui.menu,name:audittrail.menu_action_audittrail_rule_tree -msgid "Rules" -msgstr "" - -#. module: audittrail -#: view:audittrail.log:0 -msgid "New Value : " -msgstr "" - -#. module: audittrail -#: field:audittrail.rule,user_id:0 -msgid "Users" -msgstr "" - -#. module: audittrail -#: field:audittrail.log.line,old_value_text:0 -msgid "Old value Text" -msgstr "" - -#. module: audittrail -#: wizard_button:audittrail.view.log,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: audittrail -#: field:audittrail.rule,log_unlink:0 -msgid "Log deletes" -msgstr "" - diff --git a/addons/base_contact/i18n/tlh_TLH.po b/addons/base_contact/i18n/tlh_TLH.po deleted file mode 100644 index b73cf18b44c..00000000000 --- a/addons/base_contact/i18n/tlh_TLH.po +++ /dev/null @@ -1,312 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_contact -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_contact -#: field:res.partner.job,sequence_contact:0 -msgid "Contact Seq." -msgstr "" - -#. module: base_contact -#: model:ir.model,name:base_contact.model_res_partner_contact -msgid "res.partner.contact" -msgstr "" - -#. module: base_contact -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: base_contact -#: model:ir.actions.act_window,name:base_contact.action_partner_contact_form -#: model:ir.ui.menu,name:base_contact.menu_partner_contact_form -#: model:process.node,name:base_contact.process_node_contacts0 -#: view:res.partner:0 -#: view:res.partner.address:0 -#: field:res.partner.address,job_ids:0 -msgid "Contacts" -msgstr "" - -#. module: base_contact -#: field:res.partner.job,sequence_partner:0 -msgid "Partner Seq." -msgstr "" - -#. module: base_contact -#: selection:res.partner.job,state:0 -msgid "Current" -msgstr "" - -#. module: base_contact -#: field:res.partner.contact,first_name:0 -msgid "First Name" -msgstr "" - -#. module: base_contact -#: model:ir.model,name:base_contact.model_res_partner_job -msgid "Contact Partner Function" -msgstr "" - -#. module: base_contact -#: model:process.transition,name:base_contact.process_transition_contacttofunction0 -msgid "Contact to function" -msgstr "" - -#. module: base_contact -#: field:res.partner.job,function_id:0 -msgid "Partner Function" -msgstr "" - -#. module: base_contact -#: model:process.transition,name:base_contact.process_transition_partnertoaddress0 -msgid "Partner to address" -msgstr "" - -#. module: base_contact -#: view:res.partner.address:0 -msgid "# of Contacts" -msgstr "" - -#. module: base_contact -#: model:process.node,name:base_contact.process_node_function0 -msgid "Function" -msgstr "" - -#. module: base_contact -#: field:res.partner.contact,function_id:0 -msgid "Main Job" -msgstr "" - -#. module: base_contact -#: field:res.partner.job,phone:0 -msgid "Phone" -msgstr "" - -#. module: base_contact -#: model:process.transition,note:base_contact.process_transition_contacttofunction0 -msgid "Defines contacts and functions." -msgstr "" - -#. module: base_contact -#: field:res.partner.contact,title:0 -msgid "Title" -msgstr "" - -#. module: base_contact -#: view:res.partner.job:0 -msgid "Contact Functions" -msgstr "" - -#. module: base_contact -#: model:ir.module.module,shortdesc:base_contact.module_meta_information -msgid "Base Contact" -msgstr "" - -#. module: base_contact -#: help:res.partner.job,sequence_partner:0 -msgid "Order of importance of this job title in the list of job title of the linked partner" -msgstr "" - -#. module: base_contact -#: field:res.partner.job,email:0 -msgid "E-Mail" -msgstr "" - -#. module: base_contact -#: field:res.partner.job,date_stop:0 -msgid "Date Stop" -msgstr "" - -#. module: base_contact -#: view:res.partner:0 -#: field:res.partner.job,address_id:0 -msgid "Address" -msgstr "" - -#. module: base_contact -#: model:ir.actions.act_window,name:base_contact.action_res_partner_job -#: model:ir.ui.menu,name:base_contact.menu_action_res_partner_job -msgid "Contact's Jobs" -msgstr "" - -#. module: base_contact -#: field:res.partner.contact,country_id:0 -msgid "Nationality" -msgstr "" - -#. module: base_contact -#: help:res.partner.job,sequence_contact:0 -msgid "Order of importance of this address in the list of addresses of the linked contact" -msgstr "" - -#. module: base_contact -#: view:res.partner:0 -msgid "Categories" -msgstr "" - -#. module: base_contact -#: model:process.transition,note:base_contact.process_transition_partnertoaddress0 -msgid "Define partners and their addresses." -msgstr "" - -#. module: base_contact -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: base_contact -#: model:process.process,name:base_contact.process_process_basecontactprocess0 -msgid "Base Contact Process" -msgstr "" - -#. module: base_contact -#: view:res.partner.contact:0 -msgid "Seq." -msgstr "" - -#. module: base_contact -#: field:res.partner.contact,lang_id:0 -msgid "Language" -msgstr "" - -#. module: base_contact -#: field:res.partner.contact,mobile:0 -msgid "Mobile" -msgstr "" - -#. module: base_contact -#: model:process.node,note:base_contact.process_node_contacts0 -msgid "People you work with." -msgstr "" - -#. module: base_contact -#: view:res.partner.contact:0 -msgid "Extra Information" -msgstr "" - -#. module: base_contact -#: view:res.partner.contact:0 -#: field:res.partner.contact,job_ids:0 -msgid "Functions and Addresses" -msgstr "" - -#. module: base_contact -#: field:res.partner.contact,active:0 -msgid "Active" -msgstr "" - -#. module: base_contact -#: field:res.partner.job,contact_id:0 -msgid "Contact" -msgstr "" - -#. module: base_contact -#: model:process.node,note:base_contact.process_node_partners0 -msgid "Companies you work with." -msgstr "" - -#. module: base_contact -#: field:res.partner.contact,partner_id:0 -msgid "Main Employer" -msgstr "" - -#. module: base_contact -#: model:process.transition,name:base_contact.process_transition_functiontoaddress0 -msgid "Function to address" -msgstr "" - -#. module: base_contact -#: model:ir.actions.act_window,name:base_contact.act_res_partner_jobs -msgid "Partner Contacts" -msgstr "" - -#. module: base_contact -#: view:res.partner.contact:0 -msgid "Partner Contact" -msgstr "" - -#. module: base_contact -#: model:process.node,name:base_contact.process_node_partners0 -msgid "Partners" -msgstr "" - -#. module: base_contact -#: model:process.node,name:base_contact.process_node_addresses0 -#: view:res.partner:0 -msgid "Addresses" -msgstr "" - -#. module: base_contact -#: model:process.node,note:base_contact.process_node_addresses0 -msgid "Working and private addresses." -msgstr "" - -#. module: base_contact -#: field:res.partner.contact,name:0 -msgid "Last Name" -msgstr "" - -#. module: base_contact -#: field:res.partner.job,state:0 -msgid "State" -msgstr "" - -#. module: base_contact -#: view:res.partner.contact:0 -#: view:res.partner.job:0 -msgid "General" -msgstr "" - -#. module: base_contact -#: selection:res.partner.job,state:0 -msgid "Past" -msgstr "" - -#. module: base_contact -#: view:res.partner.contact:0 -msgid "General Information" -msgstr "" - -#. module: base_contact -#: model:process.node,note:base_contact.process_node_function0 -msgid "Jobs at a same partner address." -msgstr "" - -#. module: base_contact -#: field:res.partner.job,name:0 -msgid "Partner" -msgstr "" - -#. module: base_contact -#: field:res.partner.job,date_start:0 -msgid "Date Start" -msgstr "" - -#. module: base_contact -#: model:process.transition,note:base_contact.process_transition_functiontoaddress0 -msgid "Define functions and address." -msgstr "" - -#. module: base_contact -#: field:res.partner.contact,website:0 -msgid "Website" -msgstr "" - -#. module: base_contact -#: field:res.partner.contact,birthdate:0 -msgid "Birth Date" -msgstr "" - diff --git a/addons/base_iban/i18n/tlh_TLH.po b/addons/base_iban/i18n/tlh_TLH.po deleted file mode 100644 index c55c5a310a2..00000000000 --- a/addons/base_iban/i18n/tlh_TLH.po +++ /dev/null @@ -1,63 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_iban -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_iban -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: base_iban -#: model:res.partner.bank.type.field,name:base_iban.bank_zip_field -msgid "zip" -msgstr "" - -#. module: base_iban -#: help:res.partner.bank,iban:0 -msgid "International Bank Account Number" -msgstr "" - -#. module: base_iban -#: model:res.partner.bank.type.field,name:base_iban.bank_country_field -msgid "country_id" -msgstr "" - -#. module: base_iban -#: model:res.partner.bank.type.field,name:base_iban.bank_swift_field -msgid "bic" -msgstr "" - -#. module: base_iban -#: model:res.partner.bank.type.field,name:base_iban.bank_iban_field -msgid "iban" -msgstr "" - -#. module: base_iban -#: model:ir.module.module,shortdesc:base_iban.module_meta_information -#: field:res.partner.bank,iban:0 -msgid "IBAN" -msgstr "" - -#. module: base_iban -#: model:res.partner.bank.type,name:base_iban.bank_iban -msgid "IBAN Account" -msgstr "" - -#. module: base_iban -#: model:res.partner.bank.type.field,name:base_iban.bank_acc_number_field -msgid "acc_number" -msgstr "" - diff --git a/addons/base_module_merge/i18n/tlh_TLH.po b/addons/base_module_merge/i18n/tlh_TLH.po deleted file mode 100644 index 227ddbc310d..00000000000 --- a/addons/base_module_merge/i18n/tlh_TLH.po +++ /dev/null @@ -1,163 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_module_merge -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_module_merge -#: wizard_field:base_module_merge.module_merge,info,category:0 -msgid "Category" -msgstr "" - -#. module: base_module_merge -#: wizard_view:base_module_merge.module_merge,save:0 -msgid "Information" -msgstr "" - -#. module: base_module_merge -#: wizard_view:base_module_merge.module_merge,init:0 -msgid "Module Merging" -msgstr "" - -#. module: base_module_merge -#: wizard_field:base_module_merge.module_merge,info,author:0 -msgid "Author" -msgstr "" - -#. module: base_module_merge -#: wizard_field:base_module_merge.module_merge,info,directory_name:0 -msgid "Directory Name" -msgstr "" - -#. module: base_module_merge -#: selection:base_module_merge.module_merge,info,data_kind:0 -msgid "Demo Data" -msgstr "" - -#. module: base_module_merge -#: wizard_field:base_module_merge.module_merge,save,module_filename:0 -msgid "Filename" -msgstr "" - -#. module: base_module_merge -#: wizard_field:base_module_merge.module_merge,info,version:0 -msgid "Version" -msgstr "" - -#. module: base_module_merge -#: code:addons/base_module_merge/wizard/base_module_merge.py:0 -#, python-format -msgid "Recursion error in modules dependencies !" -msgstr "" - -#. module: base_module_merge -#: wizard_view:base_module_merge.module_merge,info:0 -#: wizard_view:base_module_merge.module_merge,save:0 -msgid "Module Recording" -msgstr "" - -#. module: base_module_merge -#: wizard_view:base_module_merge.module_merge,save:0 -msgid "Thanks in advance for your contribution." -msgstr "" - -#. module: base_module_merge -#: wizard_field:base_module_merge.module_merge,info,description:0 -msgid "Full Description" -msgstr "" - -#. module: base_module_merge -#: wizard_field:base_module_merge.module_merge,info,name:0 -msgid "Module Name" -msgstr "" - -#. module: base_module_merge -#: model:ir.actions.wizard,name:base_module_merge.wizard_base_module_merger -#: model:ir.ui.menu,name:base_module_merge.menu_wizard_base_module_merger -msgid "Merge module" -msgstr "" - -#. module: base_module_merge -#: wizard_field:base_module_merge.module_merge,save,module_file:0 -msgid "Module .zip File" -msgstr "" - -#. module: base_module_merge -#: model:ir.module.module,shortdesc:base_module_merge.module_meta_information -msgid "Module Merger" -msgstr "" - -#. module: base_module_merge -#: wizard_view:base_module_merge.module_merge,save:0 -msgid "Module successfully created !" -msgstr "" - -#. module: base_module_merge -#: wizard_field:base_module_merge.module_merge,info,website:0 -msgid "Documentation URL" -msgstr "" - -#. module: base_module_merge -#: wizard_field:base_module_merge.module_merge,init,modules_list:0 -msgid "Modules" -msgstr "" - -#. module: base_module_merge -#: wizard_button:base_module_merge.module_merge,info,save:0 -#: wizard_button:base_module_merge.module_merge,init,info:0 -msgid "Continue" -msgstr "" - -#. module: base_module_merge -#: code:addons/base_module_merge/wizard/base_module_merge.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: base_module_merge -#: selection:base_module_merge.module_merge,info,data_kind:0 -msgid "Normal Data" -msgstr "" - -#. module: base_module_merge -#: wizard_view:base_module_merge.module_merge,save:0 -msgid "If you think your module could interrest others people, we'd like you to publish it on OpenERP.com, in the 'Modules' section. You can do it through the website or using features of the 'base_module_publish' module." -msgstr "" - -#. module: base_module_merge -#: help:base_module_merge.module_merge,init,modules_list:0 -msgid "Select Modules which you want to merge in single module" -msgstr "" - -#. module: base_module_merge -#: wizard_field:base_module_merge.module_merge,info,data_kind:0 -msgid "Type of Data" -msgstr "" - -#. module: base_module_merge -#: wizard_view:base_module_merge.module_merge,info:0 -msgid "Module Information" -msgstr "" - -#. module: base_module_merge -#: wizard_button:base_module_merge.module_merge,info,end:0 -#: wizard_button:base_module_merge.module_merge,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: base_module_merge -#: wizard_button:base_module_merge.module_merge,save,end:0 -msgid "Close" -msgstr "" - diff --git a/addons/base_module_publish/i18n/tlh_TLH.po b/addons/base_module_publish/i18n/tlh_TLH.po deleted file mode 100644 index e737574e617..00000000000 --- a/addons/base_module_publish/i18n/tlh_TLH.po +++ /dev/null @@ -1,362 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_module_publish -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,category:0 -msgid "Category" -msgstr "" - -#. module: base_module_publish -#: wizard_view:base_module_publish.module_publish,publish:0 -msgid "Information" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,shortdesc:0 -msgid "Small description" -msgstr "" - -#. module: base_module_publish -#: help:base_module_publish.module_publish,step1,image:0 -msgid "support only .png files" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,author:0 -msgid "Author" -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 "" - -#. module: base_module_publish -#: code:addons/base_module_publish/wizard/base_module_publish.py:0 -#: code:addons/base_module_publish/wizard/module_zip.py:0 -#, python-format -msgid "Error" -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 "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_export,zip,module_filename:0 -msgid "Filename" -msgstr "" - -#. module: base_module_publish -#: model:ir.module.module,shortdesc:base_module_publish.module_meta_information -msgid "Module publisher" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,demourl:0 -msgid "Demo URL" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,version:0 -msgid "Version" -msgstr "" - -#. module: base_module_publish -#: selection:base_module_publish.module_publish,step1,license:0 -msgid "Other proprietary" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_export,init,include_src:0 -msgid "Include sources" -msgstr "" - -#. module: base_module_publish -#: selection:base_module_publish.module_publish,step1,operation:0 -msgid "Modification" -msgstr "" - -#. module: base_module_publish -#: help:base_module_publish.module_publish,step1,demourl:0 -msgid "empty to keep existing value" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step2,email:0 -#: wizard_field:base_module_publish.module_publish_all,login,email:0 -msgid "Email" -msgstr "" - -#. module: base_module_publish -#: help:base_module_publish.module_publish,step1,url_download:0 -msgid "Keep empty for an auto upload of the module" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,website:0 -msgid "Website" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_export,zip,module_file:0 -msgid "Module .zip file" -msgstr "" - -#. module: base_module_publish -#: wizard_view:base_module_publish.module_export,zip:0 -msgid "Finish" -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 "" - -#. module: base_module_publish -#: wizard_view:base_module_publish.module_publish,step2:0 -#: wizard_view:base_module_publish.module_publish_all,login:0 -msgid "If you don't have an access, you can create one http://www.openerp.com/" -msgstr "" - -#. module: base_module_publish -#: wizard_view:base_module_publish.module_publish,init:0 -#: wizard_view:base_module_publish.module_publish_all,init:0 -msgid "Publication information" -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 "" - -#. module: base_module_publish -#: code:addons/base_module_publish/wizard/base_module_publish.py:0 -#, python-format -msgid "Failed to upload the file" -msgstr "" - -#. module: base_module_publish -#: wizard_view:base_module_publish.module_publish,init:0 -#: wizard_view:base_module_publish.module_publish,publish:0 -#: wizard_view:base_module_publish.module_publish,step1:0 -#: wizard_view:base_module_publish.module_publish,step2:0 -#: wizard_view:base_module_publish.module_publish_all,init:0 -#: wizard_view:base_module_publish.module_publish_all,login:0 -#: wizard_view:base_module_publish.module_publish_all,publish:0 -msgid "Module publication" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,license:0 -msgid "Licence" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish_all,publish,update:0 -msgid "Modules updated" -msgstr "" - -#. module: base_module_publish -#: wizard_view:base_module_publish.module_publish,step1:0 -msgid "Verify your module information" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step2,password:0 -#: wizard_field:base_module_publish.module_publish_all,login,password:0 -msgid "Password" -msgstr "" - -#. module: base_module_publish -#: code:addons/base_module_publish/wizard/base_module_publish.py:0 -#, python-format -msgid "Login failed!" -msgstr "" - -#. module: base_module_publish -#: model:ir.actions.wizard,name:base_module_publish.wizard_base_module_publish_all -msgid "Publish all modules" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,publish,result:0 -msgid "Result page" -msgstr "" - -#. module: base_module_publish -#: wizard_button:base_module_publish.module_export,init,zip:0 -#: wizard_button:base_module_publish.module_publish_all,init,login:0 -msgid "Ok" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,name:0 -msgid "Name" -msgstr "" - -#. module: base_module_publish -#: code:addons/base_module_publish/wizard/module_zip.py:0 -#, python-format -msgid "Can not export module that is not installed!" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish_all,publish,error:0 -msgid "Modules in error" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,docurl:0 -msgid "Documentation URL" -msgstr "" - -#. module: base_module_publish -#: code:addons/base_module_publish/wizard/base_module_publish.py:0 -#, python-format -msgid "This version of the module is already exist on the server" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,publish,text_end:0 -msgid "Summary" -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 "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish_all,publish,already:0 -msgid "Modules already updated" -msgstr "" - -#. module: base_module_publish -#: wizard_view:base_module_publish.module_export,init:0 -#: model:ir.actions.wizard,name:base_module_publish.wizard_base_module_export -msgid "Export module" -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 "Please provide here your login on the Open ERP website." -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step2,login:0 -#: wizard_field:base_module_publish.module_publish_all,login,login:0 -msgid "Login" -msgstr "" - -#. module: base_module_publish -#: selection:base_module_publish.module_publish,step1,license:0 -msgid "GPL-2" -msgstr "" - -#. module: base_module_publish -#: code:addons/base_module_publish/wizard/base_module_publish.py:0 -#, python-format -msgid "You could not publish a module that is not installed!" -msgstr "" - -#. module: base_module_publish -#: wizard_view:base_module_publish.module_publish_all,publish:0 -msgid "Upload information" -msgstr "" - -#. module: base_module_publish -#: wizard_view:base_module_publish.module_export,zip:0 -msgid "Module successfully exported !" -msgstr "" - -#. module: base_module_publish -#: selection:base_module_publish.module_publish,step1,operation:0 -msgid "Creation" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,include_src:0 -msgid "Include source" -msgstr "" - -#. module: base_module_publish -#: wizard_view:base_module_publish.module_publish,step1:0 -msgid "General" -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 "" - -#. 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 "" - -#. module: base_module_publish -#: wizard_view:base_module_publish.module_publish,publish:0 -msgid "Result" -msgstr "" - -#. module: base_module_publish -#: wizard_button:base_module_publish.module_export,init,end:0 -#: wizard_button:base_module_publish.module_publish,init,end:0 -#: wizard_button:base_module_publish.module_publish,step1,end:0 -#: wizard_button:base_module_publish.module_publish,step2,end:0 -#: 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 "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,image:0 -msgid "Image file" -msgstr "" - -#. module: base_module_publish -#: wizard_field:base_module_publish.module_publish,step1,operation:0 -msgid "Operation" -msgstr "" - -#. module: base_module_publish -#: help:base_module_publish.module_publish,step1,docurl:0 -msgid "Empty to keep existing value" -msgstr "" - -#. module: base_module_publish -#: model:ir.actions.wizard,name:base_module_publish.wizard_base_module_publish -msgid "Publish module" -msgstr "" - -#. module: base_module_publish -#: wizard_button:base_module_publish.module_publish,step1,init:0 -#: wizard_button:base_module_publish.module_publish,step2,step1:0 -msgid "Previous" -msgstr "" - diff --git a/addons/base_module_record/i18n/tlh_TLH.po b/addons/base_module_record/i18n/tlh_TLH.po deleted file mode 100644 index 1cee26ed170..00000000000 --- a/addons/base_module_record/i18n/tlh_TLH.po +++ /dev/null @@ -1,317 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_module_record -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,intro,category:0 -#: wizard_field:base_module_record.module_save,info,category:0 -msgid "Category" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record_objects,save:0 -#: wizard_field:base_module_record.module_save,init,info_text:0 -#: wizard_view:base_module_record.module_save,save:0 -msgid "Information" -msgstr "" - -#. module: base_module_record -#: model:ir.model,name:base_module_record.model_ir_module_record -msgid "ir.module.record" -msgstr "" - -#. module: base_module_record -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record_objects,init:0 -msgid "Choose objects to record" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,intro,author:0 -#: wizard_field:base_module_record.module_save,info,author:0 -msgid "Author" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,intro,directory_name:0 -#: wizard_field:base_module_record.module_save,info,directory_name:0 -msgid "Directory Name" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,init,filter_cond:0 -msgid "Records only" -msgstr "" - -#. module: base_module_record -#: selection:base_module_record.module_record_objects,intro,data_kind:0 -#: selection:base_module_record.module_save,info,data_kind:0 -msgid "Demo Data" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,save,module_filename:0 -#: wizard_field:base_module_record.module_save,save,module_filename:0 -msgid "Filename" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,intro,version:0 -#: wizard_field:base_module_record.module_save,info,version:0 -msgid "Version" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record_objects,init:0 -msgid "Objects Recording" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,init,check_date:0 -msgid "Record from Date" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record,stop:0 -#: wizard_view:base_module_record.module_save,init:0 -msgid "Recording Information" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_save,init,info_status:0 -msgid "Status" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record,stop:0 -#: wizard_view:base_module_record.module_record_objects,end:0 -#: wizard_view:base_module_record.module_record_objects,intro:0 -#: wizard_view:base_module_record.module_record_objects,save:0 -#: wizard_view:base_module_record.module_save,end:0 -#: wizard_view:base_module_record.module_save,info:0 -#: wizard_view:base_module_record.module_save,init:0 -#: wizard_view:base_module_record.module_save,save:0 -msgid "Module Recording" -msgstr "" - -#. module: base_module_record -#: model:ir.actions.wizard,name:base_module_record.wizard_base_module_record_objects -#: model:ir.ui.menu,name:base_module_record.menu_wizard_base_module_record_objects -msgid "Export Customizations As a Module" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record_objects,save:0 -#: wizard_view:base_module_record.module_save,save:0 -msgid "Thanks in advance for your contribution." -msgstr "" - -#. module: base_module_record -#: help:base_module_record.module_record_objects,init,objects:0 -msgid "List of objects to be recorded" -msgstr "" - -#. module: base_module_record -#: wizard_button:base_module_record.module_record,start,start_confirm:0 -#: model:ir.ui.menu,name:base_module_record.menu_wizard_base_module_record -msgid "Start Recording" -msgstr "" - -#. module: base_module_record -#: selection:base_module_record.module_save,init,info_status:0 -msgid "Not Recording" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,intro,description:0 -#: wizard_field:base_module_record.module_save,info,description:0 -msgid "Full Description" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,intro,name:0 -#: wizard_field:base_module_record.module_save,info,name:0 -msgid "Module Name" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,init,objects:0 -msgid "Objects" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,save,module_file:0 -#: wizard_field:base_module_record.module_save,save,module_file:0 -msgid "Module .zip File" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record,start:0 -msgid "Recording information" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record_objects,save:0 -#: wizard_view:base_module_record.module_save,save:0 -msgid "Module successfully created !" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record,start:0 -msgid "Recording Stopped" -msgstr "" - -#. module: base_module_record -#: selection:base_module_record.module_record_objects,init,filter_cond:0 -msgid "Created" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record_objects,end:0 -#: wizard_view:base_module_record.module_save,end:0 -msgid "Thanks For using Module Recorder" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record,start,continue:0 -msgid "Continue Previous Session" -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,intro,website:0 -#: wizard_field:base_module_record.module_save,info,website:0 -msgid "Documentation URL" -msgstr "" - -#. module: base_module_record -#: selection:base_module_record.module_record_objects,init,filter_cond:0 -msgid "Modified" -msgstr "" - -#. module: base_module_record -#: selection:base_module_record.module_save,init,info_status:0 -msgid "Recording" -msgstr "" - -#. module: base_module_record -#: wizard_button:base_module_record.module_record_objects,init,record:0 -msgid "Record" -msgstr "" - -#. module: base_module_record -#: wizard_button:base_module_record.module_record,stop,end:0 -#: wizard_button:base_module_record.module_record_objects,intro,save:0 -#: wizard_button:base_module_record.module_save,info,save:0 -#: wizard_button:base_module_record.module_save,init,check:0 -msgid "Continue" -msgstr "" - -#. module: base_module_record -#: model:ir.module.module,shortdesc:base_module_record.module_meta_information -#: model:ir.ui.menu,name:base_module_record.menu_wizard_base_mod_rec_rec -msgid "Module Recorder" -msgstr "" - -#. module: base_module_record -#: selection:base_module_record.module_record_objects,intro,data_kind:0 -#: selection:base_module_record.module_save,info,data_kind:0 -msgid "Normal Data" -msgstr "" - -#. module: base_module_record -#: wizard_button:base_module_record.module_record_objects,end,end:0 -#: wizard_button:base_module_record.module_save,end,end:0 -msgid "OK" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record_objects,save:0 -#: wizard_view:base_module_record.module_save,save:0 -msgid "If you think your module could interrest others people, we'd like you to publish it on OpenERP.com, in the 'Modules' section. You can do it through the website or using features of the 'base_module_publish' module." -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record,start:0 -msgid "The module recorder allows you to record every operation made in the Open ERP client and save them as a module. You will be able to install this module on any database to reuse and/or publish it." -msgstr "" - -#. module: base_module_record -#: model:ir.actions.wizard,name:base_module_record.wizard_base_module_record -msgid "Record module" -msgstr "" - -#. module: base_module_record -#: model:ir.ui.menu,name:base_module_record.menu_wizard_base_mod_rec -msgid "Module Creation" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record,stop:0 -msgid "You can continue the recording session by relauching the 'start recording' wizard." -msgstr "" - -#. module: base_module_record -#: wizard_field:base_module_record.module_record_objects,intro,data_kind:0 -#: wizard_field:base_module_record.module_save,info,data_kind:0 -msgid "Type of Data" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record_objects,intro:0 -#: wizard_view:base_module_record.module_save,info:0 -msgid "Module Information" -msgstr "" - -#. module: base_module_record -#: model:ir.actions.wizard,name:base_module_record.wizard_base_module_save -#: model:ir.ui.menu,name:base_module_record.menu_wizard_base_module_save -msgid "Save Recorded Module" -msgstr "" - -#. module: base_module_record -#: wizard_view:base_module_record.module_record,stop:0 -msgid "Open ERP recording is stopped. Don't forget to save the recorded module." -msgstr "" - -#. module: base_module_record -#: wizard_button:base_module_record.module_record,start,end:0 -#: wizard_button:base_module_record.module_record_objects,init,end:0 -#: wizard_button:base_module_record.module_record_objects,intro,end:0 -#: wizard_button:base_module_record.module_save,info,end:0 -#: wizard_button:base_module_record.module_save,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: base_module_record -#: wizard_button:base_module_record.module_record_objects,save,end:0 -#: wizard_button:base_module_record.module_save,save,end:0 -msgid "Close" -msgstr "" - -#. module: base_module_record -#: selection:base_module_record.module_record_objects,init,filter_cond:0 -msgid "Created & Modified" -msgstr "" - -#. module: base_module_record -#: model:ir.ui.menu,name:base_module_record.menu_wizard_base_module_record_stop -msgid "Stop Recording" -msgstr "" - diff --git a/addons/base_report_creator/i18n/tlh_TLH.po b/addons/base_report_creator/i18n/tlh_TLH.po deleted file mode 100644 index 794bb162454..00000000000 --- a/addons/base_report_creator/i18n/tlh_TLH.po +++ /dev/null @@ -1,469 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_report_creator -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_report_creator -#: model:ir.ui.menu,name:base_report_creator.menu_base_report_creator_action -#: model:ir.ui.menu,name:base_report_creator.menu_base_report_creator_action_config -msgid "Custom Reports" -msgstr "" - -#. module: base_report_creator -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,view_graph_type:0 -msgid "Graph Type" -msgstr "" - -#. module: base_report_creator -#: wizard_view:base_report_creator.report.menu.create,init:0 -msgid "Menu Information" -msgstr "" - -#. module: base_report_creator -#: wizard_view:base_report_creator.report_filter.fields,set_value_select_field:0 -msgid "Filter Values" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Sum" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,view_type1:0 -msgid "First View" -msgstr "" - -#. module: base_report_creator -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Field List" -msgstr "" - -#. module: base_report_creator -#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,field_id:0 -msgid "Field Name" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Delay" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,field_id:0 -msgid "Field" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "State" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,state:0 -msgid "Valid" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,state:0 -msgid "Draft" -msgstr "" - -#. module: base_report_creator -#: wizard_view:base_report_creator.report_filter.fields,set_value_select_field:0 -msgid "Set Filter Values" -msgstr "" - -#. module: base_report_creator -#: wizard_field:base_report_creator.report.menu.create,init,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Used View" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Security" -msgstr "" - -#. module: base_report_creator -#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,operator:0 -msgid "Operator" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,model_ids:0 -msgid "Reported Objects" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Starting Date" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Add filter" -msgstr "" - -#. module: base_report_creator -#: model:ir.actions.wizard,name:base_report_creator.wizard_menu_create -msgid "Create Menu for Report" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_graph_orientation:0 -msgid "Vertical" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,type:0 -msgid "Rows And Columns Report" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "General Configuration" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,report_id:0 -#: field:base_report_creator.report.filter,report_id:0 -#: model:ir.model,name:base_report_creator.model_base_report_creator_report -msgid "Report" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_type3:0 -#: selection:base_report_creator.report.fields,calendar_mode:0 -#: selection:base_report_creator.report.fields,graph_mode:0 -msgid "/" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_graph_type:0 -msgid "Pie Chart" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,view_type3:0 -msgid "Third View" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,graph_mode:0 -msgid "Y Axis" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Minimum" -msgstr "" - -#. module: base_report_creator -#: wizard_view:base_report_creator.report_filter.fields,init:0 -msgid "Select Field to filter" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_type1:0 -#: selection:base_report_creator.report,view_type2:0 -#: selection:base_report_creator.report,view_type3:0 -msgid "Graph" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,active:0 -msgid "Active" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_graph_orientation:0 -msgid "Horizontal" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,group_method:0 -msgid "Grouping Method" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.filter,condition:0 -#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,condition:0 -msgid "Condition" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Count" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,state:0 -msgid "Status" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Filters on Fields" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,name:0 -msgid "Report Name" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,graph_mode:0 -msgid "X Axis" -msgstr "" - -#. module: base_report_creator -#: wizard_field:base_report_creator.report.menu.create,init,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,type:0 -msgid "Report Type" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Fields" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Average" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,group_ids:0 -msgid "Authorized Groups" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Graph View" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Reports" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Maximum" -msgstr "" - -#. module: base_report_creator -#: model:ir.actions.wizard,name:base_report_creator.wizard_set_filter_fields -msgid "Set Filter Fields" -msgstr "" - -#. module: base_report_creator -#: wizard_button:base_report_creator.report_filter.fields,set_value_select_field,set_value:0 -msgid "Confirm Filter" -msgstr "" - -#. module: base_report_creator -#: wizard_button:base_report_creator.report_filter.fields,init,set_value_select_field:0 -msgid "Continue" -msgstr "" - -#. module: base_report_creator -#: wizard_field:base_report_creator.report_filter.fields,set_value_select_field,value:0 -msgid "Values" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.filter,expression:0 -msgid "Value" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,view_graph_orientation:0 -msgid "Graph Orientation" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Authorized Groups (empty for all)" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report,view_type2:0 -msgid "Second View" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_graph_type:0 -msgid "Bar Chart" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,graph_mode:0 -msgid "Graph Mode" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.filter,name:0 -msgid "Filter Name" -msgstr "" - -#. module: base_report_creator -#: model:ir.actions.wizard,name:base_report_creator.wizard_report_open -msgid "Open Report" -msgstr "" - -#. module: base_report_creator -#: model:ir.model,name:base_report_creator.model_base_report_creator_report_filter -msgid "Report Filters" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.filter,condition:0 -#: selection:base_report_creator.report_filter.fields,set_value_select_field,condition:0 -msgid "AND" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Ending Date" -msgstr "" - -#. module: base_report_creator -#: wizard_view:base_report_creator.report.menu.create,init:0 -msgid "Create Menu For This Report" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "View parameters" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,group_method:0 -msgid "Grouped" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: field:base_report_creator.report,sql_query:0 -msgid "SQL Query" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: wizard_button:base_report_creator.report.menu.create,init,create_menu:0 -msgid "Create Menu" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: field:base_report_creator.report,field_ids:0 -msgid "Fields to Display" -msgstr "" - -#. module: base_report_creator -#: field:base_report_creator.report.fields,calendar_mode:0 -msgid "Calendar Mode" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.filter,condition:0 -#: selection:base_report_creator.report_filter.fields,set_value_select_field,condition:0 -msgid "OR" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: model:ir.module.module,shortdesc:base_report_creator.module_meta_information -msgid "Report Creator" -msgstr "" - -#. module: base_report_creator -#: model:ir.model,name:base_report_creator.model_base_report_creator_report_fields -msgid "Display Fields" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report.fields,calendar_mode:0 -msgid "Uniq Colors" -msgstr "" - -#. module: base_report_creator -#: view:base_report_creator.report:0 -#: field:base_report_creator.report,filter_ids:0 -msgid "Filters" -msgstr "" - -#. module: base_report_creator -#: wizard_button:base_report_creator.report.menu.create,init,end:0 -#: wizard_button:base_report_creator.report_filter.fields,init,end:0 -#: wizard_button:base_report_creator.report_filter.fields,set_value_select_field,end:0 -msgid "Cancel" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_type1:0 -#: selection:base_report_creator.report,view_type2:0 -#: selection:base_report_creator.report,view_type3:0 -msgid "Calendar" -msgstr "" - -#. module: base_report_creator -#: model:ir.module.module,description:base_report_creator.module_meta_information -msgid "This modules allows you to create any statistic\n" -"report on several object. It's a SQL query builder and browser\n" -"for and users.\n" -"\n" -"After installing the module, it adds a menu to define custom report in\n" -"the \"Dashboard\" menu.\n" -"" -msgstr "" - -#. module: base_report_creator -#: wizard_field:base_report_creator.report_filter.fields,init,field_id:0 -msgid "Filter Field" -msgstr "" - -#. module: base_report_creator -#: selection:base_report_creator.report,view_type1:0 -#: selection:base_report_creator.report,view_type2:0 -#: selection:base_report_creator.report,view_type3:0 -msgid "Tree" -msgstr "" - diff --git a/addons/base_report_designer/i18n/tlh_TLH.po b/addons/base_report_designer/i18n/tlh_TLH.po deleted file mode 100644 index cb2942136e5..00000000000 --- a/addons/base_report_designer/i18n/tlh_TLH.po +++ /dev/null @@ -1,153 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_report_designer -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_report_designer -#: wizard_field:base_report_designer.modify,init,text:0 -msgid "Introduction" -msgstr "" - -#. module: base_report_designer -#: wizard_view:base_report_designer.modify,send_form:0 -msgid "Upload your modified report" -msgstr "" - -#. module: base_report_designer -#: wizard_button:base_report_designer.modify,get_form_result,send_form:0 -msgid "Upload the modified report" -msgstr "" - -#. module: base_report_designer -#: wizard_view:base_report_designer.modify,get_form_result:0 -msgid "The .SXW report" -msgstr "" - -#. module: base_report_designer -#: wizard_view:base_report_designer.modify,send_form_result:0 -msgid "Report modified" -msgstr "" - -#. module: base_report_designer -#: wizard_button:base_report_designer.modify,init,get_form:0 -msgid "Modify a report" -msgstr "" - -#. module: base_report_designer -#: wizard_view:base_report_designer.modify,send_form_result:0 -msgid "Your report has been modified." -msgstr "" - -#. module: base_report_designer -#: model:ir.module.module,shortdesc:base_report_designer.module_meta_information -msgid "Report designer interface module" -msgstr "" - -#. module: base_report_designer -#: wizard_field:base_report_designer.modify,get_form,report_id:0 -#: wizard_field:base_report_designer.modify,get_form_result,report_id:0 -#: wizard_field:base_report_designer.modify,send_form,report_id:0 -msgid "Report" -msgstr "" - -#. module: base_report_designer -#: code:addons/base_report_designer/wizard/base_report_designer_modify.py:0 -#, python-format -msgid "Report does not contain the sxw content!" -msgstr "" - -#. module: base_report_designer -#: model:ir.ui.menu,name:base_report_designer.menu_wizard_report_designer_modify -msgid "Report Designer" -msgstr "" - -#. module: base_report_designer -#: wizard_view:base_report_designer.modify,get_form:0 -#: wizard_view:base_report_designer.modify,get_form_result:0 -#: wizard_view:base_report_designer.modify,send_form:0 -msgid "Get a report" -msgstr "" - -#. module: base_report_designer -#: wizard_button:base_report_designer.modify,get_form,get_form_result:0 -msgid "Continue" -msgstr "" - -#. module: base_report_designer -#: code:addons/base_report_designer/wizard/base_report_designer_modify.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: base_report_designer -#: wizard_field:base_report_designer.modify,get_form_result,file_sxw:0 -#: wizard_field:base_report_designer.modify,send_form,file_sxw:0 -msgid "Your .SXW file" -msgstr "" - -#. module: base_report_designer -#: wizard_view:base_report_designer.modify,init:0 -msgid "Report designer" -msgstr "" - -#. module: base_report_designer -#: wizard_view:base_report_designer.modify,get_form_result:0 -msgid "This is the template of your requested report. Save it as a .SXW file and open it with OpenOffice. Don't forget to install the Tiny OpenOffice package to modify it. Once it is modified, re-upload it in Open ERP using this wizard." -msgstr "" - -#. module: base_report_designer -#: wizard_button:base_report_designer.modify,send_form,send_form_result:0 -msgid "Update the report" -msgstr "" - -#. module: base_report_designer -#: selection:base_report_designer.modify,init,operation:0 -msgid "Create a new report" -msgstr "" - -#. module: base_report_designer -#: selection:base_report_designer.modify,init,operation:0 -#: model:ir.actions.wizard,name:base_report_designer.wizard_report_designer_modify -msgid "Modify an existing report" -msgstr "" - -#. module: base_report_designer -#: wizard_button:base_report_designer.modify,get_form,end:0 -#: wizard_button:base_report_designer.modify,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: base_report_designer -#: wizard_button:base_report_designer.modify,get_form_result,end:0 -#: wizard_button:base_report_designer.modify,send_form,end:0 -#: wizard_button:base_report_designer.modify,send_form_result,end:0 -msgid "Close" -msgstr "" - -#. module: base_report_designer -#: wizard_field:base_report_designer.modify,init,operation:0 -msgid "Operation" -msgstr "" - -#. module: base_report_designer -#: wizard_view:base_report_designer.modify,init:0 -msgid "Report designer introduction" -msgstr "" - -#. module: base_report_designer -#: wizard_view:base_report_designer.modify,get_form:0 -msgid "Select your report" -msgstr "" - diff --git a/addons/base_setup/i18n/tlh_TLH.po b/addons/base_setup/i18n/tlh_TLH.po deleted file mode 100644 index c4bf16c74ad..00000000000 --- a/addons/base_setup/i18n/tlh_TLH.po +++ /dev/null @@ -1,256 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_setup -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,city:0 -#: wizard_field:base_setup.base_setup,init,city:0 -#: wizard_field:base_setup.base_setup,update,city:0 -msgid "City" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,finish:0 -msgid "You can start configuring the system or connect directly to the database using the default setup." -msgstr "" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,zip:0 -#: wizard_field:base_setup.base_setup,init,zip:0 -#: wizard_field:base_setup.base_setup,update,zip:0 -msgid "Zip code" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,init:0 -msgid "Select a Profile" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -msgid "Report header" -msgstr "" - -#. module: base_setup -#: wizard_button:base_setup.base_setup,finish,config:0 -msgid "Start Configuration" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,init:0 -msgid "You'll be able to install more modules later through the Administration menu." -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,init:0 -msgid "A profile sets a pre-selection of modules for specific needs. These profiles have been setup to help you discover the different aspects of OpenERP. This is just an overview, we have 300+ available modules." -msgstr "" - -#. module: base_setup -#: wizard_button:base_setup.base_setup,company,update:0 -#: wizard_button:base_setup.base_setup,init,company:0 -msgid "Next" -msgstr "" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,email:0 -#: wizard_field:base_setup.base_setup,init,email:0 -#: wizard_field:base_setup.base_setup,update,email:0 -msgid "E-mail" -msgstr "" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,state_id:0 -#: wizard_field:base_setup.base_setup,init,state_id:0 -#: wizard_field:base_setup.base_setup,update,state_id:0 -msgid "State" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,finish:0 -msgid "Your new database is now fully installed." -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 "" - -#. 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 "" - -#. 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 "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -msgid "General Information" -msgstr "" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,street2:0 -#: wizard_field:base_setup.base_setup,init,street2:0 -#: wizard_field:base_setup.base_setup,update,street2:0 -msgid "Street2" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -msgid "Define Main Company" -msgstr "" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,phone:0 -#: wizard_field:base_setup.base_setup,init,phone:0 -#: wizard_field:base_setup.base_setup,update,phone:0 -msgid "Phone" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -msgid "Report Information" -msgstr "" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,name:0 -#: wizard_field:base_setup.base_setup,init,name:0 -#: wizard_field:base_setup.base_setup,update,name:0 -msgid "Company Name" -msgstr "" - -#. module: base_setup -#: help:base_setup.base_setup,company,rml_footer2:0 -#: help:base_setup.base_setup,init,rml_footer2:0 -#: help:base_setup.base_setup,update,rml_footer2:0 -msgid "This sentence will appear at the bottom of your reports.\n" -"We suggest you to put bank information here:\n" -"IBAN: BE74 1262 0121 6907 - SWIFT: CPDF BE71 - VAT: BE0477.472.701" -msgstr "" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,country_id:0 -#: wizard_field:base_setup.base_setup,init,country_id:0 -#: wizard_field:base_setup.base_setup,update,country_id:0 -msgid "Country" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -#: wizard_view:base_setup.base_setup,finish:0 -#: wizard_view:base_setup.base_setup,init:0 -#: wizard_view:base_setup.base_setup,update:0 -#: model:ir.actions.wizard,name:base_setup.action_wizard_setup -#: model:ir.actions.wizard,name:base_setup.wizard_base_setup -msgid "Setup" -msgstr "" - -#. module: base_setup -#: help:base_setup.base_setup,company,rml_footer1:0 -#: help:base_setup.base_setup,init,rml_footer1:0 -#: help:base_setup.base_setup,update,rml_footer1:0 -msgid "This sentence will appear at the bottom of your reports.\n" -"We suggest you to write legal sentences here:\n" -"Web: http://openerp.com - Fax: +32.81.73.35.01 - Fortis Bank: 126-2013269-07" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,update:0 -msgid "Summary" -msgstr "" - -#. module: base_setup -#: wizard_button:base_setup.base_setup,update,finish:0 -msgid "Install" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,finish:0 -msgid "Installation Done" -msgstr "" - -#. module: base_setup -#: help:base_setup.base_setup,company,rml_header1:0 -#: help:base_setup.base_setup,init,rml_header1:0 -#: help:base_setup.base_setup,update,rml_header1:0 -msgid "This sentence will appear at the top right corner of your reports.\n" -"We suggest you to put a slogan here:\n" -"\"Open Source Business Solutions\"." -msgstr "" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,rml_header1:0 -#: wizard_field:base_setup.base_setup,init,rml_header1:0 -#: wizard_field:base_setup.base_setup,update,rml_header1:0 -msgid "Report Header" -msgstr "" - -#. module: base_setup -#: wizard_view:base_setup.base_setup,company:0 -msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,currency:0 -#: wizard_field:base_setup.base_setup,init,currency:0 -#: wizard_field:base_setup.base_setup,update,currency:0 -msgid "Currency" -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 "" - -#. module: base_setup -#: wizard_button:base_setup.base_setup,finish,menu:0 -msgid "Use Directly" -msgstr "" - -#. module: base_setup -#: wizard_button:base_setup.base_setup,init,menu:0 -msgid "Cancel" -msgstr "" - -#. module: base_setup -#: wizard_field:base_setup.base_setup,company,logo:0 -#: wizard_field:base_setup.base_setup,init,logo:0 -#: wizard_field:base_setup.base_setup,update,logo:0 -msgid "Logo" -msgstr "" - -#. module: base_setup -#: model:ir.module.module,shortdesc:base_setup.module_meta_information -msgid "Base Setup" -msgstr "" - -#. module: base_setup -#: wizard_button:base_setup.base_setup,company,init:0 -#: wizard_button:base_setup.base_setup,update,company:0 -msgid "Previous" -msgstr "" - diff --git a/addons/base_vat/i18n/tlh_TLH.po b/addons/base_vat/i18n/tlh_TLH.po deleted file mode 100644 index c7d7f760c45..00000000000 --- a/addons/base_vat/i18n/tlh_TLH.po +++ /dev/null @@ -1,37 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_vat -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_vat -#: model:ir.module.module,description:base_vat.module_meta_information -msgid "Enable the VAT Number for the partner. Check the validity of that VAT Number." -msgstr "" - -#. module: base_vat -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: base_vat -#: field:res.partner,vat_subjected:0 -msgid "VAT Legal Statement" -msgstr "" - -#. module: base_vat -#: model:ir.module.module,shortdesc:base_vat.module_meta_information -msgid "VAT" -msgstr "" - diff --git a/addons/board/i18n/tlh_TLH.po b/addons/board/i18n/tlh_TLH.po deleted file mode 100644 index 5954b12a330..00000000000 --- a/addons/board/i18n/tlh_TLH.po +++ /dev/null @@ -1,213 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * board -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: board -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: board -#: model:ir.model,name:board.model_board_board -msgid "board.board" -msgstr "" - -#. module: board -#: field:board.note,user_id:0 -msgid "Author" -msgstr "" - -#. module: board -#: model:ir.module.module,shortdesc:board.module_meta_information -msgid "Dashboard main module" -msgstr "" - -#. module: board -#: view:board.note:0 -#: field:board.note,note:0 -msgid "Note" -msgstr "" - -#. module: board -#: field:board.board.line,width:0 -msgid "Width" -msgstr "" - -#. module: board -#: field:board.board.line,name:0 -msgid "Title" -msgstr "" - -#. module: board -#: model:ir.actions.act_window,name:board.action_view_board_list_form -#: model:ir.ui.menu,name:board.menu_view_board_form -msgid "Dashboard Definition" -msgstr "" - -#. module: board -#: model:ir.actions.act_window,name:board.action_view_board_note_form -#: model:ir.ui.menu,name:board.menu_view_board_note_form -msgid "Publish a note" -msgstr "" - -#. module: board -#: wizard_view:board.board.menu.create,init:0 -msgid "Menu Information" -msgstr "" - -#. module: board -#: field:board.board,line_ids:0 -msgid "Action Views" -msgstr "" - -#. module: board -#: model:ir.model,name:board.model_board_note -msgid "board.note" -msgstr "" - -#. module: board -#: field:board.note,date:0 -msgid "Date" -msgstr "" - -#. module: board -#: model:ir.ui.menu,name:board.next_id_50 -msgid "Configuration" -msgstr "" - -#. module: board -#: field:board.note.type,name:0 -msgid "Note Type" -msgstr "" - -#. module: board -#: wizard_view:board.board.menu.create,init:0 -msgid "Create Menu For Dashboard" -msgstr "" - -#. module: board -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: board -#: wizard_field:board.board.menu.create,init,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: board -#: view:board.note:0 -msgid "Notes" -msgstr "" - -#. module: board -#: model:ir.model,name:board.model_board_note_type -msgid "board.note.type" -msgstr "" - -#. module: board -#: view:board.board:0 -#: field:board.board,name:0 -#: field:board.board.line,board_id:0 -msgid "Dashboard" -msgstr "" - -#. module: board -#: model:ir.module.module,description:board.module_meta_information -msgid "Base module for all dashboards." -msgstr "" - -#. module: board -#: field:board.board.line,position:0 -msgid "Position" -msgstr "" - -#. module: board -#: model:ir.actions.act_window,name:board.dashboard_open -msgid "Open Dashboard" -msgstr "" - -#. module: board -#: wizard_field:board.board.menu.create,init,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: board -#: field:board.note,type:0 -msgid "Note type" -msgstr "" - -#. module: board -#: selection:board.board.line,position:0 -msgid "Left" -msgstr "" - -#. module: board -#: field:board.board,view_id:0 -msgid "Board View" -msgstr "" - -#. module: board -#: selection:board.board.line,position:0 -msgid "Right" -msgstr "" - -#. module: board -#: field:board.board.line,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: board -#: view:board.board:0 -#: wizard_button:board.board.menu.create,init,create_menu:0 -msgid "Create Menu" -msgstr "" - -#. module: board -#: model:ir.ui.menu,name:board.dashboard_menu -msgid "Dashboards" -msgstr "" - -#. module: board -#: field:board.board.line,height:0 -msgid "Height" -msgstr "" - -#. module: board -#: model:ir.actions.wizard,name:board.wizard_board_create_menu -msgid "Create Board Menu" -msgstr "" - -#. module: board -#: wizard_button:board.board.menu.create,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: board -#: view:board.board:0 -msgid "Dashboard View" -msgstr "" - -#. module: board -#: model:ir.model,name:board.model_board_board_line -msgid "board.board.line" -msgstr "" - -#. module: board -#: field:board.note,name:0 -msgid "Subject" -msgstr "" - diff --git a/addons/board_account/i18n/tlh_TLH.po b/addons/board_account/i18n/tlh_TLH.po deleted file mode 100644 index 27c6504fcbd..00000000000 --- a/addons/board_account/i18n/tlh_TLH.po +++ /dev/null @@ -1,90 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * board_account -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: board_account -#: view:board.board:0 -msgid "Analytic accounts to close" -msgstr "" - -#. module: board_account -#: view:board.board:0 -msgid "Draft invoices" -msgstr "" - -#. module: board_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: board_account -#: model:ir.actions.act_window,name:board_account.open_board_account -#: model:ir.ui.menu,name:board_account.menu_board_account -msgid "Accounting Dashboard" -msgstr "" - -#. module: board_account -#: model:ir.actions.act_window,name:board_account.action_aged_receivable -msgid "Receivable Accounts" -msgstr "" - -#. module: board_account -#: view:board.board:0 -#: model:ir.actions.act_window,name:board_account.act_my_account -msgid "Accounts to invoice" -msgstr "" - -#. module: board_account -#: view:board.board:0 -#: model:ir.actions.act_window,name:board_account.action_account_analytic_line_to_invoice -msgid "Costs to invoice" -msgstr "" - -#. module: board_account -#: view:board.board:0 -msgid "Aged receivables" -msgstr "" - -#. module: board_account -#: model:ir.module.module,shortdesc:board_account.module_meta_information -msgid "Board for accountant" -msgstr "" - -#. module: board_account -#: model:ir.actions.act_window,name:board_account.action_aged_income -msgid "Income Accounts" -msgstr "" - -#. module: board_account -#: view:board.board:0 -msgid "My indicators" -msgstr "" - -#. module: board_account -#: model:ir.ui.menu,name:board_account.next_id_68 -msgid "Accounting" -msgstr "" - -#. module: board_account -#: view:board.board:0 -msgid "Account Board" -msgstr "" - -#. module: board_account -#: view:board.board:0 -msgid "Aged income" -msgstr "" - diff --git a/addons/board_association/i18n/tlh_TLH.po b/addons/board_association/i18n/tlh_TLH.po deleted file mode 100644 index 4f64164419e..00000000000 --- a/addons/board_association/i18n/tlh_TLH.po +++ /dev/null @@ -1,63 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * board_association -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: board_association -#: model:ir.ui.menu,name:board_association.menu_board_associations_manager -msgid "Associations" -msgstr "" - -#. module: board_association -#: model:ir.module.module,shortdesc:board_association.module_meta_information -msgid "Dashboard for Associations" -msgstr "" - -#. module: board_association -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: board_association -#: view:board.board:0 -#: model:ir.actions.act_window,name:board_association.open_board_associations_manager -msgid "Association Dashboard" -msgstr "" - -#. module: board_association -#: view:board.board:0 -msgid "My tasks" -msgstr "" - -#. module: board_association -#: view:board.board:0 -msgid "New members" -msgstr "" - -#. module: board_association -#: view:board.board:0 -msgid "Unpaid Invoices" -msgstr "" - -#. module: board_association -#: view:board.board:0 -msgid "Next Events" -msgstr "" - -#. module: board_association -#: view:board.board:0 -msgid "Registrations by Events" -msgstr "" - diff --git a/addons/board_auction/i18n/tlh_TLH.po b/addons/board_auction/i18n/tlh_TLH.po deleted file mode 100644 index bb57917eaba..00000000000 --- a/addons/board_auction/i18n/tlh_TLH.po +++ /dev/null @@ -1,117 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * board_auction -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: board_auction -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "Objects by day" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "Objects statistics" -msgstr "" - -#. module: board_auction -#: model:ir.ui.menu,name:board_auction.menu_board_auction_manager -msgid "Auction Manager" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "Summary pointing by user" -msgstr "" - -#. module: board_auction -#: model:ir.ui.menu,name:board_auction.menu_board_auction -msgid "Auction Member" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "My Latest Deposits" -msgstr "" - -#. module: board_auction -#: model:ir.actions.act_window,name:board_auction.open_board_auction -msgid "Auction member board" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "Auction manager " -msgstr "" - -#. module: board_auction -#: model:ir.module.module,shortdesc:board_auction.module_meta_information -msgid "Board for Auction" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "Estimations/Adjudication" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "Total Adjudications" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "Latest objects" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "Latest deposits" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "Min/Adj/Max" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "Menu" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "My objects By Day" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "My board" -msgstr "" - -#. module: board_auction -#: model:ir.actions.act_window,name:board_auction.open_board_auction_manager -msgid "Auction manager board" -msgstr "" - -#. module: board_auction -#: view:board.board:0 -msgid "My Latest Objects" -msgstr "" - diff --git a/addons/board_crm_configuration/i18n/tlh_TLH.po b/addons/board_crm_configuration/i18n/tlh_TLH.po deleted file mode 100644 index 625a41a3405..00000000000 --- a/addons/board_crm_configuration/i18n/tlh_TLH.po +++ /dev/null @@ -1,114 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * board_crm_configuration -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: board_crm_configuration -#: model:ir.module.module,shortdesc:board_crm_configuration.module_meta_information -msgid "Dashboard for CRM Configuration" -msgstr "" - -#. module: board_crm_configuration -#: view:board.board:0 -#: model:ir.ui.menu,name:board_crm_configuration.menu_board_statistics_dash -msgid "Statistics Dashboard" -msgstr "" - -#. module: board_crm_configuration -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: board_crm_configuration -#: view:board.board:0 -#: model:ir.actions.act_window,name:board_crm_configuration.act_oppor_categ -msgid "Opportunities By Categories" -msgstr "" - -#. module: board_crm_configuration -#: view:board.board:0 -#: model:ir.actions.act_window,name:board_crm_configuration.act_my_cases -msgid "My Cases" -msgstr "" - -#. module: board_crm_configuration -#: model:ir.actions.act_window,name:board_crm_configuration.open_board_crm -msgid "CRM Dashboard" -msgstr "" - -#. module: board_crm_configuration -#: view:board.board:0 -#: model:ir.ui.menu,name:board_crm_configuration.menu_board_crm -msgid "Connecting Dashboard" -msgstr "" - -#. module: board_crm_configuration -#: view:board.board:0 -#: model:ir.actions.act_window,name:board_crm_configuration.act_leads_month_user -msgid "Leads Of The Month By User" -msgstr "" - -#. module: board_crm_configuration -#: view:board.board:0 -#: view:report.crm.case.section.stage:0 -msgid "Leads By Stage" -msgstr "" - -#. module: board_crm_configuration -#: view:board.board:0 -msgid "My Meetings" -msgstr "" - -#. module: board_crm_configuration -#: model:ir.ui.menu,name:board_crm_configuration.menu_board_crm_config -msgid "CRM Configuration" -msgstr "" - -#. module: board_crm_configuration -#: view:board.board:0 -#: model:ir.actions.act_window,name:board_crm_configuration.act_jobs_categ -msgid "Jobs Requests Of The Month by Applied Job" -msgstr "" - -#. module: board_crm_configuration -#: view:board.board:0 -msgid "My Sales Pipeline" -msgstr "" - -#. module: board_crm_configuration -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" -msgstr "" - -#. module: board_crm_configuration -#: view:board.board:0 -msgid "My Leads By Stage" -msgstr "" - -#. module: board_crm_configuration -#: view:report.crm.case.categ:0 -msgid "Cases by Sections and Categories" -msgstr "" - -#. module: board_crm_configuration -#: model:ir.actions.act_window,name:board_crm_configuration.open_board_statistical_dash -msgid "CRM - Statistics Dashboard" -msgstr "" - -#. module: board_crm_configuration -#: view:board.board:0 -msgid "My Leads" -msgstr "" - diff --git a/addons/board_document/i18n/tlh_TLH.po b/addons/board_document/i18n/tlh_TLH.po deleted file mode 100644 index 72c12e7405a..00000000000 --- a/addons/board_document/i18n/tlh_TLH.po +++ /dev/null @@ -1,84 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * board_document -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: board_document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: board_document -#: model:ir.actions.act_window,name:board_document.open_board_document_manager1 -#: model:ir.ui.menu,name:board_document.menu_board_document_manager1 -msgid "Statistics by User" -msgstr "" - -#. module: board_document -#: model:ir.actions.act_window,name:board_document.open_board_document_manager -#: model:ir.ui.menu,name:board_document.menu_board_document_manager -msgid "Document Dashboard" -msgstr "" - -#. module: board_document -#: view:board.board:0 -msgid "Wall of Shame" -msgstr "" - -#. module: board_document -#: view:board.board:0 -msgid "File Size by Month" -msgstr "" - -#. module: board_document -#: view:board.board:0 -msgid "Files by Month" -msgstr "" - -#. module: board_document -#: view:board.board:0 -msgid "Files by Resource Type" -msgstr "" - -#. module: board_document -#: view:board.board:0 -msgid "New Files" -msgstr "" - -#. module: board_document -#: model:ir.module.module,shortdesc:board_document.module_meta_information -msgid "Dashboard for Document Management" -msgstr "" - -#. module: board_document -#: view:board.board:0 -msgid "Files by Partner" -msgstr "" - -#. module: board_document -#: model:ir.ui.menu,name:board_document.menu_board_document -msgid "Document" -msgstr "" - -#. module: board_document -#: view:board.board:0 -msgid "Files by Users" -msgstr "" - -#. module: board_document -#: view:board.board:0 -msgid "Document board" -msgstr "" - diff --git a/addons/board_manufacturing/i18n/tlh_TLH.po b/addons/board_manufacturing/i18n/tlh_TLH.po deleted file mode 100644 index bf11444d3cb..00000000000 --- a/addons/board_manufacturing/i18n/tlh_TLH.po +++ /dev/null @@ -1,68 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * board_manufacturing -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: board_manufacturing -#: view:board.board:0 -msgid "Procurement in Exception" -msgstr "" - -#. module: board_manufacturing -#: view:board.board:0 -msgid "Next production orders" -msgstr "" - -#. module: board_manufacturing -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: board_manufacturing -#: view:board.board:0 -msgid "Manufacturing board" -msgstr "" - -#. module: board_manufacturing -#: model:ir.ui.menu,name:board_manufacturing.next_id_87 -msgid "Production" -msgstr "" - -#. module: board_manufacturing -#: view:board.board:0 -msgid "Deliveries (Out packing)" -msgstr "" - -#. module: board_manufacturing -#: model:ir.actions.act_window,name:board_manufacturing.open_board_manufacturing -#: model:ir.ui.menu,name:board_manufacturing.menu_board_manufacturing -msgid "Production Dashboard" -msgstr "" - -#. module: board_manufacturing -#: model:ir.module.module,shortdesc:board_manufacturing.module_meta_information -msgid "Board for manufacturing" -msgstr "" - -#. module: board_manufacturing -#: view:board.board:0 -msgid "Stock value variation" -msgstr "" - -#. module: board_manufacturing -#: view:board.board:0 -msgid "Workcenter futur load" -msgstr "" - diff --git a/addons/board_project/i18n/tlh_TLH.po b/addons/board_project/i18n/tlh_TLH.po deleted file mode 100644 index 6024822f3e6..00000000000 --- a/addons/board_project/i18n/tlh_TLH.po +++ /dev/null @@ -1,134 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * board_project -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: board_project -#: view:board.board:0 -msgid "My project's planning" -msgstr "" - -#. module: board_project -#: view:hr_timesheet_sheet.sheet:0 -#: model:ir.actions.act_window,name:board_project.act_hr_timesheet_sheet -msgid "Timesheets" -msgstr "" - -#. module: board_project -#: view:board.board:0 -#: model:ir.actions.act_window,name:board_project.act_my_project -msgid "My projects" -msgstr "" - -#. module: board_project -#: model:ir.actions.act_window,name:board_project.action_view_task_tree_deadline -msgid "My Task's Deadlines" -msgstr "" - -#. module: board_project -#: view:project.task:0 -msgid "My Tasks" -msgstr "" - -#. module: board_project -#: view:board.board:0 -#: model:ir.actions.act_window,name:board_project.action_view_board_note_tree -msgid "Public Notes" -msgstr "" - -#. module: board_project -#: model:ir.actions.act_window,name:board_project.open_board_project -#: model:ir.ui.menu,name:board_project.menu_board_project -msgid "Project Dashboard" -msgstr "" - -#. module: board_project -#: model:ir.module.module,shortdesc:board_project.module_meta_information -msgid "Board for project users" -msgstr "" - -#. module: board_project -#: model:ir.actions.act_window,name:board_project.action_project_pipeline_user -msgid "Pipeline of tasks" -msgstr "" - -#. module: board_project -#: view:board.board:0 -msgid "My Planning" -msgstr "" - -#. module: board_project -#: view:board.board:0 -#: model:ir.actions.act_window,name:board_project.act_my_account -msgid "My accounts to invoice" -msgstr "" - -#. module: board_project -#: model:ir.actions.act_window,name:board_project.open_board_project_manager -#: model:ir.ui.menu,name:board_project.menu_board_project_manager -msgid "Project Manager Dashboard" -msgstr "" - -#. module: board_project -#: view:board.board:0 -msgid "My Deadlines" -msgstr "" - -#. module: board_project -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: board_project -#: view:board.board:0 -msgid "User's timesheets" -msgstr "" - -#. module: board_project -#: model:ir.ui.menu,name:board_project.next_id_86 -msgid "Project" -msgstr "" - -#. module: board_project -#: view:board.board:0 -msgid "Project manager board" -msgstr "" - -#. module: board_project -#: view:board.board:0 -#: model:ir.actions.act_window,name:board_project.action_view_task_tree -msgid "My Open Tasks" -msgstr "" - -#. module: board_project -#: view:board.board:0 -msgid "My Board" -msgstr "" - -#. module: board_project -#: view:board.board:0 -msgid "My tasks board" -msgstr "" - -#. module: board_project -#: view:board.board:0 -msgid "My user's pipeline" -msgstr "" - -#. module: board_project -#: view:board.board:0 -msgid "My Timesheet" -msgstr "" - diff --git a/addons/board_sale/i18n/tlh_TLH.po b/addons/board_sale/i18n/tlh_TLH.po deleted file mode 100644 index d855bf94ae6..00000000000 --- a/addons/board_sale/i18n/tlh_TLH.po +++ /dev/null @@ -1,68 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * board_sale -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: board_sale -#: model:ir.module.module,shortdesc:board_sale.module_meta_information -msgid "Dashboard for sales" -msgstr "" - -#. module: board_sale -#: model:ir.actions.act_window,name:board_sale.open_board_sales_manager -#: model:ir.ui.menu,name:board_sale.menu_board_sales_manager -msgid "Sale Dashboard" -msgstr "" - -#. module: board_sale -#: view:board.board:0 -msgid "Sales of the month" -msgstr "" - -#. module: board_sale -#: view:board.board:0 -msgid "Sales manager board" -msgstr "" - -#. module: board_sale -#: view:board.board:0 -msgid "Cases of the month" -msgstr "" - -#. module: board_sale -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: board_sale -#: view:board.board:0 -msgid "My open quotations" -msgstr "" - -#. module: board_sale -#: model:ir.ui.menu,name:board_sale.next_id_88 -msgid "Sales" -msgstr "" - -#. module: board_sale -#: view:board.board:0 -msgid "Cases statistics" -msgstr "" - -#. module: board_sale -#: view:board.board:0 -msgid "Top ten sales of the month" -msgstr "" - diff --git a/addons/crm/i18n/tlh_TLH.po b/addons/crm/i18n/tlh_TLH.po deleted file mode 100644 index 7d361040779..00000000000 --- a/addons/crm/i18n/tlh_TLH.po +++ /dev/null @@ -1,1535 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * crm -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: crm -#: view:crm.case.rule:0 -msgid "Delay After Trigger Date:" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu7:0 -#: wizard_field:crm.case.section.menu,design_menu,menu7_option:0 -msgid "My Draft " -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "Add Last Mail for Replying" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "State of Mind Computation" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_categ0-act -#: model:ir.ui.menu,name:crm.menu_crm_case_categ0-act -#: model:ir.ui.menu,name:crm.next_id_52 -msgid "All Cases" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_remind_partner:0 -msgid "Remind Partner" -msgstr "" - -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Update The Proposed Menus To Be Created" -msgstr "" - -#. module: crm -#: wizard_view:crm.case.section.menu,init:0 -msgid "Base Information" -msgstr "" - -#. module: crm -#: field:crm.case.rule,trg_partner_categ_id:0 -#: field:crm.segmentation,categ_id:0 -msgid "Partner Category" -msgstr "" - -#. module: crm -#: field:crm.segmentation,sales_purchase_active:0 -msgid "Use The Sales Purchase Rules" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu13:0 -#: wizard_field:crm.case.section.menu,design_menu,menu13_option:0 -msgid "All Open " -msgstr "" - -#. module: crm -#: help:crm.segmentation,som_interval_default:0 -msgid "Default state of mind for period preceeding the 'Max Interval' computation. This is the starting state of mind by default if the partner has no event." -msgstr "" - -#. module: crm -#: field:crm.case.history,email:0 -msgid "Email" -msgstr "" - -#. module: crm -#: selection:crm.segmentation.line,expr_name:0 -msgid "Purchase Amount" -msgstr "" - -#. module: crm -#: model:ir.actions.wizard,name:crm.wizard_case_section_menu -#: model:ir.ui.menu,name:crm.menu_wizard_case_section_menu -msgid "Create menus for a case section" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "Template of Email to Send" -msgstr "" - -#. module: crm -#: field:crm.case.rule,trg_state_to:0 -msgid "Button Pressed" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "Planned costs" -msgstr "" - -#. module: crm -#: model:ir.ui.menu,name:crm.menu_crm -msgid "CRM & SRM" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Segmentation Description" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "%(case_user)s = Responsible name" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_email_cc:0 -msgid "Add watchers (Cc)" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu1:0 -#: wizard_field:crm.case.section.menu,design_menu,menu1_option:0 -msgid "My " -msgstr "" - -#. module: crm -#: view:crm.case:0 -#: view:crm.case.history:0 -#: model:ir.ui.menu,name:crm.next_id_51 -msgid "Cases" -msgstr "" - -#. module: crm -#: selection:crm.case,priority:0 -#: selection:crm.case.rule,act_priority:0 -#: selection:crm.case.rule,trg_priority_from:0 -#: selection:crm.case.rule,trg_priority_to:0 -msgid "Highest" -msgstr "" - -#. module: crm -#: selection:crm.segmentation.line,expr_operator:0 -msgid "<" -msgstr "" - -#. module: crm -#: help:crm.segmentation,categ_id:0 -msgid "The partner category that will be added to partners that match the segmentation criterions after computation." -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "You can not escalate this case.\nYou are already at the top level." -msgstr "" - -#. module: crm -#: field:crm.case,email_cc:0 -msgid "Watchers Emails" -msgstr "" - -#. module: crm -#: wizard_button:crm.case.section.menu,design_menu,create:0 -#: wizard_button:crm.case.section.menu,init,design_menu:0 -msgid "Create menu Entries" -msgstr "" - -#. module: crm -#: selection:crm.case.rule,trg_date_range_type:0 -msgid "Days" -msgstr "" - -#. module: crm -#: field:crm.segmentation.line,expr_value:0 -msgid "Value" -msgstr "" - -#. module: crm -#: field:crm.case,planned_cost:0 -msgid "Planned Costs" -msgstr "" - -#. module: crm -#: model:ir.model,name:crm.model_crm_case_history -msgid "Case history" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "Error!" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_state:0 -msgid "Set state to" -msgstr "" - -#. module: crm -#: field:crm.case.categ,name:0 -msgid "Case Category Name" -msgstr "" - -#. module: crm -#: selection:crm.case.rule,trg_date_type:0 -msgid "None" -msgstr "" - -#. module: crm -#: field:crm.segmentation,som_interval_max:0 -msgid "Max Interval" -msgstr "" - -#. module: crm -#: field:crm.case.section,reply_to:0 -msgid "Reply-To" -msgstr "" - -#. module: crm -#: selection:crm.case.rule,trg_date_range_type:0 -msgid "Minutes" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu16:0 -#: wizard_field:crm.case.section.menu,design_menu,menu16_option:0 -msgid "All Unclosed and Unassigned " -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "Note" -msgstr "" - -#. module: crm -#: field:crm.case.rule,name:0 -#: field:crm.segmentation.line,name:0 -msgid "Rule Name" -msgstr "" - -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "A period is the average number of days between two cycle of sale or purchase for this segmentation. It's mainly used to detect if a partner has not purchased or buy for a too long time, so we suppose that his state of mind has decreased because he probably bought goods to another supplier. Use this functionnality for recurring businesses." -msgstr "" - -#. module: crm -#: help:crm.case.rule,act_remind_partner:0 -msgid "Check this if you want the rule to send a reminder by email to the partner." -msgstr "" - -#. module: crm -#: field:crm.case.rule,trg_priority_to:0 -msgid "Maximim Priority" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu17:0 -#: wizard_field:crm.case.section.menu,design_menu,menu17_option:0 -msgid "New " -msgstr "" - -#. module: crm -#: view:res.partner.events:0 -msgid "Partner Events" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "Conditions on Case Fields" -msgstr "" - -#. module: crm -#: field:crm.case,date_action_next:0 -msgid "Next Action" -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "Reset to Draft" -msgstr "" - -#. module: crm -#: field:crm.case,date_deadline:0 -#: selection:crm.case.rule,trg_date_type:0 -msgid "Deadline" -msgstr "" - -#. module: crm -#: field:crm.segmentation.line,expr_operator:0 -msgid "Operator" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#: selection:crm.case,state:0 -#: selection:crm.case.rule,act_state:0 -#: selection:crm.case.rule,trg_state_from:0 -#: selection:crm.case.rule,trg_state_to:0 -#, python-format -msgid "Draft" -msgstr "" - -#. module: crm -#: model:ir.model,name:crm.model_crm_case_log -msgid "Case Communication History" -msgstr "" - -#. module: crm -#: model:ir.model,name:crm.model_crm_case_categ -msgid "Category of case" -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "Estimates" -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "Extra Info" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "%(case_subject)s = Case subject" -msgstr "" - -#. module: crm -#: model:ir.module.module,description:crm.module_meta_information -msgid "The generic Open ERP Customer Relationship Management\n" -"system enables a group of people to intelligently and efficiently manage\n" -"leads, opportunities, tasks, issues, requests, bugs, campaign, claims, etc.\n" -"It manages key tasks such as communication, identification, prioritization,\n" -"assignment, resolution and notification.\n" -"\n" -"Open ERP ensures that all cases are successfully tracked by users, customers and\n" -"suppliers. It can automatically send reminders, escalate the request, trigger\n" -"specific methods and lots of others actions based on your enterprise own rules.\n" -"\n" -"The greatest thing about this system is that users don't need to do anything\n" -"special. They can just send email to the request tracker. Open ERP will take\n" -"care of thanking them for their message, automatically routing it to the\n" -"appropriate staff, and making sure all future correspondence gets to the right\n" -"place.\n" -"\n" -"The CRM module has a email gateway for the synchronisation interface\n" -"between mails and Open ERP." -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu5:0 -#: wizard_field:crm.case.section.menu,design_menu,menu5_option:0 -msgid "My Open " -msgstr "" - -#. module: crm -#: wizard_view:crm.case.section.menu,init:0 -msgid "Select Views (empty for default)" -msgstr "" - -#. module: crm -#: field:crm.case.rule,trg_state_from:0 -msgid "Case State" -msgstr "" - -#. module: crm -#: field:crm.case,section_id:0 -#: field:crm.case.log,section_id:0 -#: field:crm.case.rule,trg_section_id:0 -msgid "Section" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_mail_to_email:0 -msgid "Mail to these emails" -msgstr "" - -#. module: crm -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "Send" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "Special Keywords to Be Used in The Body" -msgstr "" - -#. module: crm -#: field:crm.case,priority:0 -msgid "Priority" -msgstr "" - -#. module: crm -#: selection:crm.segmentation.line,operator:0 -msgid "Optional Expression" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_history_my-act -#: model:ir.ui.menu,name:crm.menu_crm_case_history_my-act -msgid "My Histories" -msgstr "" - -#. module: crm -#: field:crm.segmentation,segmentation_line:0 -msgid "Criteria" -msgstr "" - -#. module: crm -#: field:crm.case,description:0 -msgid "Your action" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Excluded Answers :" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_section_act -#: model:ir.ui.menu,name:crm.menu_crm_case_section_act -msgid "Sections" -msgstr "" - -#. module: crm -#: view:crm.case.section:0 -msgid "Case section" -msgstr "" - -#. module: crm -#: field:crm.case,canal_id:0 -#: field:crm.case.log,canal_id:0 -msgid "Channel" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Compute Segmentation" -msgstr "" - -#. module: crm -#: selection:crm.case,priority:0 -#: selection:crm.case.rule,act_priority:0 -#: selection:crm.case.rule,trg_priority_from:0 -#: selection:crm.case.rule,trg_priority_to:0 -msgid "Lowest" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "E-Mail Reminders (includes the content of the case)" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Profiling" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "Fields to Change" -msgstr "" - -#. module: crm -#: selection:crm.case.rule,trg_date_type:0 -msgid "Creation Date" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_categ0-act_my -#: model:ir.ui.menu,name:crm.menu_crm_case_categ0-act_my -msgid "My cases" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu15:0 -#: wizard_field:crm.case.section.menu,design_menu,menu15_option:0 -msgid "All Draft " -msgstr "" - -#. module: crm -#: help:crm.segmentation,som_interval_max:0 -msgid "The computation is made on all events that occured during this interval, the past X periods." -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "%(partner_email)s = Partner email" -msgstr "" - -#. module: crm -#: model:ir.model,name:crm.model_crm_segmentation_line -msgid "Segmentation line" -msgstr "" - -#. module: crm -#: selection:crm.case.rule,trg_date_type:0 -msgid "Last Action Date" -msgstr "" - -#. module: crm -#: selection:crm.case.rule,trg_date_range_type:0 -msgid "Hours" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_categ0-act_my_open -#: model:ir.ui.menu,name:crm.menu_crm_case_categ0-act_my_open -msgid "My Open Cases" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_remind_attach:0 -msgid "Remind with attachment" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu10:0 -#: wizard_field:crm.case.section.menu,design_menu,menu10_option:0 -msgid "All Late " -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu3:0 -#: wizard_field:crm.case.section.menu,design_menu,menu3_option:0 -msgid "My Late " -msgstr "" - -#. module: crm -#: model:ir.ui.menu,name:crm.menu_crm_configuration -msgid "Configuration" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.act_crm_case_categ_crm_case_opened -#: model:ir.actions.act_window,name:crm.act_crm_case_section_crm_case_opened -#: model:ir.actions.act_window,name:crm.act_res_partner_2_crm_case_opened -#: model:ir.actions.act_window,name:crm.act_res_partner_canal_2_crm_case_opened -#: model:ir.actions.act_window,name:crm.act_res_users_2_crm_case_opened -msgid "Open cases" -msgstr "" - -#. module: crm -#: 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 "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu2:0 -#: wizard_field:crm.case.section.menu,design_menu,menu2_option:0 -msgid "My Unclosed " -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "Dates" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Segmentation Test" -msgstr "" - -#. module: crm -#: field:crm.case,create_date:0 -msgid "Created" -msgstr "" - -#. module: crm -#: field:crm.case.rule,trg_date_range_type:0 -msgid "Delay type" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_mail_to_user:0 -msgid "Mail to responsible" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Profiling Options" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu6:0 -#: wizard_field:crm.case.section.menu,design_menu,menu6_option:0 -msgid "My Pending " -msgstr "" - -#. module: crm -#: selection:crm.case.section.menu,design_menu,menu10_option:0 -#: selection:crm.case.section.menu,design_menu,menu11_option:0 -#: selection:crm.case.section.menu,design_menu,menu12_option:0 -#: selection:crm.case.section.menu,design_menu,menu13_option:0 -#: selection:crm.case.section.menu,design_menu,menu14_option:0 -#: selection:crm.case.section.menu,design_menu,menu15_option:0 -#: selection:crm.case.section.menu,design_menu,menu16_option:0 -#: selection:crm.case.section.menu,design_menu,menu17_option:0 -#: selection:crm.case.section.menu,design_menu,menu1_option:0 -#: selection:crm.case.section.menu,design_menu,menu2_option:0 -#: selection:crm.case.section.menu,design_menu,menu3_option:0 -#: selection:crm.case.section.menu,design_menu,menu4_option:0 -#: selection:crm.case.section.menu,design_menu,menu5_option:0 -#: selection:crm.case.section.menu,design_menu,menu6_option:0 -#: selection:crm.case.section.menu,design_menu,menu7_option:0 -#: selection:crm.case.section.menu,design_menu,menu8_option:0 -#: selection:crm.case.section.menu,design_menu,menu9_option:0 -msgid "New Form" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Partner Segmentations" -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "References" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_user_id:0 -msgid "Set responsible to" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "The rule use a AND operator. The case must match all non empty fields so that the rule execute the action described in the 'Actions' tab." -msgstr "" - -#. module: crm -#: field:crm.case,history_line:0 -msgid "Communication" -msgstr "" - -#. module: crm -#: field:crm.segmentation,partner_id:0 -msgid "Max Partner ID processed" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "%(email_from)s = Partner email" -msgstr "" - -#. module: crm -#: field:crm.case.categ,section_id:0 -#: view:crm.case.section:0 -#: field:crm.case.section,name:0 -#: wizard_field:crm.case.section.menu,init,section_id:0 -#: model:ir.model,name:crm.model_crm_case_section -msgid "Case Section" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_rule-act -#: model:ir.ui.menu,name:crm.menu_crm_case_rule-act -msgid "Rules" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_method:0 -msgid "Call Object Method" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -#: field:crm.segmentation.line,segmentation_id:0 -msgid "Segmentation" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "You can not delete this case. You should better cancel it." -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "done" -msgstr "" - -#. module: crm -#: field:crm.segmentation,som_interval:0 -msgid "Days per Periode" -msgstr "" - -#. module: crm -#: selection:crm.case.section.menu,design_menu,menu10_option:0 -#: selection:crm.case.section.menu,design_menu,menu11_option:0 -#: selection:crm.case.section.menu,design_menu,menu12_option:0 -#: selection:crm.case.section.menu,design_menu,menu13_option:0 -#: selection:crm.case.section.menu,design_menu,menu14_option:0 -#: selection:crm.case.section.menu,design_menu,menu15_option:0 -#: selection:crm.case.section.menu,design_menu,menu16_option:0 -#: selection:crm.case.section.menu,design_menu,menu17_option:0 -#: selection:crm.case.section.menu,design_menu,menu1_option:0 -#: selection:crm.case.section.menu,design_menu,menu2_option:0 -#: selection:crm.case.section.menu,design_menu,menu3_option:0 -#: selection:crm.case.section.menu,design_menu,menu4_option:0 -#: selection:crm.case.section.menu,design_menu,menu5_option:0 -#: selection:crm.case.section.menu,design_menu,menu6_option:0 -#: selection:crm.case.section.menu,design_menu,menu7_option:0 -#: selection:crm.case.section.menu,design_menu,menu8_option:0 -#: selection:crm.case.section.menu,design_menu,menu9_option:0 -msgid "Calendar" -msgstr "" - -#. module: crm -#: field:crm.case,ref:0 -msgid "Reference" -msgstr "" - -#. module: crm -#: field:crm.case,ref2:0 -msgid "Reference 2" -msgstr "" - -#. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optionnal" -msgstr "" - -#. module: crm -#: field:crm.case,categ_id:0 -#: field:crm.case.rule,trg_categ_id:0 -msgid "Category" -msgstr "" - -#. module: crm -#: field:crm.case.history,log_id:0 -msgid "Log" -msgstr "" - -#. module: crm -#: help:crm.case.rule,act_email_cc:0 -msgid "These people will receive a copy of the futur communication between partner and users by email" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#: view:crm.case:0 -#, python-format -msgid "Historize" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "%(partner)s = Partner name" -msgstr "" - -#. module: crm -#: selection:crm.case.section.menu,design_menu,menu10_option:0 -#: selection:crm.case.section.menu,design_menu,menu11_option:0 -#: selection:crm.case.section.menu,design_menu,menu12_option:0 -#: selection:crm.case.section.menu,design_menu,menu13_option:0 -#: selection:crm.case.section.menu,design_menu,menu14_option:0 -#: selection:crm.case.section.menu,design_menu,menu15_option:0 -#: selection:crm.case.section.menu,design_menu,menu16_option:0 -#: selection:crm.case.section.menu,design_menu,menu17_option:0 -#: selection:crm.case.section.menu,design_menu,menu1_option:0 -#: selection:crm.case.section.menu,design_menu,menu2_option:0 -#: selection:crm.case.section.menu,design_menu,menu3_option:0 -#: selection:crm.case.section.menu,design_menu,menu4_option:0 -#: selection:crm.case.section.menu,design_menu,menu5_option:0 -#: selection:crm.case.section.menu,design_menu,menu6_option:0 -#: selection:crm.case.section.menu,design_menu,menu7_option:0 -#: selection:crm.case.section.menu,design_menu,menu8_option:0 -#: selection:crm.case.section.menu,design_menu,menu9_option:0 -msgid "New With Calendar" -msgstr "" - -#. module: crm -#: selection:crm.segmentation,state:0 -msgid "Not Running" -msgstr "" - -#. module: crm -#: selection:crm.case.section.menu,design_menu,menu10_option:0 -#: selection:crm.case.section.menu,design_menu,menu11_option:0 -#: selection:crm.case.section.menu,design_menu,menu12_option:0 -#: selection:crm.case.section.menu,design_menu,menu13_option:0 -#: selection:crm.case.section.menu,design_menu,menu14_option:0 -#: selection:crm.case.section.menu,design_menu,menu15_option:0 -#: selection:crm.case.section.menu,design_menu,menu16_option:0 -#: selection:crm.case.section.menu,design_menu,menu17_option:0 -#: selection:crm.case.section.menu,design_menu,menu1_option:0 -#: selection:crm.case.section.menu,design_menu,menu2_option:0 -#: selection:crm.case.section.menu,design_menu,menu3_option:0 -#: selection:crm.case.section.menu,design_menu,menu4_option:0 -#: selection:crm.case.section.menu,design_menu,menu5_option:0 -#: selection:crm.case.section.menu,design_menu,menu6_option:0 -#: selection:crm.case.section.menu,design_menu,menu7_option:0 -#: 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 "" - -#. module: crm -#: view:crm.case:0 -msgid "Action Information" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,init,view_calendar:0 -msgid "Calendar View" -msgstr "" - -#. module: crm -#: selection:crm.case,priority:0 -#: selection:crm.case.rule,act_priority:0 -#: selection:crm.case.rule,trg_priority_from:0 -#: selection:crm.case.rule,trg_priority_to:0 -msgid "Low" -msgstr "" - -#. module: crm -#: field:crm.case,date_closed:0 -msgid "Closed" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "%(case_user_phone)s = Responsible phone" -msgstr "" - -#. module: crm -#: field:crm.case.rule,trg_date_range:0 -msgid "Delay after trigger date" -msgstr "" - -#. module: crm -#: help:crm.segmentation,sales_purchase_active:0 -msgid "Check if you want to use this tab as part of the segmentation rule. If not checked, the criteria beneath will be ignored" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "Conditions" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_categ0-act_open -#: model:ir.ui.menu,name:crm.menu_crm_case_categ0-act_open -msgid "Open Cases" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#: view:crm.case:0 -#: selection:crm.case,state:0 -#: selection:crm.case.rule,act_state:0 -#: selection:crm.case.rule,trg_state_from:0 -#: selection:crm.case.rule,trg_state_to:0 -#, python-format -msgid "Pending" -msgstr "" - -#. module: crm -#: field:crm.case,state:0 -msgid "Status" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_remind_user:0 -msgid "Remind responsible" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_section_id:0 -msgid "Set section to" -msgstr "" - -#. module: crm -#: field:crm.segmentation,state:0 -msgid "Execution Status" -msgstr "" - -#. module: crm -#: selection:crm.case,priority:0 -#: selection:crm.case.rule,act_priority:0 -#: selection:crm.case.rule,trg_priority_from:0 -#: selection:crm.case.rule,trg_priority_to:0 -msgid "Normal" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#: view:crm.case:0 -#: selection:crm.case.rule,trg_state_from:0 -#: selection:crm.case.rule,trg_state_to:0 -#, python-format -msgid "Escalate" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "You must put a Partner eMail to use this action!" -msgstr "" - -#. module: crm -#: model:ir.module.module,shortdesc:crm.module_meta_information -msgid "Customer & Supplier Relationship Management" -msgstr "" - -#. module: crm -#: field:crm.case.rule,trg_priority_from:0 -msgid "Minimum Priority" -msgstr "" - -#. module: crm -#: field:crm.segmentation,som_interval_default:0 -msgid "Default (0=None)" -msgstr "" - -#. module: crm -#: view:crm.case.history:0 -msgid "Case History" -msgstr "" - -#. module: crm -#: field:crm.case,planned_revenue:0 -msgid "Planned Revenue" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "draft" -msgstr "" - -#. module: crm -#: field:crm.case,active:0 -#: field:crm.case.rule,active:0 -#: field:crm.case.section,active:0 -msgid "Active" -msgstr "" - -#. module: crm -#: wizard_view:crm.case.section.menu,design_menu:0 -msgid "Created Menus" -msgstr "" - -#. module: crm -#: help:crm.case.rule,act_remind_attach:0 -msgid "Check this if you want that all documents attached to the case be attached to the reminder email sent." -msgstr "" - -#. module: crm -#: selection:crm.segmentation.line,operator:0 -msgid "Mandatory Expression" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "cancel" -msgstr "" - -#. module: crm -#: selection:crm.segmentation.line,expr_operator:0 -msgid ">" -msgstr "" - -#. module: crm -#: field:crm.case.section,parent_id:0 -msgid "Parent Section" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,init,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: crm -#: field:crm.segmentation,exclusif:0 -msgid "Exclusive" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "Can not send mail with empty body,you should have description in the body" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Included Answers :" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "%(case_id)s = Case ID" -msgstr "" - -#. module: crm -#: selection:crm.case.rule,trg_date_range_type:0 -msgid "Months" -msgstr "" - -#. module: crm -#: selection:crm.case.section.menu,design_menu,menu10_option:0 -#: selection:crm.case.section.menu,design_menu,menu11_option:0 -#: selection:crm.case.section.menu,design_menu,menu12_option:0 -#: selection:crm.case.section.menu,design_menu,menu13_option:0 -#: selection:crm.case.section.menu,design_menu,menu14_option:0 -#: selection:crm.case.section.menu,design_menu,menu15_option:0 -#: selection:crm.case.section.menu,design_menu,menu16_option:0 -#: selection:crm.case.section.menu,design_menu,menu17_option:0 -#: selection:crm.case.section.menu,design_menu,menu1_option:0 -#: selection:crm.case.section.menu,design_menu,menu2_option:0 -#: selection:crm.case.section.menu,design_menu,menu3_option:0 -#: selection:crm.case.section.menu,design_menu,menu4_option:0 -#: selection:crm.case.section.menu,design_menu,menu5_option:0 -#: selection:crm.case.section.menu,design_menu,menu6_option:0 -#: selection:crm.case.section.menu,design_menu,menu7_option:0 -#: selection:crm.case.section.menu,design_menu,menu8_option:0 -#: selection:crm.case.section.menu,design_menu,menu9_option:0 -msgid "Don't Create" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,init,menu_name:0 -msgid "Base Menu Name" -msgstr "" - -#. module: crm -#: field:crm.case.section,child_ids:0 -msgid "Child Sections" -msgstr "" - -#. module: crm -#: field:crm.case,date:0 -#: field:crm.case.log,date:0 -#: selection:crm.case.rule,trg_date_type:0 -msgid "Date" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu9:0 -#: wizard_field:crm.case.section.menu,design_menu,menu9_option:0 -msgid "All Unassigned " -msgstr "" - -#. module: crm -#: field:crm.case.log,name:0 -msgid "Action" -msgstr "" - -#. module: crm -#: view:crm.case.categ:0 -msgid "Case Category" -msgstr "" - -#. module: crm -#: field:crm.segmentation,som_interval_decrease:0 -msgid "Decrease (0>1)" -msgstr "" - -#. module: crm -#: view:crm.segmentation.line:0 -msgid "Partner Segmentation Lines" -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "History" -msgstr "" - -#. module: crm -#: field:crm.case,partner_address_id:0 -msgid "Partner Contact" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu12:0 -#: wizard_field:crm.case.section.menu,design_menu,menu12_option:0 -msgid "All Unclosed " -msgstr "" - -#. module: crm -#: field:crm.case.rule,sequence:0 -#: field:crm.case.section,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "%(case_user_email)s = Responsible email" -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "General" -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "Send Reminder" -msgstr "" - -#. module: crm -#: view:crm.case.section:0 -msgid "Complete this if you use the mail gateway." -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "Communication history" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#: view:crm.case:0 -#: selection:crm.case,state:0 -#: selection:crm.case.rule,act_state:0 -#: selection:crm.case.rule,trg_state_from:0 -#: selection:crm.case.rule,trg_state_to:0 -#: wizard_button:crm.case.section.menu,design_menu,end:0 -#: wizard_button:crm.case.section.menu,init,end:0 -#, python-format -msgid "Cancel" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#: view:crm.case:0 -#: selection:crm.case,state:0 -#: selection:crm.case.rule,act_state:0 -#: selection:crm.case.rule,trg_state_from:0 -#: selection:crm.case.rule,trg_state_to:0 -#, python-format -msgid "Close" -msgstr "" - -#. module: crm -#: model:ir.actions.report.xml,name:crm.crm_business_opportunities_report -msgid "Business Opportunities" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#: view:crm.case:0 -#: selection:crm.case,state:0 -#: selection:crm.case.rule,act_state:0 -#: selection:crm.case.rule,trg_state_from:0 -#: selection:crm.case.rule,trg_state_to:0 -#, python-format -msgid "Open" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,init,view_tree:0 -msgid "Tree View" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "Conditions on Case Partner" -msgstr "" - -#. module: crm -#: field:crm.case.section,code:0 -msgid "Section Code" -msgstr "" - -#. module: crm -#: field:crm.case.section,user_id:0 -msgid "Responsible User" -msgstr "" - -#. module: crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: crm -#: view:res.partner.events:0 -msgid "General Description" -msgstr "" - -#. module: crm -#: field:crm.case,user_id:0 -#: field:crm.case.rule,trg_user_id:0 -msgid "Responsible" -msgstr "" - -#. module: crm -#: wizard_view:crm.case.section.menu,init:0 -msgid "Create Menus For Cases" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_mail_to_partner:0 -msgid "Mail to partner" -msgstr "" - -#. module: crm -#: field:crm.case,email_from:0 -msgid "Partner Email" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu14:0 -#: wizard_field:crm.case.section.menu,design_menu,menu14_option:0 -msgid "All Pending " -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -#: model:ir.model,name:crm.model_crm_segmentation -msgid "Partner Segmentation" -msgstr "" - -#. module: crm -#: field:crm.case,som:0 -#: field:crm.case.log,som:0 -#: selection:crm.segmentation.line,expr_name:0 -msgid "State of Mind" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_priority:0 -msgid "Set priority to" -msgstr "" - -#. module: crm -#: field:crm.case,name:0 -#: field:crm.case.history,description:0 -#: field:crm.case.history,note:0 -#: field:crm.segmentation,description:0 -msgid "Description" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#, python-format -msgid "open" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu11:0 -#: wizard_field:crm.case.section.menu,design_menu,menu11_option:0 -msgid "All Canceled " -msgstr "" - -#. module: crm -#: help:crm.segmentation,name:0 -msgid "The name of the segmentation." -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_mail_body:0 -msgid "Mail body" -msgstr "" - -#. module: crm -#: help:crm.case.rule,act_remind_user:0 -msgid "Check this if you want the rule to send a reminder by email to the user." -msgstr "" - -#. module: crm -#: field:crm.case,probability:0 -#: field:crm.case.categ,probability:0 -msgid "Probability (%)" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_segmentation-act -#: model:ir.actions.act_window,name:crm.crm_segmentation_tree-act -#: model:ir.ui.menu,name:crm.menu_crm_segmentation-act -#: model:ir.ui.menu,name:crm.next_id_53 -msgid "Segmentations" -msgstr "" - -#. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_section_act_tree -#: model:ir.ui.menu,name:crm.menu_crm_case_section_act_tree -msgid "Cases by section" -msgstr "" - -#. module: crm -#: selection:crm.segmentation.line,expr_name:0 -msgid "Sale Amount" -msgstr "" - -#. 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 "" - -#. module: crm -#: view:crm.case.rule:0 -#: model:ir.model,name:crm.model_crm_case_rule -msgid "Case Rule" -msgstr "" - -#. module: crm -#: selection:crm.segmentation.line,expr_operator:0 -msgid "=" -msgstr "" - -#. module: crm -#: code:addons/crm/crm.py:0 -#: field:crm.case.log,case_id:0 -#: model:ir.model,name:crm.model_crm_case -#: model:res.request.link,name:crm.req_link_case -#, python-format -msgid "Case" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "Conditions on Priority Range" -msgstr "" - -#. module: crm -#: field:crm.segmentation,name:0 -msgid "Name" -msgstr "" - -#. module: crm -#: help:crm.segmentation,som_interval_decrease:0 -msgid "If the partner has not purchased (or buied) during a period, decrease the state of mind by this factor. It's a multiplication" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu8:0 -#: wizard_field:crm.case.section.menu,design_menu,menu8_option:0 -msgid "All " -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "E-Mail Actions" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Stop Process" -msgstr "" - -#. module: crm -#: selection:crm.case.section.menu,design_menu,menu10_option:0 -#: selection:crm.case.section.menu,design_menu,menu11_option:0 -#: selection:crm.case.section.menu,design_menu,menu12_option:0 -#: selection:crm.case.section.menu,design_menu,menu13_option:0 -#: selection:crm.case.section.menu,design_menu,menu14_option:0 -#: selection:crm.case.section.menu,design_menu,menu15_option:0 -#: selection:crm.case.section.menu,design_menu,menu16_option:0 -#: selection:crm.case.section.menu,design_menu,menu17_option:0 -#: selection:crm.case.section.menu,design_menu,menu1_option:0 -#: selection:crm.case.section.menu,design_menu,menu2_option:0 -#: selection:crm.case.section.menu,design_menu,menu3_option:0 -#: selection:crm.case.section.menu,design_menu,menu4_option:0 -#: selection:crm.case.section.menu,design_menu,menu5_option:0 -#: selection:crm.case.section.menu,design_menu,menu6_option:0 -#: selection:crm.case.section.menu,design_menu,menu7_option:0 -#: selection:crm.case.section.menu,design_menu,menu8_option:0 -#: selection:crm.case.section.menu,design_menu,menu9_option:0 -msgid "List" -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "Send Partner & Historize" -msgstr "" - -#. module: crm -#: field:crm.case.log,user_id:0 -msgid "User Responsible" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_history-act -#: model:ir.ui.menu,name:crm.menu_crm_case_history-act -msgid "All Histories" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,design_menu,menu4:0 -#: wizard_field:crm.case.section.menu,design_menu,menu4_option:0 -msgid "My Canceled " -msgstr "" - -#. module: crm -#: field:crm.case,email_last:0 -msgid "Latest E-Mail" -msgstr "" - -#. module: crm -#: view:crm.case.log:0 -msgid "Case logs" -msgstr "" - -#. module: crm -#: field:crm.case,id:0 -msgid "ID" -msgstr "" - -#. module: crm -#: help:crm.segmentation,exclusif:0 -msgid "Check if the category is limited to partners that match the segmentation criterions. If checked, remove the category from partners that doesn't match segmentation criterions" -msgstr "" - -#. module: crm -#: field:crm.case,log_ids:0 -msgid "Logs History" -msgstr "" - -#. module: crm -#: wizard_field:crm.case.section.menu,init,view_form:0 -msgid "Form View" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "Conditions on Timing" -msgstr "" - -#. module: crm -#: view:crm.case:0 -msgid "Planned revenue" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Continue Process" -msgstr "" - -#. module: crm -#: view:crm.case.history:0 -msgid "Case Description" -msgstr "" - -#. module: crm -#: field:crm.case.rule,act_mail_to_watchers:0 -msgid "Mail to watchers (Cc)" -msgstr "" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_section_open_act -msgid "crm.case.section.open" -msgstr "" - -#. module: crm -#: view:crm.case:0 -#: view:crm.case.rule:0 -msgid "Actions" -msgstr "" - -#. module: crm -#: selection:crm.case,priority:0 -#: selection:crm.case.rule,act_priority:0 -#: selection:crm.case.rule,trg_priority_from:0 -#: selection:crm.case.rule,trg_priority_to:0 -msgid "High" -msgstr "" - -#. module: crm -#: field:crm.segmentation.line,expr_name:0 -msgid "Control Variable" -msgstr "" - -#. module: crm -#: model:ir.ui.menu,name:crm.menu_crm_case_history-act_main -msgid "Cases Histories" -msgstr "" - -#. module: crm -#: field:crm.case,date_action_last:0 -msgid "Last Action" -msgstr "" - -#. module: crm -#: field:crm.case,partner_id:0 -#: field:crm.case.rule,trg_partner_id:0 -msgid "Partner" -msgstr "" - -#. module: crm -#: view:crm.case.rule:0 -msgid "Conditions on States" -msgstr "" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" -msgstr "" - -#. module: crm -#: field:crm.case.rule,trg_date_type:0 -msgid "Trigger Date" -msgstr "" - diff --git a/addons/crm_configuration/i18n/tlh_TLH.po b/addons/crm_configuration/i18n/tlh_TLH.po deleted file mode 100644 index bc4dc1d04d2..00000000000 --- a/addons/crm_configuration/i18n/tlh_TLH.po +++ /dev/null @@ -1,2160 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * crm_configuration -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_all1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_all1 -msgid "Bugs Waiting Approval" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Title" -msgstr "" - -#. module: crm_configuration -#: model:ir.model,name:crm_configuration.model_report_crm_case_section_categ2 -msgid "Cases by section and category2" -msgstr "" - -#. module: crm_configuration -#: wizard_field:crm.case.partner_create,init,close:0 -msgid "Close Lead" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_all3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs_all3 -msgid "Current Requests" -msgstr "" - -#. module: crm_configuration -#: help:crm.menu.config_wizard,helpdesk:0 -msgid "Manages an Helpdesk service." -msgstr "" - -#. module: crm_configuration -#: field:crm.case.stage,name:0 -msgid "Stage Name" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Claim Description" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Amount" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage2 -#: model:crm.case.stage,name:crm_configuration.stage_claim2 -#: model:crm.case.stage,name:crm_configuration.stage_meet1 -msgid "Fixed" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_oppor5 -msgid "Campaign" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_stage_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_stage_tree_month -#: view:report.crm.case.section.stage:0 -msgid "Cases by Section and Stage" -msgstr "" - -#. module: crm_configuration -#: wizard_field:crm.case.meeting,init,duration:0 -msgid "Duration (Hours)" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:crm.case.categ,name:crm_configuration.categ_lead4 -#: model:crm.case.categ,name:crm_configuration.categ_oppor4 -#: model:process.node,name:crm_configuration.process_node_partner0 -msgid "Partner" -msgstr "" - -#. module: crm_configuration -#: field:crm.case.category2,section_id:0 -#: field:crm.case.stage,section_id:0 -msgid "Case Section" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Proposed Salary" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund -msgid "New Fund Opportunity" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_meet3 -msgid "Phone Call" -msgstr "" - -#. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,state:0 -#: field:report.crm.case.section.categ.stage,state:0 -#: field:report.crm.case.section.categ2,state:0 -#: field:report.crm.case.section.stage,state:0 -msgid "State" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Version" -msgstr "" - -#. module: crm_configuration -#: help:crm.menu.config_wizard,opportunity:0 -msgid "Tracks identified business opportunities for your sales pipeline." -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Appreciation" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_job3 -msgid "Second Interview" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_my_new3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_my_new3 -msgid "New Job Request" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_all2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_all2 -msgid "Open Bugs" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Dates" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Description Information" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Contact Name" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Contact" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Next Interview" -msgstr "" - -#. module: crm_configuration -#: model:process.transition,name:crm_configuration.process_transition_opportunitymeeting0 -msgid "Opportunity Meeting" -msgstr "" - -#. module: crm_configuration -#: model:ir.module.module,shortdesc:crm_configuration.module_meta_information -msgid "Customer Relationship Management" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_claim1 -msgid "Accepted as Claim" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_incoming2 -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_incoming2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing2 -msgid "Planned Calls" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_helpdesk_act_all0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_act_myhelpdesk_all0 -msgid "All Open Helpdesk Requests" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_lead6 -msgid "Dead" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ3 -msgid "Feature Requests" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_oppor_my2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_oppor_my2 -msgid "My Pending Opportunities" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_meet2 -msgid "Home" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_incoming1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_incoming1 -msgid "New Incoming Call" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: field:report.crm.case.section.categ.categ2,categ_id:0 -#: field:report.crm.case.section.categ.stage,categ_id:0 -#: field:report.crm.case.section.stage,categ_id:0 -msgid "Category" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_stage -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_stage_tree_month -#: view:report.crm.case.section.categ.stage:0 -msgid "Cases by Section, Category and Stage" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_my3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs3 -msgid "My Current Jobs Requests" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Send Candidate & Historize" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Action Information" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category1 -msgid "Version 4.2" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category2 -msgid "Version 4.4" -msgstr "" - -#. module: crm_configuration -#: model:process.transition,note:crm_configuration.process_transition_opportunitymeeting0 -msgid "Normal or phone meeting for opportunity" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Status" -msgstr "" - -#. module: crm_configuration -#: wizard_button:crm.case.opportunity_set,init,confirm:0 -msgid "Create Opportunity" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Meetings Tree" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Escalate" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_meet -msgid "All Meetings" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.section,name:crm_configuration.section_support_help -msgid "HelpDesk" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage6 -msgid "Works For Me" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_job7 -msgid "Refused by Company" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_oppor_all2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_oppor_all2 -msgid "All Unassigned Opportunities" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ -msgid "Cases by Leads and Category2" -msgstr "" - -#. module: crm_configuration -#: model:process.transition,name:crm_configuration.process_transition_leadopportunity0 -msgid "Lead Opportunity" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_helpdesk_act111 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_act_all -msgid "All Helpdesk Requests" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_oppor3 -msgid "Value Proposition" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_oppor2 -msgid "New Business" -msgstr "" - -#. module: crm_configuration -#: help:crm.menu.config_wizard,phonecall:0 -msgid "Help you to encode the result of a phone call or to planify a list of phone calls to process." -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_claim3 -msgid "Policy Claims" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Assigned to" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_job4 -msgid "Contract Proposed" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_job_req_main -msgid "Jobs - Hiring Process" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_alljobs -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs_alljobs -msgid "Calendar Of Interviews" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_my2 -msgid "My Bugs With Patches" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Meetings Form" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_oppor5 -msgid "Negotiation/Review" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing4 -msgid "Calls Not Held" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_claim -msgid "New Claim" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_stage -msgid "Cases by Opportunities and Stage" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Date of Claim" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_all -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_all -msgid "All Leads" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_all3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_all3 -msgid "Bugs With Patches Waiting Approval" -msgstr "" - -#. module: crm_configuration -#: constraint:crm.case.section:0 -msgid "Error ! You can not create recursive sections." -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_job5 -msgid "Contract Signed" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_claim_all2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_claim_all2 -msgid "All Unclosed Claims" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_create_partner -msgid "Schedule Phone Call" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Leads Form" -msgstr "" - -#. module: crm_configuration -#: code:addons/crm_configuration/wizard/wizard_opportunity_set.py:0 -#: view:crm.case:0 -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_oppor -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor -#, python-format -msgid "Opportunity" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_lead7 -msgid "Television" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Send Partner & Historize" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_help_support_main -msgid "Helpdesk and Support" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_lead6 -msgid "Radio" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Prospect Information" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_my4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_my4 -msgid "My Pending Leads" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ2 -msgid "Patches" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Add Last Mail for Replying" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:crm.case.section,name:crm_configuration.section_support3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_opp -#: model:process.node,name:crm_configuration.process_node_opportunities0 -msgid "Opportunities" -msgstr "" - -#. module: crm_configuration -#: field:crm.menu.config_wizard,document_ics:0 -msgid "Shared Calendar" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Action Description" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_user -msgid "Cases by Leads and User" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_user -msgid "Cases by Opportunities and User" -msgstr "" - -#. module: crm_configuration -#: view:crm.menu.config_wizard:0 -msgid "Calendar Sharing" -msgstr "" - -#. module: crm_configuration -#: wizard_button:crm.case.partner_create,init,confirm:0 -#: model:ir.actions.wizard,name:crm_configuration.wizard_crm_partner_create -msgid "Create Partner" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_oppor -msgid "New Opportunity" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_category_act_fund_my1 -msgid "My Funds" -msgstr "" - -#. module: crm_configuration -#: field:crm.case,partner_mobile:0 -msgid "Mobile" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_job2 -msgid "Junior Developer" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_meet_my -msgid "My Meetings" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_claim2 -msgid "Preventive" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_my3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_my3 -msgid "My Open Leads" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:crm.case.section,name:crm_configuration.section_support1 -msgid "Meetings" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Reset to Unconfirmed" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_all4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_all4 -msgid "All Pending Leads" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Subject" -msgstr "" - -#. module: crm_configuration -#: model:process.transition,note:crm_configuration.process_transition_leadpartner0 -msgid "Prospect is converting to business partner" -msgstr "" - -#. module: crm_configuration -#: view:crm.menu.config_wizard:0 -msgid "Next" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ_categ2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_categ2_tree_month -#: view:report.crm.case.section.categ.categ2:0 -msgid "Cases by Section, Category and Category2" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_lead4 -msgid "Print" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: field:report.crm.case.section.categ.categ2,category2_id:0 -#: field:report.crm.case.section.categ2,category2_id:0 -msgid "Type" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Candidate Refused" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Confirm Meeting" -msgstr "" - -#. module: crm_configuration -#: view:crm.menu.config_wizard:0 -msgid "Install Pre-Configured Features" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Lead Details" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_oppor22 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_oppor22 -msgid "My Opportunities" -msgstr "" - -#. module: crm_configuration -#: model:ir.model,name:crm_configuration.model_report_crm_case_section_categ_categ2 -msgid "Cases by section, Category and Category2" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_f3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_f3 -msgid "Open Feature Requests" -msgstr "" - -#. module: crm_configuration -#: field:crm.case,stage_id:0 -#: view:crm.case.stage:0 -#: field:report.crm.case.section.categ.categ2,stage_id:0 -#: field:report.crm.case.section.categ.stage,stage_id:0 -#: field:report.crm.case.section.categ2,stage_id:0 -#: field:report.crm.case.section.stage,stage_id:0 -msgid "Stage" -msgstr "" - -#. module: crm_configuration -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: crm_configuration -#: field:crm.case,case_id:0 -msgid "Related Case" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_fund2 -msgid "Learning And Education" -msgstr "" - -#. module: crm_configuration -#: view:crm.case.stage:0 -#: 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 "" - -#. module: crm_configuration -#: wizard_field:crm.case.opportunity_set,init,planned_revenue:0 -msgid "Expected Revenue" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Meeting Date" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Convert to Partner" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_meetall3 -msgid "Next Meetings" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_all1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_all1 -msgid "Current Leads" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_claim2 -msgid "Value Claims" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_helpdesk_act_allhelpdesk -#: model:ir.actions.act_window,name:crm_configuration.crm_case_helpdesk_act_myhelpdesk -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_act_myhelpdesk -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_act_myhelpdesk_allhelpdesk -msgid "Calendar of Helpdesk" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my2 -msgid "My Funds Waiting Validation" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_section_categ_tree_month -#: view:report.crm.case.section.categ2:0 -msgid "Cases by Section and Category2" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Reminder" -msgstr "" - -#. module: crm_configuration -#: field:crm.case,partner_name:0 -msgid "Employee Name" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_lead6 -#: model:crm.case.categ,name:crm_configuration.categ_oppor6 -msgid "Website" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_all6 -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_f5 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_all6 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_f5 -msgid "Planned For Future Release" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund1 -msgid "Funds" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage5 -#: model:crm.case.stage,name:crm_configuration.stage_claim5 -#: model:crm.case.stage,name:crm_configuration.stage_meet4 -msgid "Awaiting Response" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Date" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Candidate Name" -msgstr "" - -#. module: crm_configuration -#: model:process.transition,note:crm_configuration.process_transition_leadopportunity0 -msgid "Creating business opportunities from leads" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_lead2 -#: model:crm.case.categ,name:crm_configuration.categ_oppor2 -msgid "Self Generated" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:crm.case.categ,name:crm_configuration.categ1 -msgid "Bugs" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_lead4 -msgid "Converted" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "History" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_act_new -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_act_new -msgid "New Bug" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Claim Revenue" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Jobs - Recruitment Tree" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_lead1 -msgid "Telesales" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "References" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: wizard_button:crm.case.meeting,init,end:0 -#: wizard_button:crm.case.opportunity_set,init,end:0 -#: wizard_button:crm.case.partner_create,init,end:0 -#: view:crm.menu.config_wizard:0 -msgid "Cancel" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing1 -msgid "New Outgoing Call" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Claim Cost" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_lead8 -#: model:crm.case.categ,name:crm_configuration.categ_oppor8 -msgid "Other" -msgstr "" - -#. module: crm_configuration -#: help:crm.menu.config_wizard,bugs:0 -msgid "Used by companies to track bugs and support requests on softwares" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_lead2 -msgid "Mail" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.action_view_config_crm_menu -msgid "Configure Menu for CRM case Section" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_oppor2 -msgid "Needs Analysis" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_act_my_helpdesk -msgid "My Unclosed Requests" -msgstr "" - -#. module: crm_configuration -#: model:process.process,name:crm_configuration.process_process_contractprocess0 -msgid "Contract Process" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: field:crm.menu.config_wizard,name:0 -msgid "Name" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Sales Stage" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage3 -#: model:crm.case.stage,name:crm_configuration.stage_claim3 -msgid "Won't fix" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Next Meeting" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_oppor7 -msgid "Closed Lost" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_claim_my2_open -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_claim_my2_open -msgid "My Open Claims" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.section,name:crm_configuration.section_support -#: field:crm.menu.config_wizard,bugs:0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_bug_track -msgid "Bug Tracking" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Actions" -msgstr "" - -#. module: crm_configuration -#: model:process.node,note:crm_configuration.process_node_partner0 -msgid "Convert to prospect to business partner" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_all2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_all2 -msgid "All Funds Waiting Validation" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Bugs Tree" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_oppor4 -msgid "Proposal/Price Quote" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_lead5 -msgid "Web" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Severity" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Campaign Type" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_hr -msgid "Human Resources" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_job1 -msgid "Graduate" -msgstr "" - -#. module: crm_configuration -#: view:crm.menu.config_wizard:0 -msgid "Configure CRM Sections" -msgstr "" - -#. 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 "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Leads Tree" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_phone1 -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_incoming0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_incoming0 -msgid "Inbound" -msgstr "" - -#. module: crm_configuration -#: help:crm.menu.config_wizard,document_ics:0 -msgid " Will allow you to synchronise your Open ERP calendars with your phone, outlook, Sunbird, ical, ..." -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_f7 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_f7 -msgid "Old Feature Requests" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Contract Data" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_helpdesk_act_my2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_act_myhelpdesk2 -msgid "My helpdesk Propositions to Review" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Notes" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_claim1 -msgid "Factual Claims" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Lead Source" -msgstr "" - -#. module: crm_configuration -#: model:process.transition,name:crm_configuration.process_transition_leadpartner0 -msgid "Lead Partner" -msgstr "" - -#. module: crm_configuration -#: field:crm.menu.config_wizard,opportunity:0 -msgid "Business Opportunities" -msgstr "" - -#. module: crm_configuration -#: field:report.crm.case.section.categ2,amount_revenue:0 -#: field:report.crm.case.section.stage,amount_revenue:0 -msgid "Est.Revenue" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_job1 -msgid "Initial Jobs Demand" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_my0 -msgid "My Bugs" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Claims Info" -msgstr "" - -#. module: crm_configuration -#: field:crm.case.category2,name:0 -msgid "Case Category2 Name" -msgstr "" - -#. module: crm_configuration -#: wizard_view:crm.case.opportunity_set,init:0 -#: model:ir.actions.wizard,name:crm_configuration.wizard_crm_opportunity_set -msgid "Convert To Opportunity" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:crm.case.stage,name:crm_configuration.stage_phone2 -msgid "Held" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Reset to Draft" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Extra Info" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.section,name:crm_configuration.section_support4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_fund_raise -msgid "Fund Raising" -msgstr "" - -#. module: crm_configuration -#: wizard_view:crm.case.partner_create,init:0 -msgid "Convert To Partner" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Priority" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Source" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Location" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Payment Mode" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Stage: " -msgstr "" - -#. module: crm_configuration -#: model:process.node,note:crm_configuration.process_node_meeting0 -msgid "Schedule a normal or phone meeting" -msgstr "" - -#. module: crm_configuration -#: code:addons/crm_configuration/wizard/wizard_opportunity_set.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_my1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs1 -msgid "My Pending Jobs Requests" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_job3 -msgid " > Bac +5" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_claim_my2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_claim_my2 -msgid "My Unclosed Claims" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_oppor1 -msgid "Prospecting" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_my1 -msgid "My Open Bugs" -msgstr "" - -#. module: crm_configuration -#: field:crm.case,partner_name2:0 -msgid "Employee Email" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_help_act -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_my_act -msgid "My Helpdesk" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.categ2_fund1 -msgid "Cash" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Direction" -msgstr "" - -#. module: crm_configuration -#: view:crm.menu.config_wizard:0 -msgid "The CRM module of OpenERP is able to manage any kind of relationship. But, as to help you to start quickly on the system, we configured a few of them for you." -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Job Info" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Cancel Meeting" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Resolution history" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Candidate Name2" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:crm.case.stage,name:crm_configuration.stage_phone3 -msgid "Not Held" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Jobs - Recruitment Form" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_claim1 -msgid "Corrective" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_meetings -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_category_act_meetings_new -msgid "New Meeting" -msgstr "" - -#. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,name:0 -#: field:report.crm.case.section.categ.stage,name:0 -#: field:report.crm.case.section.categ2,name:0 -#: field:report.crm.case.section.stage,name:0 -msgid "Month" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:crm.case.section,name:crm_configuration.section_support2 -#: field:crm.menu.config_wizard,lead:0 -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads -#: model:process.node,name:crm_configuration.process_node_leads0 -msgid "Leads" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.categ2_fund3 -msgid "Credit Card" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Resolution: " -msgstr "" - -#. module: crm_configuration -#: help:crm.menu.config_wizard,fund:0 -msgid "This may help associations in their fund raising process and tracking." -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_f0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_category_act_f0 -msgid "All Feature Request" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act11 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act11 -msgid "My Jobs Requests" -msgstr "" - -#. module: crm_configuration -#: field:crm.case,note:0 -msgid "Note" -msgstr "" - -#. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,delay_close:0 -#: field:report.crm.case.section.categ.stage,delay_close:0 -#: field:report.crm.case.section.categ2,delay_close:0 -#: field:report.crm.case.section.stage,delay_close:0 -msgid "Delay Close" -msgstr "" - -#. module: crm_configuration -#: selection:report.crm.case.section.categ.categ2,state:0 -#: selection:report.crm.case.section.categ.stage,state:0 -#: selection:report.crm.case.section.categ2,state:0 -#: selection:report.crm.case.section.stage,state:0 -msgid "Closed" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_all4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_all4 -msgid "Bugs Not Fixed" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_meet2 -msgid "Internal Meeting" -msgstr "" - -#. module: crm_configuration -#: help:crm.menu.config_wizard,lead:0 -msgid "Allows you to track and manage leads which are pre-sales requests or contacts, the very first contact with a customer request." -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_meet1 -msgid "Customer Meeting" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Degree" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:crm.case.section,name:crm_configuration.section_support_phone -#: field:crm.menu.config_wizard,phonecall:0 -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_phone -msgid "Phone Calls" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Send Prospect & Historize" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_all3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_all3 -msgid "All Open Leads" -msgstr "" - -#. module: crm_configuration -#: field:crm.case,partner_phone:0 -msgid "Phone" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.categ2_fund2 -msgid "Cheque" -msgstr "" - -#. module: crm_configuration -#: code:addons/crm_configuration/wizard/meeting_planify.py:0 -#, python-format -msgid "meeting" -msgstr "" - -#. module: crm_configuration -#: model:process.node,note:crm_configuration.process_node_opportunities0 -msgid "When a real project/opportunity is detected" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_helpdesk_act_all3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_act_myhelpdesk_all3 -msgid "All Unclosed Requests" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:crm.case.section,name:crm_configuration.section_support_claims -#: field:crm.menu.config_wizard,claims:0 -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_claim1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_claims -msgid "Claims" -msgstr "" - -#. module: crm_configuration -#: model:ir.model,name:crm_configuration.model_crm_case_category2 -msgid "Category2 of case" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_act0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_act0 -msgid "All Bugs" -msgstr "" - -#. module: crm_configuration -#: model:ir.model,name:crm_configuration.model_report_crm_case_section_stage -msgid "Cases by section and stage" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_presale -msgid "Sales" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "General" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_lead2 -msgid "Assigned" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_lead5 -msgid "Recycled" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Done" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Communication" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_oppor11 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_oppor11 -msgid "All Opportunities" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: selection:report.crm.case.section.categ.categ2,state:0 -#: selection:report.crm.case.section.categ.stage,state:0 -#: selection:report.crm.case.section.categ2,state:0 -#: selection:report.crm.case.section.stage,state:0 -msgid "Open" -msgstr "" - -#. module: crm_configuration -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: crm_configuration -#: field:crm.menu.config_wizard,helpdesk:0 -msgid "Helpdesk" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Responsible" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_my1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_my1 -msgid "My Current Leads" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage4 -#: model:crm.case.stage,name:crm_configuration.stage_claim4 -#: model:crm.case.stage,name:crm_configuration.stage_meet3 -msgid "Invalid" -msgstr "" - -#. module: crm_configuration -#: wizard_button:crm.case.meeting,init,order:0 -msgid "Set Meeting" -msgstr "" - -#. module: crm_configuration -#: field:crm.menu.config_wizard,meeting:0 -msgid "Calendar of Meetings" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_oppor2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_oppor2 -msgid "My Open Opportunities" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Cases By Stage and Estimates" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_my_new -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_category_act_leads_my_new -msgid "New Lead" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Meeting For Leads Generation" -msgstr "" - -#. 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 "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_job6 -msgid "Refused by Employee" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_job2 -msgid "First Interview" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Availability (weeks)" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Opportunities Tree" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_helpdesk_act_my1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_act_myhelpdesk1 -msgid "My Pending helpdesk Requests" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_lead1 -#: model:crm.case.categ,name:crm_configuration.categ_oppor1 -msgid "Existing Customer" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.categ2_fund4 -msgid "Demand Draft" -msgstr "" - -#. module: crm_configuration -#: wizard_field:crm.case.opportunity_set,init,name:0 -msgid "Opportunity Summary" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Type of claim" -msgstr "" - -#. module: crm_configuration -#: field:crm.case,duration:0 -msgid "Duration" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_f1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_category_act_f1 -msgid "New Feature Request" -msgstr "" - -#. module: crm_configuration -#: model:ir.model,name:crm_configuration.model_report_crm_case_section_categ_stage -msgid "Cases by section, Category and stage" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Candidate Hired" -msgstr "" - -#. module: crm_configuration -#: field:crm.menu.config_wizard,jobs:0 -msgid "Jobs Hiring Process" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_all2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs_all2 -msgid "All Jobs Propositions to Review" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_help_new_act -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_help_new_act -msgid "New Helpdesk" -msgstr "" - -#. module: crm_configuration -#: code:addons/crm_configuration/wizard/wizard_partner_create.py:0 -#, python-format -msgid "A partner is already defined on this lead." -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Deadlines" -msgstr "" - -#. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,nbr:0 -#: field:report.crm.case.section.categ.stage,nbr:0 -#: field:report.crm.case.section.categ2,nbr:0 -#: field:report.crm.case.section.stage,nbr:0 -msgid "# of Cases" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_my3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_my3 -msgid "My Bugs Not Fixed" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_claim_my1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_category_act_claim_my1 -msgid "My Claims" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_all3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_all3 -msgid "All Funds To Be Processed" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Funds Form" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_lead3 -msgid "In Process" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_unassigned -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_unassigned -msgid "Unassigned Leads" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_aftersale -msgid "After-Sale Services" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act111 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act111 -msgid "All Jobs Requests" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Applied Job" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_all2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_all2 -msgid "All Draft Leads" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Relevant" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Bug Tracker Form" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_my2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs2 -msgid "My Jobs Propositions to Review" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_leads_my -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_leads_my -msgid "My Leads" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_oppor1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_oppor1 -msgid "All Open Opportunities" -msgstr "" - -#. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,section_id:0 -#: field:report.crm.case.section.categ.stage,section_id:0 -#: field:report.crm.case.section.categ2,section_id:0 -#: field:report.crm.case.section.stage,section_id:0 -msgid "Section" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_helpdesk_act_all2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_act_myhelpdesk_all2 -msgid "All Helpdesk Propositions" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_fund1 -msgid "Social Rehabilitation And Rural Upliftment" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_lead3 -#: model:crm.case.categ,name:crm_configuration.categ_oppor3 -msgid "Employee" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_lead1 -msgid "New" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:crm.case.category2,name:crm_configuration.category_lead3 -msgid "Email" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Prospect Email" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_lead_stage -msgid "Cases by Leads and Stage" -msgstr "" - -#. module: crm_configuration -#: field:crm.menu.config_wizard,fund:0 -msgid "Fund Raising Operations" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: selection:report.crm.case.section.categ.categ2,state:0 -#: selection:report.crm.case.section.categ.stage,state:0 -#: selection:report.crm.case.section.categ2,state:0 -#: selection:report.crm.case.section.stage,state:0 -msgid "Pending" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Expected Salary" -msgstr "" - -#. module: crm_configuration -#: model:process.node,note:crm_configuration.process_node_leads0 -msgid "Very first contact with new prospect" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_action_report_crm_case_oppor_categ -msgid "Cases by Opportunities and Category2" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_my3 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_my3 -msgid "My Funds To Be Processed" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_lead7 -#: model:crm.case.categ,name:crm_configuration.categ_oppor7 -msgid "Word of mouth" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Lead Subject" -msgstr "" - -#. module: crm_configuration -#: help:crm.menu.config_wizard,claims:0 -msgid "Manages the supplier and customers claims, including your corrective or preventive actions." -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_phone1 -msgid "Planned" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_meet3 -msgid "Customer Office" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Candidate Email" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Sales Stage: " -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Type of Action" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Meeting With Candidates" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_myjobs -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs_myjobs -msgid "Calendar Of My Interviews" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Communication history" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Funds Tree" -msgstr "" - -#. module: crm_configuration -#: selection:report.crm.case.section.categ.categ2,state:0 -#: selection:report.crm.case.section.categ.stage,state:0 -#: selection:report.crm.case.section.categ2,state:0 -#: selection:report.crm.case.section.stage,state:0 -msgid "Canceled" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_oppor1 -msgid "Existing Business" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_fund_all1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_fund_all1 -msgid "All Funds" -msgstr "" - -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_category_act_meetings -msgid "Calendar" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_job1 -msgid "Salesman" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_oppor6 -msgid "Closed Won" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_all0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs_all0 -msgid "All Open Jobs Requests" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:ir.actions.wizard,name:crm_configuration.wizard_crm_meeting -msgid "Schedule Meeting" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_fund4 -msgid "Arts And Culture" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_phone2 -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_phone_outgoing0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_phone_outgoing0 -msgid "Outbound" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.todo,note:crm_configuration.config_wizard_step_case_section_menu -msgid "This Configuration step use to create Menu for Case Sections" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Historize" -msgstr "" - -#. module: crm_configuration -#: wizard_field:crm.case.opportunity_set,init,probability:0 -msgid "Success Probability" -msgstr "" - -#. module: crm_configuration -#: field:crm.case,category2_id:0 -msgid "Category Name" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -#: model:process.node,name:crm_configuration.process_node_meeting0 -msgid "Meeting" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_f2 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_f2 -msgid "Feature Requests Waiting Approval" -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 "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Qualication" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Prospect Name" -msgstr "" - -#. module: crm_configuration -#: field:report.crm.case.section.categ.categ2,user_id:0 -#: field:report.crm.case.section.categ.stage,user_id:0 -#: field:report.crm.case.section.categ2,user_id:0 -#: field:report.crm.case.section.stage,user_id:0 -msgid "User" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_job2 -msgid "Licenced" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_helpdesk_act_all1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_act_myhelpdesk_all1 -msgid "All Pending Helpdesk Requests" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_my0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs0 -msgid "My Open Jobs Requests" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_all5 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_all5 -msgid "Pending Bugs" -msgstr "" - -#. module: crm_configuration -#: help:crm.menu.config_wizard,meeting:0 -msgid "Manages the calendar of meetings of the users." -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_helpdesk_act_my0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_helpdesk_act_myhelpdesk0 -msgid "My Open Helpdesk Requests" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.categ,name:crm_configuration.categ_fund3 -msgid "Healthcare" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage1 -msgid "Accepted as Bug" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_f4 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_f4 -msgid "Pending Feature Requests" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Resolution" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_meet1 -msgid "Office" -msgstr "" - -#. module: crm_configuration -#: model:ir.model,name:crm_configuration.model_crm_case_stage -msgid "Stage of case" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Estimates" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ0_act_all1 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_myjobs_all1 -msgid "All Pending Jobs Requests" -msgstr "" - -#. module: crm_configuration -#: wizard_field:crm.case.meeting,init,date:0 -msgid "Meeting date" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_all7 -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_f6 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_all7 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_f6 -msgid "Waiting For Reporter Response" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage_meet2 -msgid "Not fixed" -msgstr "" - -#. module: crm_configuration -#: help:crm.menu.config_wizard,jobs:0 -msgid "Help you to organise the jobs hiring process: evaluation, meetings, email integration..." -msgstr "" - -#. module: crm_configuration -#: selection:report.crm.case.section.categ.categ2,state:0 -#: selection:report.crm.case.section.categ.stage,state:0 -#: selection:report.crm.case.section.categ2,state:0 -#: selection:report.crm.case.section.stage,state:0 -msgid "Draft" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_claim0 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ_claim0 -msgid "All Claims" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Description" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Internal Notes" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.section,name:crm_configuration.section_support0 -msgid "Jobs" -msgstr "" - -#. module: crm_configuration -#: wizard_view:crm.case.meeting,init:0 -msgid "Planify Meeting" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_categ_meet_create_partner -msgid "Schedule a Meeting" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Convert to Opportunity" -msgstr "" - -#. module: crm_configuration -#: view:crm.case:0 -msgid "Funds by Categories" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.stage,name:crm_configuration.stage7 -#: model:crm.case.stage,name:crm_configuration.stage_meet5 -msgid "Future" -msgstr "" - -#. module: crm_configuration -#: model:ir.actions.act_window,name:crm_configuration.crm_case_category_act_all8 -#: model:ir.ui.menu,name:crm_configuration.menu_crm_case_categ0_act_all8 -msgid "Old Bugs" -msgstr "" - -#. module: crm_configuration -#: model:ir.model,name:crm_configuration.model_crm_menu_config_wizard -msgid "crm.menu.config_wizard" -msgstr "" - -#. module: crm_configuration -#: model:crm.case.category2,name:crm_configuration.category_lead8 -msgid "Newsletter" -msgstr "" - diff --git a/addons/crm_profiling/i18n/tlh_TLH.po b/addons/crm_profiling/i18n/tlh_TLH.po deleted file mode 100644 index d6a843ec1fa..00000000000 --- a/addons/crm_profiling/i18n/tlh_TLH.po +++ /dev/null @@ -1,163 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * crm_profiling -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: crm_profiling -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: crm_profiling -#: field:crm_profiling.answer,question_id:0 -#: field:crm_profiling.question,name:0 -#: model:ir.model,name:crm_profiling.model_crm_profiling_question -msgid "Question" -msgstr "" - -#. module: crm_profiling -#: wizard_button:open_questionnaire,init,open:0 -msgid "Open Questionnaire" -msgstr "" - -#. module: crm_profiling -#: field:crm.segmentation,child_ids:0 -msgid "Child Profiles" -msgstr "" - -#. module: crm_profiling -#: model:ir.module.module,shortdesc:crm_profiling.module_meta_information -msgid "crm_profiling management" -msgstr "" - -#. module: crm_profiling -#: field:crm_profiling.answer,name:0 -#: model:ir.model,name:crm_profiling.model_crm_profiling_answer -msgid "Answer" -msgstr "" - -#. module: crm_profiling -#: view:res.partner:0 -msgid "Profiling" -msgstr "" - -#. module: crm_profiling -#: field:crm_profiling.questionnaire,description:0 -msgid "Description" -msgstr "" - -#. module: crm_profiling -#: field:crm.segmentation,answer_no:0 -msgid "Excluded Answers" -msgstr "" - -#. module: crm_profiling -#: view:crm_profiling.answer:0 -#: view:crm_profiling.question:0 -#: field:res.partner,answers_ids:0 -msgid "Answers" -msgstr "" - -#. module: crm_profiling -#: wizard_field:open_questionnaire,init,questionnaire_name:0 -msgid "Questionnaire name" -msgstr "" - -#. module: crm_profiling -#: view:res.partner:0 -msgid "Use a questionnaire" -msgstr "" - -#. module: crm_profiling -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: crm_profiling -#: view:crm_profiling.questionnaire:0 -#: model:ir.actions.act_window,name:crm_profiling.open_questionnaires -#: model:ir.ui.menu,name:crm_profiling.menu_segm_questionnaire -msgid "Questionnaires" -msgstr "" - -#. module: crm_profiling -#: code:addons/crm_profiling/crm_profiling.py:0 -#: field:crm_profiling.questionnaire,name:0 -#: model:ir.model,name:crm_profiling.model_crm_profiling_questionnaire -#: wizard_view:open_questionnaire,init:0 -#, python-format -msgid "Questionnaire" -msgstr "" - -#. module: crm_profiling -#: constraint:crm.segmentation:0 -msgid "Error ! You can not create recursive profiles." -msgstr "" - -#. module: crm_profiling -#: field:crm.segmentation,profiling_active:0 -msgid "Use The Profiling Rules" -msgstr "" - -#. module: crm_profiling -#: view:crm_profiling.question:0 -#: field:crm_profiling.question,answers_ids:0 -msgid "Avalaible answers" -msgstr "" - -#. module: crm_profiling -#: field:crm.segmentation,answer_yes:0 -msgid "Included Answers" -msgstr "" - -#. module: crm_profiling -#: help:crm.segmentation,profiling_active:0 -msgid "Check this box if you want to use this tab as part of the segmentation rule. If not checked, the criteria beneath will be ignored" -msgstr "" - -#. module: crm_profiling -#: view:crm_profiling.question:0 -#: field:crm_profiling.questionnaire,questions_ids:0 -#: model:ir.actions.act_window,name:crm_profiling.open_questions -#: model:ir.ui.menu,name:crm_profiling.menu_segm_answer -msgid "Questions" -msgstr "" - -#. module: crm_profiling -#: field:crm.segmentation,parent_id:0 -msgid "Parent Profile" -msgstr "" - -#. module: crm_profiling -#: wizard_button:open_questionnaire,init,end:0 -#: wizard_button:open_questionnaire,open,end:0 -msgid "Cancel" -msgstr "" - -#. module: crm_profiling -#: view:crm.segmentation:0 -msgid "Partner Segmentations" -msgstr "" - -#. module: crm_profiling -#: model:ir.actions.wizard,name:crm_profiling.wizard_open_questionnaire -msgid "Using a questionnaire" -msgstr "" - -#. module: crm_profiling -#: wizard_button:open_questionnaire,open,compute:0 -msgid "Save Data" -msgstr "" - diff --git a/addons/crm_vertical/i18n/tlh_TLH.po b/addons/crm_vertical/i18n/tlh_TLH.po deleted file mode 100644 index fc2e356c163..00000000000 --- a/addons/crm_vertical/i18n/tlh_TLH.po +++ /dev/null @@ -1,22 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * crm_vertical -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: crm_vertical -#: model:ir.module.module,description:crm_vertical.module_meta_information -msgid "Simplification of the interface for CRM." -msgstr "" - diff --git a/addons/delivery/i18n/tlh_TLH.po b/addons/delivery/i18n/tlh_TLH.po deleted file mode 100644 index 683145ecc03..00000000000 --- a/addons/delivery/i18n/tlh_TLH.po +++ /dev/null @@ -1,388 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * delivery -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: delivery -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: delivery -#: selection:delivery.grid.line,operator:0 -msgid ">=" -msgstr "" - -#. module: delivery -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "" - -#. module: delivery -#: view:delivery.grid:0 -msgid "Destination" -msgstr "" - -#. module: delivery -#: model:product.template,name:delivery.delivery_product_product_template -msgid "Delivery by Poste" -msgstr "" - -#. module: delivery -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: delivery -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." -msgstr "" - -#. module: delivery -#: field:delivery.grid,state_ids:0 -msgid "States" -msgstr "" - -#. module: delivery -#: help:res.partner,property_delivery_carrier:0 -msgid "This delivery method will be used when invoicing from packing." -msgstr "" - -#. module: delivery -#: model:ir.model,name:delivery.model_delivery_grid -msgid "Delivery Grid" -msgstr "" - -#. module: delivery -#: field:delivery.grid,zip_from:0 -msgid "Start Zip" -msgstr "" - -#. module: delivery -#: selection:delivery.grid.line,price_type:0 -msgid "Fixed" -msgstr "" - -#. module: delivery -#: code:addons/delivery/wizard/delivery_sale_order.py:0 -#, python-format -msgid "The order state have to be draft to add delivery lines." -msgstr "" - -#. module: delivery -#: field:delivery.grid,line_ids:0 -msgid "Grid Line" -msgstr "" - -#. module: delivery -#: 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 "" - -#. 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 "" - -#. module: delivery -#: selection:delivery.grid.line,price_type:0 -#: field:delivery.grid.line,type:0 -msgid "Variable" -msgstr "" - -#. module: delivery -#: code:addons/delivery/wizard/delivery_sale_order.py:0 -#, python-format -msgid "No grid matching for this carrier !" -msgstr "" - -#. module: delivery -#: model:ir.model,name:delivery.model_delivery_grid_line -msgid "Delivery line of grid" -msgstr "" - -#. module: delivery -#: model:ir.ui.menu,name:delivery.menu_delivery -msgid "Delivery" -msgstr "" - -#. module: delivery -#: view:delivery.grid.line:0 -msgid "Grid Lines" -msgstr "" - -#. module: delivery -#: field:delivery.grid.line,grid_id:0 -msgid "Grid" -msgstr "" - -#. module: delivery -#: view:res.partner:0 -msgid "Deliveries Properties" -msgstr "" - -#. module: delivery -#: field:delivery.carrier,active:0 -#: field:delivery.grid,active:0 -msgid "Active" -msgstr "" - -#. module: delivery -#: view:delivery.grid:0 -msgid "Grid definition" -msgstr "" - -#. module: delivery -#: selection:delivery.grid.line,type:0 -#: selection:delivery.grid.line,variable_factor:0 -msgid "Weight * Volume" -msgstr "" - -#. module: delivery -#: selection:delivery.grid.line,operator:0 -msgid "=" -msgstr "" - -#. module: delivery -#: field:delivery.carrier,product_id:0 -msgid "Delivery Product" -msgstr "" - -#. module: delivery -#: view:delivery.grid.line:0 -msgid "Condition" -msgstr "" - -#. module: delivery -#: model:ir.model,name:delivery.model_delivery_carrier -msgid "Carrier and delivery grids" -msgstr "" - -#. module: delivery -#: field:delivery.grid.line,standard_price:0 -msgid "Cost Price" -msgstr "" - -#. module: delivery -#: field:delivery.grid.line,name:0 -msgid "Name" -msgstr "" - -#. module: delivery -#: constraint:product.template:0 -msgid "Error: UOS must be in a different category than the UOM" -msgstr "" - -#. module: delivery -#: field:delivery.grid,country_ids:0 -msgid "Countries" -msgstr "" - -#. module: delivery -#: constraint:product.template:0 -msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "" - -#. module: delivery -#: view:sale.order:0 -msgid "Notes" -msgstr "" - -#. module: delivery -#: field:delivery.grid.line,variable_factor:0 -msgid "Variable Factor" -msgstr "" - -#. module: delivery -#: code:addons/delivery/wizard/delivery_sale_order.py:0 -#, python-format -msgid "No grid avaible !" -msgstr "" - -#. module: delivery -#: field:delivery.grid,name:0 -msgid "Grid Name" -msgstr "" - -#. module: delivery -#: view:delivery.carrier:0 -#: field:delivery.carrier,name:0 -#: field:delivery.grid,carrier_id:0 -#: field:stock.picking,carrier_id:0 -msgid "Carrier" -msgstr "" - -#. module: delivery -#: selection:delivery.grid.line,type:0 -#: selection:delivery.grid.line,variable_factor:0 -#: field:stock.picking,volume:0 -msgid "Volume" -msgstr "" - -#. module: delivery -#: field:delivery.grid.line,max_value:0 -msgid "Maximum Value" -msgstr "" - -#. module: delivery -#: wizard_button:delivery.sale.order,init,delivery:0 -msgid "Add Delivery Costs" -msgstr "" - -#. module: delivery -#: wizard_field:delivery.sale.order,init,carrier_id:0 -#: model:ir.actions.act_window,name:delivery.action_delivery_carrier_form -#: model:ir.ui.menu,name:delivery.menu_action_delivery_carrier_form -#: field:res.partner,property_delivery_carrier:0 -msgid "Delivery Method" -msgstr "" - -#. module: delivery -#: field:sale.order,id:0 -msgid "ID" -msgstr "" - -#. module: delivery -#: field:delivery.grid.line,operator:0 -msgid "Operator" -msgstr "" - -#. module: delivery -#: model:ir.module.module,shortdesc:delivery.module_meta_information -msgid "Carriers and deliveries" -msgstr "" - -#. module: delivery -#: code:addons/delivery/wizard/delivery_sale_order.py:0 -#, python-format -msgid "Order not in draft state !" -msgstr "" - -#. module: delivery -#: field:delivery.carrier,grids_id:0 -msgid "Delivery Grids" -msgstr "" - -#. module: delivery -#: selection:delivery.grid.line,type:0 -#: selection:delivery.grid.line,variable_factor:0 -#: field:stock.picking,weight:0 -msgid "Weight" -msgstr "" - -#. module: delivery -#: field:delivery.grid,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: delivery -#: field:delivery.carrier,partner_id:0 -msgid "Carrier Partner" -msgstr "" - -#. 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 "" - -#. module: delivery -#: field:delivery.grid,zip_to:0 -msgid "To Zip" -msgstr "" - -#. module: delivery -#: code:addons/delivery/delivery.py:0 -#, python-format -msgid "No line matched this order in the choosed delivery grids !" -msgstr "" - -#. module: delivery -#: model:ir.actions.act_window,name:delivery.action_picking_tree4 -#: model:ir.ui.menu,name:delivery.menu_action_picking_tree3 -msgid "Packing to be invoiced" -msgstr "" - -#. module: delivery -#: code:addons/delivery/delivery.py:0 -#, python-format -msgid "No price available !" -msgstr "" - -#. module: delivery -#: help:sale.order,carrier_id:0 -msgid "Complete this field if you plan to invoice the shipping based on packing." -msgstr "" - -#. module: delivery -#: model:ir.actions.wizard,name:delivery.wizard_deliver_line_add -msgid "Delivery Costs" -msgstr "" - -#. module: delivery -#: field:delivery.grid.line,list_price:0 -msgid "Sale Price" -msgstr "" - -#. module: delivery -#: constraint:product.product:0 -msgid "Error: Invalid ean code" -msgstr "" - -#. module: delivery -#: view:delivery.grid:0 -msgid "Delivery grids" -msgstr "" - -#. module: delivery -#: code:addons/delivery/stock.py:0 -#, python-format -msgid "The carrier %s (id: %d) has no delivery grid!" -msgstr "" - -#. module: delivery -#: wizard_button:delivery.sale.order,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: delivery -#: code:addons/delivery/stock.py:0 -#, python-format -msgid "Warning" -msgstr "" - -#. module: delivery -#: field:sale.order,carrier_id:0 -msgid "Delivery method" -msgstr "" - -#. module: delivery -#: field:delivery.carrier,price:0 -#: selection:delivery.grid.line,type:0 -#: selection:delivery.grid.line,variable_factor:0 -msgid "Price" -msgstr "" - -#. module: delivery -#: constraint:res.partner:0 -msgid "The VAT doesn't seem to be correct." -msgstr "" - -#. module: delivery -#: field:delivery.grid.line,price_type:0 -msgid "Price Type" -msgstr "" - diff --git a/addons/document/i18n/tlh_TLH.po b/addons/document/i18n/tlh_TLH.po deleted file mode 100644 index 3ddd7b3e4ee..00000000000 --- a/addons/document/i18n/tlh_TLH.po +++ /dev/null @@ -1,461 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * document -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: document -#: field:document.directory,create_date:0 -msgid "Date Created" -msgstr "" - -#. module: document -#: field:document.directory,ressource_id:0 -msgid "Resource ID" -msgstr "" - -#. module: document -#: code:addons/document/document.py:0 -#, python-format -msgid "Directory name contains special characters!" -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 -#: 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." -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Other Resources" -msgstr "" - -#. module: document -#: field:document.directory,ressource_parent_type_id:0 -msgid "Parent Model" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Document Management System." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attachment" -msgstr "" - -#. module: document -#: field:ir.actions.report.xml,model_id:0 -msgid "Model Id" -msgstr "" - -#. module: document -#: selection:document.directory,type:0 -msgid "Static Directory" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content_type -msgid "Directory Content Type" -msgstr "" - -#. module: document -#: help:document.directory,ressource_tree:0 -msgid "Check this if you want to use the same tree structure as the object selected in the system." -msgstr "" - -#. module: document -#: field:document.directory,type:0 -msgid "Type" -msgstr "" - -#. module: document -#: model:ir.actions.act_window,name:document.action_document_directory_tree -#: model:ir.ui.menu,name:document.menu_document_directories_tree -msgid "Directorie's Structure" -msgstr "" - -#. module: document -#: field:document.directory,parent_id:0 -msgid "Parent Item" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "File Information" -msgstr "" - -#. module: document -#: field:document.directory,file_ids:0 -#: view:ir.attachment:0 -msgid "Files" -msgstr "" - -#. module: document -#: field:ir.attachment,store_fname:0 -msgid "Stored Filename" -msgstr "" - -#. module: document -#: field:document.directory,write_uid:0 -#: field:ir.attachment,write_uid:0 -msgid "Last Modification User" -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "Configure" -msgstr "" - -#. module: document -#: field:document.directory,ressource_tree:0 -msgid "Tree Structure" -msgstr "" - -#. module: document -#: field:ir.attachment,title:0 -msgid "Resource Title" -msgstr "" - -#. module: document -#: model:ir.actions.todo,note:document.config_auto_directory -msgid "This wizard will configure the URL of the server of the document management system." -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory_content -msgid "Directory Content" -msgstr "" - -#. module: document -#: help:document.directory,ressource_parent_type_id:0 -msgid "If you put an object here, this directory template will appear bellow all of these objects. Don't put a parent directory if you select a parent model." -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document -msgid "Document Management" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Link" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Directory Type" -msgstr "" - -#. module: document -#: field:document.directory,group_ids:0 -#: field:ir.attachment,group_ids:0 -msgid "Groups" -msgstr "" - -#. module: document -#: field:document.directory.content,report_id:0 -msgid "Report" -msgstr "" - -#. module: document -#: help:document.configuration.wizard,host:0 -msgid "Put here the server address or IP. Keep localhost if you don't know what to write." -msgstr "" - -#. module: document -#: view:document.configuration.wizard:0 -msgid "This wizard will automatically configure the document management system according to modules installed on your system." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Data" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Notes" -msgstr "" - -#. 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 -#: model:ir.module.module,description:document.module_meta_information -msgid "This is a complete document management system:\n" -" * FTP Interface\n" -" * User Authentication\n" -" * Document Indexation\n" -"" -msgstr "" - -#. module: document -#: field:document.directory,name:0 -msgid "Name" -msgstr "" - -#. module: document -#: field:document.directory.content.type,code:0 -msgid "Extension" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Database" -msgstr "" - -#. module: document -#: field:document.directory,content_ids:0 -msgid "Virtual Files" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: model:ir.ui.menu,name:document.menu_document_directories -msgid "Directories" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Seq." -msgstr "" - -#. module: document -#: model:ir.module.module,shortdesc:document.module_meta_information -msgid "Integrated Document Management System" -msgstr "" - -#. module: document -#: field:document.directory.content,directory_id:0 -#: field:ir.attachment,parent_id:0 -msgid "Directory" -msgstr "" - -#. module: document -#: field:document.directory,user_id:0 -#: field:ir.attachment,user_id:0 -msgid "Owner" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_configuration_wizard -msgid "document.configuration.wizard" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Attached To" -msgstr "" - -#. module: document -#: model:ir.model,name:document.model_document_directory -#: field:process.node,directory_id:0 -msgid "Document directory" -msgstr "" - -#. module: document -#: selection:ir.attachment,store_method:0 -msgid "Filesystem" -msgstr "" - -#. module: document -#: field:document.directory,file_type:0 -#: field:document.directory.content.type,name:0 -#: field:ir.attachment,file_type:0 -msgid "Content Type" -msgstr "" - -#. module: document -#: view:document.directory:0 -#: view:ir.attachment:0 -msgid "Security" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_browse -msgid "Browse Files Using FTP" -msgstr "" - -#. module: document -#: field:document.directory,ressource_type_id:0 -msgid "Directories Mapped to Objects" -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "History" -msgstr "" - -#. module: document -#: help:document.directory,ressource_type_id:0 -msgid "Select an object here and Open ERP will create a mapping for each of these objects, using the given domain, when browsing through FTP." -msgstr "" - -#. module: document -#: view:ir.attachment:0 -msgid "Others Info" -msgstr "" - -#. module: document -#: field:document.directory,domain:0 -msgid "Domain" -msgstr "" - -#. module: document -#: field:document.directory,write_date:0 -#: field:ir.attachment,write_date:0 -msgid "Date Modified" -msgstr "" - -#. module: document -#: field:document.directory.content,suffix:0 -msgid "Suffix" -msgstr "" - -#. module: document -#: field:document.configuration.wizard,host:0 -msgid "Server Address" -msgstr "" - -#. module: document -#: model:ir.actions.url,name:document.action_document_browse -msgid "Browse Files" -msgstr "" - -#. module: document -#: field:document.directory.content,name:0 -msgid "Content Name" -msgstr "" - -#. module: document -#: code:addons/document/document.py:0 -#, python-format -msgid "Directory name must be unique!" -msgstr "" - -#. module: document -#: field:document.directory,create_uid:0 -msgid "Creator" -msgstr "" - -#. module: document -#: view:document.directory:0 -msgid "Auto-Generated Files" -msgstr "" - -#. module: document -#: help:document.directory,domain:0 -msgid "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" - -#. module: document -#: field:document.directory.content,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: document -#: model:ir.ui.menu,name:document.menu_document_files -msgid "Search a File" -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/tlh_TLH.po b/addons/document_ics/i18n/tlh_TLH.po deleted file mode 100644 index 4b71e51c5d0..00000000000 --- a/addons/document_ics/i18n/tlh_TLH.po +++ /dev/null @@ -1,157 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * document_ics -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: document_ics -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "uid" -msgstr "" - -#. module: document_ics -#: constraint:document.directory:0 -msgid "Error! You can not create recursive Directories." -msgstr "" - -#. module: document_ics -#: field:document.directory.ics.fields,field_id:0 -msgid "Open ERP Field" -msgstr "" - -#. module: document_ics -#: field:document.directory.ics.fields,content_id:0 -msgid "Content" -msgstr "" - -#. module: document_ics -#: model:crm.case.section,name:document_ics.section_meeting -msgid "Shared Calendar Meetings" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "attendee" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dtend" -msgstr "" - -#. module: document_ics -#: constraint:crm.case.section:0 -msgid "Error ! You can not create recursive sections." -msgstr "" - -#. module: document_ics -#: field:document.directory.content,ics_object_id:0 -msgid "Object" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dt-stamp" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "location" -msgstr "" - -#. module: document_ics -#: view:document.directory:0 -msgid "ICS Calendar" -msgstr "" - -#. module: document_ics -#: field:document.directory.ics.fields,name:0 -msgid "ICS Value" -msgstr "" - -#. module: document_ics -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "description" -msgstr "" - -#. module: document_ics -#: model:ir.module.module,shortdesc:document_ics.module_meta_information -msgid "Support for iCal based on Document Management System" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "last-modified" -msgstr "" - -#. module: document_ics -#: view:document.directory:0 -msgid "ICS Mapping" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "dtstart" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "categories" -msgstr "" - -#. module: document_ics -#: field:document.directory.content,ics_domain:0 -msgid "Domain" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "created" -msgstr "" - -#. module: document_ics -#: field:crm.case,code:0 -msgid "Calendar Code" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "summary" -msgstr "" - -#. module: document_ics -#: selection:document.directory.ics.fields,name:0 -msgid "url" -msgstr "" - -#. module: document_ics -#: model:ir.model,name:document_ics.model_document_directory_ics_fields -msgid "document.directory.ics.fields" -msgstr "" - -#. module: document_ics -#: field:document.directory.content,ics_field_ids:0 -msgid "Fields Mapping" -msgstr "" - diff --git a/addons/event/i18n/tlh_TLH.po b/addons/event/i18n/tlh_TLH.po deleted file mode 100644 index bdeab11e7e7..00000000000 --- a/addons/event/i18n/tlh_TLH.po +++ /dev/null @@ -1,618 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * event -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: event -#: field:event.event,date_end:0 -#: field:report.event.registration,date_end:0 -msgid "Ending date" -msgstr "" - -#. module: event -#: field:event.event,register_min:0 -msgid "Minimum Registrations" -msgstr "" - -#. module: event -#: field:event.event,mail_registr:0 -msgid "Registration Email" -msgstr "" - -#. module: event -#: model:crm.case.section,name:event.event_0_crm_case_section -msgid "Concert of Bon Jovi" -msgstr "" - -#. module: event -#: field:event.event,mail_confirm:0 -msgid "Confirmation Email" -msgstr "" - -#. module: event -#: model:ir.model,name:event.model_event_registration -msgid "Event Registration" -msgstr "" - -#. module: event -#: model:ir.actions.wizard,name:event.event_reg_invoice -msgid "Make Invoice" -msgstr "" - -#. module: event -#: field:report.event.type.registration,draft_state:0 -msgid "Draft Registrations" -msgstr "" - -#. module: event -#: view:report.event.registration:0 -msgid "Event on Registration" -msgstr "" - -#. module: event -#: wizard_button:event.reg_make_invoice,init,end:0 -msgid "Ok" -msgstr "" - -#. module: event -#: field:event.event,mail_auto_confirm:0 -msgid "Mail Auto Confirm" -msgstr "" - -#. module: event -#: model:product.template,name:event.event_product_1_product_template -msgid "Ticket for Opera" -msgstr "" - -#. module: event -#: code:addons/event/event.py:0 -#, python-format -msgid "Error!" -msgstr "" - -#. module: event -#: view:event.event:0 -msgid "Confirm Event" -msgstr "" - -#. module: event -#: model:crm.case.section,name:event.event_1_crm_case_section -msgid "Opera of Verdi" -msgstr "" - -#. module: event -#: field:report.event.registration,draft_state:0 -msgid "Draft Registration" -msgstr "" - -#. module: event -#: wizard_view:event.reg_make_invoice,init:0 -msgid "Create Invoices" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "Extra Info" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "Registration" -msgstr "" - -#. module: event -#: field:event.type,name:0 -#: model:ir.model,name:event.model_event_type -msgid "Event type" -msgstr "" - -#. module: event -#: view:event.event:0 -#: model:ir.model,name:event.model_event_event -#: model:ir.module.module,shortdesc:event.module_meta_information -#: field:report.event.registration,name:0 -msgid "Event" -msgstr "" - -#. module: event -#: selection:event.event,state:0 -msgid "Confirmed" -msgstr "" - -#. module: event -#: wizard_view:event.confirm_registration,split:0 -msgid "Registration Confirmation" -msgstr "" - -#. module: event -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: event -#: field:event.event,register_current:0 -#: model:ir.actions.act_window,name:event.action_registration_confirm -#: model:ir.ui.menu,name:event.menu_action_registration_confirm -msgid "Confirmed Registrations" -msgstr "" - -#. module: event -#: field:event.event,mail_auto_registr:0 -msgid "Mail Auto Register" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "Badge" -msgstr "" - -#. module: event -#: field:event.event,section_id:0 -msgid "Case section" -msgstr "" - -#. module: event -#: field:event.registration,tobe_invoiced:0 -msgid "To be Invoiced" -msgstr "" - -#. module: event -#: model:ir.ui.menu,name:event.menu_event_event -msgid "All Events" -msgstr "" - -#. module: event -#: model:ir.ui.menu,name:event.menu_report_event -msgid "Reporting" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "Cancel Registration" -msgstr "" - -#. module: event -#: model:ir.ui.menu,name:event.menu_action_event_categories -msgid "Events by Categories" -msgstr "" - -#. module: event -#: wizard_view:event.confirm_registration,split:0 -msgid "The event limit is reached. What do you want to do?" -msgstr "" - -#. module: event -#: field:report.event.type.registration,confirm_state:0 -msgid "Confirm Registrations" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "References" -msgstr "" - -#. module: event -#: model:ir.actions.act_window,name:event.action_event_type_registration -#: model:ir.ui.menu,name:event.menu_report_event_type_registration -#: view:report.event.type.registration:0 -msgid "Registration By Event Types" -msgstr "" - -#. module: event -#: model:ir.ui.menu,name:event.menu_event_config -msgid "Configuration" -msgstr "" - -#. module: event -#: code:addons/event/event.py:0 -#, python-format -msgid "You must define a reply-to address in order to mail the participant. You can do this in the Mailing tab of your event. Note that this is also the place where you can configure your event to not send emails automaticly while registering" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "Dates" -msgstr "" - -#. module: event -#: wizard_button:event.confirm_registration,split,confirm:0 -msgid "Confirm Anyway" -msgstr "" - -#. module: event -#: constraint:product.template:0 -msgid "Error: UOS must be in a different category than the UOM" -msgstr "" - -#. module: event -#: view:event.event:0 -msgid "Parent Category" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "Registration Invoiced" -msgstr "" - -#. module: event -#: field:report.event.type.registration,nbevent:0 -msgid "Number Of Events" -msgstr "" - -#. module: event -#: view:event.event:0 -msgid "Cancel Event" -msgstr "" - -#. module: event -#: wizard_field:event.reg_make_invoice,init,inv_rej_reason:0 -msgid "Error Messages" -msgstr "" - -#. module: event -#: view:event.event:0 -msgid "Mailing" -msgstr "" - -#. module: event -#: model:product.template,name:event.event_product_0_product_template -msgid "Ticket for Concert" -msgstr "" - -#. module: event -#: field:event.event,register_prospect:0 -#: model:ir.actions.act_window,name:event.action_registration_draft -#: model:ir.ui.menu,name:event.menu_action_registration_draft -msgid "Unconfirmed Registrations" -msgstr "" - -#. module: event -#: field:event.registration,partner_invoice_id:0 -msgid "Partner Invoiced" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "Communication history" -msgstr "" - -#. module: event -#: selection:event.event,state:0 -msgid "Canceled" -msgstr "" - -#. module: event -#: view:event.event:0 -msgid "Event Done" -msgstr "" - -#. module: event -#: field:event.registration,badge_name:0 -msgid "Badge Name" -msgstr "" - -#. module: event -#: model:ir.actions.act_window,name:event.action_event_registration -#: model:ir.ui.menu,name:event.menu_report_event_registration -msgid "Events On Registrations" -msgstr "" - -#. module: event -#: constraint:product.template:0 -msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "" - -#. module: event -#: wizard_field:event.reg_make_invoice,init,inv_created:0 -msgid "Invoice Created" -msgstr "" - -#. module: event -#: view:event.event:0 -msgid "Statistics" -msgstr "" - -#. module: event -#: selection:event.event,state:0 -msgid "Draft" -msgstr "" - -#. module: event -#: view:event.event:0 -msgid "Event description" -msgstr "" - -#. module: event -#: model:ir.model,name:event.model_report_event_type_registration -msgid "Event type on registration" -msgstr "" - -#. module: event -#: model:ir.module.module,description:event.module_meta_information -msgid "Organization and management of events.\n" -"\n" -" This module allow you\n" -" * to manage your events and their registrations\n" -" * to use emails to automatically confirm and send acknowledgements for any registration to an event\n" -" * ...\n" -"\n" -" Note that:\n" -" - You can define new types of events in\n" -" Events \ Configuration \ Types of Events\n" -" - You can access predefined reports about number of registration per event or per event category in :\n" -" Events \ Reporting\n" -"" -msgstr "" - -#. module: event -#: field:event.registration,event_id:0 -msgid "Event Related" -msgstr "" - -#. module: event -#: model:crm.case.section,name:event.case_section_event -#: view:event.event:0 -#: model:ir.actions.act_window,name:event.action_event_view -msgid "Events" -msgstr "" - -#. module: event -#: field:event.registration,nb_register:0 -msgid "Number of Registration" -msgstr "" - -#. module: event -#: view:event.event:0 -#: field:event.event,state:0 -#: view:event.registration:0 -msgid "Status" -msgstr "" - -#. module: event -#: model:ir.actions.act_window,name:event.action_event_categories -msgid "Events by section" -msgstr "" - -#. module: event -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: event -#: model:ir.ui.menu,name:event.menu_action_registration -msgid "All Registrations" -msgstr "" - -#. module: event -#: help:event.event,mail_auto_registr:0 -msgid "Check this box if you want to use the automatic mailing for new registration" -msgstr "" - -#. module: event -#: view:event.event:0 -msgid "Set To Draft" -msgstr "" - -#. module: event -#: view:event.registration:0 -#: model:ir.actions.wizard,name:event.event_confirm_registration -#: field:report.event.registration,confirm_state:0 -msgid "Confirm Registration" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "History" -msgstr "" - -#. module: event -#: model:ir.ui.menu,name:event.menu_event_type -msgid "Types of Events" -msgstr "" - -#. module: event -#: field:event.registration,contact_id:0 -msgid "Partner Contact" -msgstr "" - -#. module: event -#: view:event.event:0 -msgid "Auto Confirmation Email" -msgstr "" - -#. module: event -#: view:event.event:0 -#: view:event.registration:0 -msgid "General" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "Send Reminder" -msgstr "" - -#. module: event -#: selection:event.event,state:0 -msgid "Done" -msgstr "" - -#. module: event -#: field:event.event,date_begin:0 -#: field:report.event.registration,date_begin:0 -msgid "Beginning date" -msgstr "" - -#. module: event -#: field:event.registration,invoice_id:0 -msgid "Invoice" -msgstr "" - -#. module: event -#: model:ir.model,name:event.model_report_event_registration -msgid "Events on registrations" -msgstr "" - -#. module: event -#: wizard_button:event.confirm_registration,split,end:0 -msgid "Cancel" -msgstr "" - -#. module: event -#: wizard_button:event.reg_make_invoice,init,open:0 -msgid "Open" -msgstr "" - -#. module: event -#: field:event.registration,badge_title:0 -msgid "Badge Title" -msgstr "" - -#. module: event -#: model:ir.actions.act_window,name:event.action_new_event_form -#: model:ir.ui.menu,name:event.menu_event_new_event -msgid "New event" -msgstr "" - -#. module: event -#: field:event.registration,unit_price:0 -msgid "Unit Price" -msgstr "" - -#. module: event -#: model:crm.case.section,name:event.event_2_crm_case_section -msgid "Conference on ERP Buisness" -msgstr "" - -#. module: event -#: field:event.registration,badge_partner:0 -msgid "Badge Partner" -msgstr "" - -#. module: event -#: model:ir.actions.act_window,name:event.action_event_view_confirm -#: model:ir.ui.menu,name:event.menu_event_event_confirm -msgid "Confirmed Events" -msgstr "" - -#. module: event -#: constraint:crm.case.section:0 -msgid "Error ! You can not create recursive sections." -msgstr "" - -#. module: event -#: field:event.event,type:0 -msgid "Type" -msgstr "" - -#. module: event -#: help:event.event,mail_registr:0 -msgid "This email will be sent when someone subscribes to the event." -msgstr "" - -#. module: event -#: model:product.template,name:event.event_product_2_product_template -msgid "Ticket for Conference" -msgstr "" - -#. module: event -#: field:event.registration,case_id:0 -msgid "Case" -msgstr "" - -#. module: event -#: view:event.event:0 -msgid "Name" -msgstr "" - -#. module: event -#: help:event.event,mail_auto_confirm:0 -msgid "Check this box if you want ot use the automatic confirmation emailing or the reminder" -msgstr "" - -#. module: event -#: help:event.event,mail_confirm:0 -msgid "This email will be sent when the event gets confimed or when someone subscribes to a confirmed event. This is also the email sent to remind someone about the event." -msgstr "" - -#. module: event -#: field:event.event,product_id:0 -msgid "Product" -msgstr "" - -#. module: event -#: field:event.registration,invoice_label:0 -msgid "Label Invoice" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "Payments" -msgstr "" - -#. module: event -#: view:event.type:0 -#: field:report.event.type.registration,name:0 -msgid "Event Type" -msgstr "" - -#. module: event -#: view:event.event:0 -#: model:ir.actions.act_window,name:event.action_registration -#: model:ir.actions.wizard,name:event.wizard_event_registration -msgid "Registrations" -msgstr "" - -#. module: event -#: model:ir.actions.act_window,name:event.action_event_view_draft -#: model:ir.ui.menu,name:event.menu_event_event_draft -msgid "Draft Events" -msgstr "" - -#. module: event -#: field:event.event,register_max:0 -#: field:report.event.registration,register_max:0 -msgid "Maximum Registrations" -msgstr "" - -#. module: event -#: wizard_field:event.reg_make_invoice,init,inv_rejected:0 -msgid "Invoice Rejected" -msgstr "" - -#. module: event -#: model:ir.ui.menu,name:event.menu_event_main -msgid "Events Organisation" -msgstr "" - -#. module: event -#: view:event.registration:0 -msgid "Actions" -msgstr "" - -#. module: event -#: model:ir.actions.wizard,name:event.wizard_event_reg_partners -msgid "List Register Partners" -msgstr "" - -#. module: event -#: constraint:product.product:0 -msgid "Error: Invalid ean code" -msgstr "" - -#. module: event -#: view:event.event:0 -msgid "Auto Registration Email" -msgstr "" - diff --git a/addons/event_project/i18n/tlh_TLH.po b/addons/event_project/i18n/tlh_TLH.po deleted file mode 100644 index 45377c53d9d..00000000000 --- a/addons/event_project/i18n/tlh_TLH.po +++ /dev/null @@ -1,82 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * event_project -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: event_project -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: event_project -#: model:ir.actions.wizard,name:event_project.wizard_event_task -msgid "Tasks" -msgstr "" - -#. module: event_project -#: wizard_button:event.project,init,done:0 -msgid "Ok" -msgstr "" - -#. module: event_project -#: model:ir.module.module,description:event_project.module_meta_information -msgid "Organization and management of events.\n" -"\n" -" This module allow you to create retro planning for managing your events.\n" -"" -msgstr "" - -#. module: event_project -#: view:event.event:0 -msgid "Remaining Tasks" -msgstr "" - -#. module: event_project -#: model:ir.module.module,shortdesc:event_project.module_meta_information -msgid "Event - Project" -msgstr "" - -#. module: event_project -#: field:event.event,project_id:0 -#: wizard_field:event.project,init,project_id:0 -#: model:ir.actions.wizard,name:event_project.event_wiz -msgid "Project" -msgstr "" - -#. module: event_project -#: field:event.event,task_ids:0 -msgid "Project tasks" -msgstr "" - -#. module: event_project -#: wizard_button:event.project,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: event_project -#: view:event.event:0 -msgid "Create Retro-Planning" -msgstr "" - -#. module: event_project -#: wizard_view:event.project,init:0 -msgid "Event" -msgstr "" - -#. module: event_project -#: view:event.event:0 -msgid "Tasks management" -msgstr "" - diff --git a/addons/google_map/i18n/tlh_TLH.po b/addons/google_map/i18n/tlh_TLH.po deleted file mode 100644 index edd279c5c46..00000000000 --- a/addons/google_map/i18n/tlh_TLH.po +++ /dev/null @@ -1,46 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * google_map -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: google_map -#: model:ir.module.module,description:google_map.module_meta_information -msgid "The module adds google map field in partner address\n" -"so that we can directly open google map from the\n" -"url widget." -msgstr "" - -#. module: google_map -#: model:ir.actions.wizard,name:google_map.wizard_google_map -msgid "Launch Google Map" -msgstr "" - -#. module: google_map -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: google_map -#: view:res.partner:0 -#: view:res.partner.address:0 -msgid "Street2 : " -msgstr "" - -#. module: google_map -#: view:res.partner:0 -#: view:res.partner.address:0 -msgid "Map" -msgstr "" - diff --git a/addons/hr/i18n/tlh_TLH.po b/addons/hr/i18n/tlh_TLH.po deleted file mode 100644 index bb25ac97f66..00000000000 --- a/addons/hr/i18n/tlh_TLH.po +++ /dev/null @@ -1,476 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * hr -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: hr -#: model:process.node,name:hr.process_node_openerpuser0 -#: model:process.transition,name:hr.process_transition_employeeuser0 -msgid "Openerp user" -msgstr "" - -#. module: hr -#: model:ir.actions.act_window,name:hr.edit_workgroup -#: model:ir.ui.menu,name:hr.menu_edit_workgroup -msgid "Working Time Categories" -msgstr "" - -#. module: hr -#: constraint:hr.department:0 -msgid "Error! You can not create recursive departments." -msgstr "" - -#. module: hr -#: field:hr.employee,sinid:0 -msgid "SIN No" -msgstr "" - -#. module: hr -#: model:ir.module.module,shortdesc:hr.module_meta_information -#: model:ir.ui.menu,name:hr.menu_hr_root -msgid "Human Resources" -msgstr "" - -#. module: hr -#: selection:hr.timesheet,dayofweek:0 -msgid "Sunday" -msgstr "" - -#. module: hr -#: view:hr.department:0 -msgid "Department" -msgstr "" - -#. module: hr -#: model:process.transition,name:hr.process_transition_contactofemployee0 -msgid "Contact of employee" -msgstr "" - -#. module: hr -#: field:hr.employee,work_email:0 -msgid "Work Email" -msgstr "" - -#. module: hr -#: field:hr.timesheet.group,name:0 -msgid "Group name" -msgstr "" - -#. module: hr -#: field:hr.department,company_id:0 -#: field:hr.employee,company_id:0 -msgid "Company" -msgstr "" - -#. module: hr -#: selection:hr.timesheet,dayofweek:0 -msgid "Friday" -msgstr "" - -#. module: hr -#: field:hr.department,parent_id:0 -msgid "Parent Department" -msgstr "" - -#. module: hr -#: view:hr.department:0 -#: view:hr.employee:0 -#: field:hr.employee,notes:0 -msgid "Notes" -msgstr "" - -#. module: hr -#: field:hr.timesheet,hour_from:0 -msgid "Work from" -msgstr "" - -#. module: hr -#: model:ir.actions.act_window,name:hr.action2 -msgid "Employee Hierarchy" -msgstr "" - -#. module: hr -#: model:ir.ui.menu,name:hr.menu_hr_configuration -msgid "Configuration" -msgstr "" - -#. module: hr -#: selection:hr.employee,marital:0 -msgid "Unmaried" -msgstr "" - -#. module: hr -#: selection:hr.employee,gender:0 -msgid "Female" -msgstr "" - -#. module: hr -#: view:hr.timesheet.group:0 -msgid "Working Time Category" -msgstr "" - -#. module: hr -#: model:ir.actions.act_window,name:hr.open_view_employee_tree -#: model:ir.ui.menu,name:hr.menu_open_view_employee_tree -msgid "Employees Structure" -msgstr "" - -#. module: hr -#: view:hr.employee:0 -msgid "Social IDs" -msgstr "" - -#. module: hr -#: field:hr.employee,work_phone:0 -msgid "Work Phone" -msgstr "" - -#. module: hr -#: field:hr.employee.category,child_ids:0 -msgid "Child Categories" -msgstr "" - -#. module: hr -#: field:hr.employee,work_location:0 -msgid "Office Location" -msgstr "" - -#. module: hr -#: view:hr.employee:0 -#: field:hr.employee,name:0 -#: model:ir.model,name:hr.model_hr_employee -#: model:process.node,name:hr.process_node_employee0 -msgid "Employee" -msgstr "" - -#. module: hr -#: field:hr.timesheet.group,manager:0 -msgid "Workgroup manager" -msgstr "" - -#. module: hr -#: field:hr.employee,child_ids:0 -msgid "Subordinates" -msgstr "" - -#. module: hr -#: model:ir.ui.menu,name:hr.menu_hr_reporting -msgid "Reporting" -msgstr "" - -#. module: hr -#: field:hr.department,member_ids:0 -msgid "Members" -msgstr "" - -#. module: hr -#: field:hr.employee,ssnid:0 -msgid "SSN No" -msgstr "" - -#. module: hr -#: model:process.transition,note:hr.process_transition_contactofemployee0 -msgid "Fill up contact information" -msgstr "" - -#. module: hr -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: hr -#: selection:hr.employee,marital:0 -msgid "Divorced" -msgstr "" - -#. module: hr -#: field:hr.employee.category,parent_id:0 -msgid "Parent Category" -msgstr "" - -#. module: hr -#: model:ir.actions.act_window,name:hr.open_module_tree_department -#: model:ir.actions.act_window,name:hr.open_module_tree_department_tree -#: model:ir.ui.menu,name:hr.menu_department_def -#: model:ir.ui.menu,name:hr.menu_department_tree -msgid "Departments" -msgstr "" - -#. module: hr -#: model:process.node,name:hr.process_node_employeecontact0 -msgid "Employee Contact" -msgstr "" - -#. module: hr -#: selection:hr.employee,marital:0 -msgid "Maried" -msgstr "" - -#. module: hr -#: field:hr.timesheet,tgroup_id:0 -msgid "Employee's timesheet group" -msgstr "" - -#. module: hr -#: selection:hr.employee,gender:0 -msgid "Male" -msgstr "" - -#. module: hr -#: model:process.transition,note:hr.process_transition_employeeuser0 -msgid "Create openerp user" -msgstr "" - -#. module: hr -#: view:hr.employee.category:0 -#: model:ir.model,name:hr.model_hr_employee_category -msgid "Employee Category" -msgstr "" - -#. module: hr -#: selection:hr.timesheet,dayofweek:0 -msgid "Tuesday" -msgstr "" - -#. module: hr -#: model:ir.model,name:hr.model_hr_department -msgid "hr.department" -msgstr "" - -#. module: hr -#: field:hr.employee,user_id:0 -msgid "Related User" -msgstr "" - -#. module: hr -#: field:hr.employee,category_id:0 -#: field:hr.employee.category,name:0 -msgid "Category" -msgstr "" - -#. module: hr -#: field:hr.department,note:0 -msgid "Note" -msgstr "" - -#. module: hr -#: view:hr.employee:0 -msgid "Contact Information" -msgstr "" - -#. module: hr -#: view:hr.employee:0 -msgid "Status" -msgstr "" - -#. module: hr -#: selection:hr.timesheet,dayofweek:0 -msgid "Monday" -msgstr "" - -#. module: hr -#: model:ir.actions.act_window,name:hr.open_view_categ_tree -#: model:ir.ui.menu,name:hr.menu_view_employee_category_tree -msgid "Categories structure" -msgstr "" - -#. module: hr -#: field:hr.timesheet,dayofweek:0 -msgid "Day of week" -msgstr "" - -#. module: hr -#: field:hr.employee,birthday:0 -msgid "Birthday" -msgstr "" - -#. module: hr -#: field:hr.employee,active:0 -msgid "Active" -msgstr "" - -#. module: hr -#: constraint:hr.employee:0 -msgid "Error ! You cannot create recursive Hierarchy of Employees." -msgstr "" - -#. module: hr -#: model:process.process,name:hr.process_process_employeecontractprocess0 -msgid "Employee Contract Process" -msgstr "" - -#. module: hr -#: model:process.node,note:hr.process_node_openerpuser0 -msgid "Create OpenERP User" -msgstr "" - -#. module: hr -#: model:process.node,note:hr.process_node_employee0 -msgid "Employee Complete Form" -msgstr "" - -#. module: hr -#: view:hr.department:0 -msgid "Companies" -msgstr "" - -#. module: hr -#: selection:hr.timesheet,dayofweek:0 -msgid "Wednesday" -msgstr "" - -#. module: hr -#: model:ir.actions.act_window,name:hr.open_view_categ_form -#: model:ir.ui.menu,name:hr.menu_view_employee_category_form -msgid "Categories of Employee" -msgstr "" - -#. module: hr -#: field:hr.timesheet,date_from:0 -msgid "Starting date" -msgstr "" - -#. module: hr -#: field:hr.employee,address_id:0 -msgid "Working Address" -msgstr "" - -#. module: hr -#: field:hr.employee,marital:0 -msgid "Marital Status" -msgstr "" - -#. module: hr -#: model:ir.model,name:hr.model_hr_timesheet -msgid "Timesheet Line" -msgstr "" - -#. module: hr -#: view:hr.employee:0 -msgid "Personal Information" -msgstr "" - -#. module: hr -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: hr -#: view:hr.timesheet:0 -#: field:hr.timesheet.group,timesheet_id:0 -#: model:ir.model,name:hr.model_hr_timesheet_group -msgid "Working Time" -msgstr "" - -#. module: hr -#: selection:hr.timesheet,dayofweek:0 -msgid "Thursday" -msgstr "" - -#. module: hr -#: field:hr.timesheet,hour_to:0 -msgid "Work to" -msgstr "" - -#. module: hr -#: selection:hr.employee,marital:0 -msgid "Other" -msgstr "" - -#. module: hr -#: view:hr.employee.category:0 -msgid "Employees Categories" -msgstr "" - -#. module: hr -#: field:hr.employee,address_home_id:0 -msgid "Home Address" -msgstr "" - -#. module: hr -#: view:hr.department:0 -msgid "department" -msgstr "" - -#. module: hr -#: field:hr.employee,country_id:0 -msgid "Nationality" -msgstr "" - -#. module: hr -#: field:hr.employee,otherid:0 -msgid "Other ID" -msgstr "" - -#. module: hr -#: field:hr.timesheet,name:0 -msgid "Name" -msgstr "" - -#. module: hr -#: field:hr.employee,gender:0 -msgid "Gender" -msgstr "" - -#. module: hr -#: view:hr.employee:0 -#: model:ir.actions.act_window,name:hr.open_view_employee_list -#: model:ir.ui.menu,name:hr.menu_open_view_employee_list -msgid "Employees" -msgstr "" - -#. module: hr -#: field:hr.department,name:0 -msgid "Department Name" -msgstr "" - -#. module: hr -#: field:hr.department,child_ids:0 -msgid "Child Departments" -msgstr "" - -#. module: hr -#: view:hr.employee:0 -msgid "Job Information" -msgstr "" - -#. module: hr -#: model:process.node,note:hr.process_node_employeecontact0 -msgid "Fill up employee's contact information" -msgstr "" - -#. module: hr -#: field:hr.department,manager_id:0 -#: field:hr.employee,parent_id:0 -msgid "Manager" -msgstr "" - -#. module: hr -#: model:ir.actions.act_window,name:hr.open_view_employee_list_my -#: model:ir.ui.menu,name:hr.menu_open_view_employee_list_my -msgid "All Employees" -msgstr "" - -#. module: hr -#: selection:hr.timesheet,dayofweek:0 -msgid "Saturday" -msgstr "" - -#. module: hr -#: model:ir.actions.act_window,name:hr.open_view_employee_new -#: model:ir.ui.menu,name:hr.menu_open_view_employee_new -msgid "New Employee" -msgstr "" - diff --git a/addons/hr_attendance/i18n/tlh_TLH.po b/addons/hr_attendance/i18n/tlh_TLH.po deleted file mode 100644 index 862a354c858..00000000000 --- a/addons/hr_attendance/i18n/tlh_TLH.po +++ /dev/null @@ -1,443 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * hr_attendance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: hr_attendance -#: field:hr.employee,state:0 -#: model:ir.model,name:hr_attendance.model_hr_attendance -msgid "Attendance" -msgstr "" - -#. module: hr_attendance -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: hr_attendance -#: wizard_view:hr.si_so,init:0 -#: wizard_view:hr.si_so,si_ask_so:0 -#: wizard_view:hr.si_so,so_ask_si:0 -#: model:ir.actions.wizard,name:hr_attendance.si_so -#: model:ir.ui.menu,name:hr_attendance.menu_si_so -msgid "Sign in / Sign out" -msgstr "" - -#. module: hr_attendance -#: code:addons/hr_attendance/hr_attendance.py:0 -#, python-format -msgid "You tried to sign with a date anterior to another event !\nTry to contact the administrator to correct attendances." -msgstr "" - -#. module: hr_attendance -#: rml:report.hr.timesheet.attendance.error:0 -msgid "(*) A positive delay means that the employee worked less than recorded." -msgstr "" - -#. module: hr_attendance -#: view:hr.attendance:0 -msgid "Employee attendances" -msgstr "" - -#. module: hr_attendance -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -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 "" - -#. 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 "" - -#. module: hr_attendance -#: rml:report.hr.timesheet.attendance.error:0 -msgid "Delay" -msgstr "" - -#. module: hr_attendance -#: wizard_field:hr.si_so,init,name:0 -#: 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 "" - -#. module: hr_attendance -#: wizard_button:hr.print_month,init,print:0 -#: wizard_button:hr.print_week,init,print:0 -msgid "Print Timesheet" -msgstr "" - -#. module: hr_attendance -#: model:ir.actions.wizard,name:hr_attendance.wizard_attendance_error -msgid "Print Attendance Error Report" -msgstr "" - -#. module: hr_attendance -#: model:ir.actions.wizard,name:hr_attendance.print_week -msgid "Print Timesheet by week" -msgstr "" - -#. module: hr_attendance -#: field:hr.attendance,employee_id:0 -msgid "Employee" -msgstr "" - -#. module: hr_attendance -#: wizard_view:hr.print_week,init:0 -#: wizard_view:hr.timesheet.attendance.report,init:0 -msgid "Select a time span" -msgstr "" - -#. module: hr_attendance -#: rml:report.hr.timesheet.attendance.error:0 -msgid "Date Recorded" -msgstr "" - -#. module: hr_attendance -#: selection:hr.attendance,action:0 -#: view:hr.employee:0 -msgid "Sign In" -msgstr "" - -#. module: hr_attendance -#: rml:report.hr.timesheet.attendance.error:0 -msgid "Total period:" -msgstr "" - -#. module: hr_attendance -#: code:addons/hr_attendance/hr_attendance.py:0 -#, python-format -msgid "You tried to sign out with a date anterior to another event !\nTry to contact the administrator to correct attendances." -msgstr "" - -#. module: hr_attendance -#: field:hr.attendance,action_desc:0 -#: model:ir.model,name:hr_attendance.model_hr_action_reason -msgid "Action reason" -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "March" -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "August" -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "May" -msgstr "" - -#. module: hr_attendance -#: code:addons/hr_attendance/wizard/sign_in_out.py:0 -#, python-format -msgid "A sign-out must be right after a sign-in !" -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "June" -msgstr "" - -#. module: hr_attendance -#: model:ir.actions.wizard,name:hr_attendance.print_month -msgid "Print Timesheet by month" -msgstr "" - -#. module: hr_attendance -#: selection:hr.attendance,action:0 -#: view:hr.employee:0 -msgid "Sign Out" -msgstr "" - -#. module: hr_attendance -#: model:ir.module.module,shortdesc:hr_attendance.module_meta_information -msgid "Attendances Of Employees" -msgstr "" - -#. module: hr_attendance -#: field:hr.action.reason,name:0 -msgid "Reason" -msgstr "" - -#. module: hr_attendance -#: constraint:hr.attendance:0 -msgid "Error: Sign in (resp. Sign out) must follow Sign out (resp. Sign in)" -msgstr "" - -#. module: hr_attendance -#: code:addons/hr_attendance/wizard/sign_in_out.py:0 -#, python-format -msgid "The sign-out date must be in the past" -msgstr "" - -#. module: hr_attendance -#: rml:report.hr.timesheet.attendance.error:0 -msgid "Date Signed" -msgstr "" - -#. module: hr_attendance -#: field:hr.attendance,name:0 -msgid "Date" -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "July" -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 "" - -#. module: hr_attendance -#: view:hr.action.reason:0 -msgid "Attendance reasons" -msgstr "" - -#. module: hr_attendance -#: wizard_field:hr.print_week,init,init_date:0 -#: wizard_field:hr.timesheet.attendance.report,init,init_date:0 -msgid "Starting Date" -msgstr "" - -#. module: hr_attendance -#: selection:hr.employee,state:0 -msgid "Present" -msgstr "" - -#. module: hr_attendance -#: selection:hr.employee,state:0 -msgid "Absent" -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "February" -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "October" -msgstr "" - -#. module: hr_attendance -#: wizard_field:hr.si_so,si_ask_so,last_time:0 -msgid "Your last sign out" -msgstr "" - -#. module: hr_attendance -#: code:addons/hr_attendance/wizard/sign_in_out.py:0 -#, python-format -msgid "The Sign-in date must be in the past" -msgstr "" - -#. module: hr_attendance -#: wizard_field:hr.print_month,init,year:0 -msgid "Year" -msgstr "" - -#. module: hr_attendance -#: rml:report.hr.timesheet.attendance.error:0 -msgid "Min Delay" -msgstr "" - -#. module: hr_attendance -#: field:hr.action.reason,action_type:0 -msgid "Action's type" -msgstr "" - -#. module: hr_attendance -#: view:hr.action.reason:0 -msgid "Define attendance reason" -msgstr "" - -#. module: hr_attendance -#: selection:hr.action.reason,action_type:0 -#: wizard_button:hr.si_so,init,si_test:0 -#: wizard_button:hr.si_so,si_ask_so,si:0 -msgid "Sign in" -msgstr "" - -#. module: hr_attendance -#: wizard_view:hr.timesheet.attendance.report,init:0 -msgid "Analysis Information" -msgstr "" - -#. module: hr_attendance -#: wizard_field:hr.si_so,init,state:0 -msgid "Current state" -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "January" -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "April" -msgstr "" - -#. module: hr_attendance -#: model:ir.actions.act_window,name:hr_attendance.open_view_attendance -#: model:ir.ui.menu,name:hr_attendance.menu_hr_attendance -#: model:ir.ui.menu,name:hr_attendance.menu_open_view_attendance -msgid "Attendances" -msgstr "" - -#. module: hr_attendance -#: rml:report.hr.timesheet.attendance.error:0 -msgid "Attendance Errors" -msgstr "" - -#. module: hr_attendance -#: field:hr.attendance,action:0 -#: selection:hr.attendance,action:0 -msgid "Action" -msgstr "" - -#. module: hr_attendance -#: wizard_button:hr.timesheet.attendance.report,init,print:0 -msgid "Print Attendance Report" -msgstr "" - -#. module: hr_attendance -#: model:ir.actions.act_window,name:hr_attendance.open_view_attendance_reason -#: model:ir.ui.menu,name:hr_attendance.menu_open_view_attendance_reason -msgid "Attendance Reasons" -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "November" -msgstr "" - -#. module: hr_attendance -#: wizard_view:hr.timesheet.attendance.report,init:0 -msgid "Bellow this delay, the error is considered to be voluntary" -msgstr "" - -#. module: hr_attendance -#: code:addons/hr_attendance/wizard/sign_in_out.py:0 -#, python-format -msgid "UserError" -msgstr "" - -#. module: hr_attendance -#: wizard_field:hr.timesheet.attendance.report,init,max_delay:0 -msgid "Max. Delay (Min)" -msgstr "" - -#. module: hr_attendance -#: wizard_view:hr.print_week,init:0 -msgid "Select a starting and a end date" -msgstr "" - -#. module: hr_attendance -#: wizard_field:hr.print_week,init,end_date:0 -#: wizard_field:hr.timesheet.attendance.report,init,end_date:0 -msgid "Ending Date" -msgstr "" - -#. module: hr_attendance -#: wizard_view:hr.si_so,so_ask_si:0 -msgid "You did not signed in the last time. Please enter the date and time you signed in." -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "September" -msgstr "" - -#. module: hr_attendance -#: model:ir.actions.report.xml,name:hr_attendance.attendance_error_report -msgid "Attendance Error Report" -msgstr "" - -#. module: hr_attendance -#: view:hr.attendance:0 -msgid "Employee attendance" -msgstr "" - -#. module: hr_attendance -#: wizard_view:hr.print_month,init:0 -msgid "Select a month" -msgstr "" - -#. module: hr_attendance -#: wizard_field:hr.print_month,init,month:0 -msgid "Month" -msgstr "" - -#. module: hr_attendance -#: model:ir.module.module,description:hr_attendance.module_meta_information -msgid "This module aims to manage employee's attendances." -msgstr "" - -#. module: hr_attendance -#: code:addons/hr_attendance/hr_attendance.py:0 -#, python-format -msgid "Warning" -msgstr "" - -#. module: hr_attendance -#: selection:hr.print_month,init,month:0 -msgid "December" -msgstr "" - -#. module: hr_attendance -#: wizard_button:hr.print_month,init,end:0 -#: wizard_button:hr.print_week,init,end:0 -#: wizard_button:hr.si_so,init,end:0 -#: wizard_button:hr.si_so,si_ask_so,end:0 -#: wizard_button:hr.si_so,so_ask_si,end:0 -#: wizard_button:hr.timesheet.attendance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: hr_attendance -#: rml:report.hr.timesheet.attendance.error:0 -msgid "Operation" -msgstr "" - -#. module: hr_attendance -#: code:addons/hr_attendance/hr_attendance.py:0 -#, python-format -msgid "You tried to sign in with a date anterior to another event !\nTry to contact the administrator to correct attendances." -msgstr "" - -#. module: hr_attendance -#: wizard_field:hr.si_so,so_ask_si,last_time:0 -msgid "Your last sign in" -msgstr "" - -#. module: hr_attendance -#: code:addons/hr_attendance/wizard/sign_in_out.py:0 -#, python-format -msgid "A sign-in must be right after a sign-out !" -msgstr "" - diff --git a/addons/hr_contract/i18n/tlh_TLH.po b/addons/hr_contract/i18n/tlh_TLH.po deleted file mode 100644 index 6cc7eddb171..00000000000 --- a/addons/hr_contract/i18n/tlh_TLH.po +++ /dev/null @@ -1,259 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * hr_contract -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: hr_contract -#: view:hr.contract.wage.type:0 -msgid "Hourly cost computation" -msgstr "" - -#. module: hr_contract -#: selection:hr.contract.wage.type,type:0 -msgid "Gross" -msgstr "" - -#. module: hr_contract -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: hr_contract -#: view:hr.contract:0 -#: view:hr.employee:0 -msgid "Generalities" -msgstr "" - -#. module: hr_contract -#: field:hr.employee,children:0 -msgid "Number of children" -msgstr "" - -#. module: hr_contract -#: field:hr.contract.wage.type,factor_type:0 -msgid "Factor for hour cost" -msgstr "" - -#. module: hr_contract -#: view:hr.contract.wage.type:0 -msgid "Wage Types" -msgstr "" - -#. module: hr_contract -#: field:hr.employee,soc_security:0 -msgid "Social security number" -msgstr "" - -#. module: hr_contract -#: field:hr.contract,employee_id:0 -msgid "Employee" -msgstr "" - -#. module: hr_contract -#: selection:hr.contract.wage.type,type:0 -msgid "Net" -msgstr "" - -#. module: hr_contract -#: model:ir.module.module,shortdesc:hr_contract.module_meta_information -msgid "Human Resources Contracts" -msgstr "" - -#. module: hr_contract -#: field:hr.contract.wage.type.period,factor_days:0 -msgid "Hours in the period" -msgstr "" - -#. module: hr_contract -#: field:hr.contract,function:0 -msgid "Function" -msgstr "" - -#. module: hr_contract -#: field:hr.employee,marital_status:0 -#: view:hr.employee.marital.status:0 -#: field:hr.employee.marital.status,name:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_marital_status -#: model:ir.ui.menu,name:hr_contract.hr_menu_marital_status -msgid "Marital Status" -msgstr "" - -#. module: hr_contract -#: view:hr.employee:0 -msgid "Miscelleanous" -msgstr "" - -#. module: hr_contract -#: view:hr.contract:0 -#: view:hr.employee:0 -#: field:hr.employee,contract_ids:0 -msgid "Contracts" -msgstr "" - -#. module: hr_contract -#: field:hr.contract.wage.type,type:0 -msgid "Type" -msgstr "" - -#. module: hr_contract -#: field:hr.contract,wage_type_id:0 -#: view:hr.contract.wage.type:0 -#: model:ir.model,name:hr_contract.model_hr_contract_wage_type -msgid "Wage Type" -msgstr "" - -#. module: hr_contract -#: field:hr.contract.wage.type.period,name:0 -msgid "Period Name" -msgstr "" - -#. module: hr_contract -#: model:ir.model,name:hr_contract.model_hr_employee_marital_status -msgid "Employee Marital Status" -msgstr "" - -#. module: hr_contract -#: field:hr.employee,medic_exam:0 -msgid "Medical examination date" -msgstr "" - -#. module: hr_contract -#: field:hr.contract.wage.type,name:0 -msgid "Wage Type Name" -msgstr "" - -#. module: hr_contract -#: field:hr.contract,working_hours_per_day:0 -msgid "Working hours per day" -msgstr "" - -#. module: hr_contract -#: view:hr.employee:0 -msgid "Salary" -msgstr "" - -#. module: hr_contract -#: field:hr.contract,date_end:0 -msgid "End Date" -msgstr "" - -#. module: hr_contract -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: hr_contract -#: view:hr.contract:0 -#: field:hr.contract,notes:0 -#: view:hr.employee:0 -msgid "Notes" -msgstr "" - -#. module: hr_contract -#: view:hr.contract:0 -#: view:hr.employee:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract -#: model:ir.model,name:hr_contract.model_hr_contract -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract -#: model:ir.ui.menu,name:hr_contract.next_id_56 -msgid "Contract" -msgstr "" - -#. module: hr_contract -#: view:hr.contract.type:0 -msgid "Contract Type" -msgstr "" - -#. module: hr_contract -#: field:hr.contract.wage.type,period_id:0 -#: model:ir.model,name:hr_contract.model_hr_contract_wage_type_period -msgid "Wage Period" -msgstr "" - -#. module: hr_contract -#: field:hr.employee,nationality:0 -msgid "Nationality" -msgstr "" - -#. module: hr_contract -#: field:hr.employee,audiens_num:0 -msgid "AUDIENS Number" -msgstr "" - -#. module: hr_contract -#: view:hr.contract:0 -msgid "Remuneration" -msgstr "" - -#. module: hr_contract -#: field:hr.contract,name:0 -msgid "Contract Name" -msgstr "" - -#. module: hr_contract -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type -msgid "Contract Wage Type" -msgstr "" - -#. module: hr_contract -#: field:hr.employee,place_of_birth:0 -msgid "Place of Birth" -msgstr "" - -#. module: hr_contract -#: field:hr.employee,manager:0 -msgid "Manager" -msgstr "" - -#. module: hr_contract -#: view:hr.contract.wage.type.period:0 -#: model:ir.actions.act_window,name:hr_contract.action_hr_contract_wage_type_period -#: model:ir.ui.menu,name:hr_contract.hr_menu_contract_wage_type_period -msgid "Wage period" -msgstr "" - -#. module: hr_contract -#: help:hr.contract.wage.type,factor_type:0 -#: help:hr.contract.wage.type.period,factor_days:0 -msgid "This field is used by the timesheet system to compute the price of an hour of work wased on the contract of the employee" -msgstr "" - -#. module: hr_contract -#: field:hr.contract,wage:0 -msgid "Wage" -msgstr "" - -#. module: hr_contract -#: field:hr.contract,date_start:0 -msgid "Start Date" -msgstr "" - -#. module: hr_contract -#: view:hr.contract:0 -#: view:hr.employee:0 -msgid "Contract Duration" -msgstr "" - -#. module: hr_contract -#: field:hr.employee.marital.status,description:0 -msgid "Status Description" -msgstr "" - -#. module: hr_contract -#: field:hr.employee,birth_date:0 -msgid "Birth Date" -msgstr "" - diff --git a/addons/hr_expense/i18n/tlh_TLH.po b/addons/hr_expense/i18n/tlh_TLH.po deleted file mode 100644 index b88d5df7916..00000000000 --- a/addons/hr_expense/i18n/tlh_TLH.po +++ /dev/null @@ -1,520 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * hr_expense -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: hr_expense -#: model:process.node,name:hr_expense.process_node_confirmedexpenses0 -msgid "Confirmed Expenses" -msgstr "" - -#. module: hr_expense -#: model:ir.model,name:hr_expense.model_hr_expense_line -msgid "Expense Line" -msgstr "" - -#. module: hr_expense -#: model:process.node,note:hr_expense.process_node_reimbursement0 -msgid "The accoutant reimburse the expenses" -msgstr "" - -#. module: hr_expense -#: model:ir.actions.act_window,name:hr_expense.expense_all_confirm -#: model:ir.ui.menu,name:hr_expense.menu_expense_all_confirm -msgid "Expenses waiting validation" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.expense,date_confirm:0 -msgid "Date Confirmed" -msgstr "" - -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Waiting confirmation" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -msgid "Set to Draft" -msgstr "" - -#. module: hr_expense -#: model:ir.actions.act_window,name:hr_expense.expense_my_confirm -#: model:ir.ui.menu,name:hr_expense.menu_expense_my_confirm -msgid "My expenses waiting validation" -msgstr "" - -#. module: hr_expense -#: model:ir.actions.act_window,name:hr_expense.expense_all -#: model:ir.ui.menu,name:hr_expense.menu_expense_all -msgid "All expenses" -msgstr "" - -#. module: hr_expense -#: model:process.node,name:hr_expense.process_node_approved0 -msgid "Approved" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.line,uom_id:0 -msgid "UoM" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -#: model:process.transition.action,name:hr_expense.process_transition_action_refuse0 -msgid "Refuse" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -msgid "Notes" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -msgid "Validation" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -msgid "This document must be dated and signed for reimbursment" -msgstr "" - -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Accepted" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -#: field:hr.expense.expense,ref:0 -#: field:hr.expense.line,ref:0 -msgid "Reference" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -msgid "Certified honest and conform," -msgstr "" - -#. module: hr_expense -#: model:ir.actions.report.xml,name:hr_expense.hr_expenses -msgid "Print HR expenses" -msgstr "" - -#. module: hr_expense -#: model:process.transition,name:hr_expense.process_transition_refuseexpense0 -msgid "Refuse expense" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -#: model:process.transition.action,name:hr_expense.process_transition_action_confirm0 -msgid "Confirm" -msgstr "" - -#. module: hr_expense -#: model:process.node,note:hr_expense.process_node_supplierinvoice0 -msgid "The accoutant validates the sheet" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.line,analytic_account:0 -msgid "Analytic account" -msgstr "" - -#. module: hr_expense -#: model:process.node,name:hr_expense.process_node_supplierinvoice0 -#: model:process.transition,name:hr_expense.process_transition_approveinvoice0 -msgid "Supplier Invoice" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.expense,state:0 -msgid "State" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.expense,date_valid:0 -msgid "Date Valided" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -#: field:hr.expense.expense,employee_id:0 -msgid "Employee" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -msgid "Qty" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -msgid "Total Price" -msgstr "" - -#. module: hr_expense -#: model:process.node,note:hr_expense.process_node_reinvoicing0 -msgid "Some costs may be reinvoices to the customer" -msgstr "" - -#. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: hr_expense -#: model:ir.actions.act_window,name:hr_expense.expense_my -#: model:ir.ui.menu,name:hr_expense.menu_expense_my -msgid "My Expenses" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.expense,id:0 -msgid "Sheet ID" -msgstr "" - -#. module: hr_expense -#: model:process.transition,name:hr_expense.process_transition_reimburseexpense0 -msgid "Reimburse expense" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.expense,journal_id:0 -msgid "Force Journal" -msgstr "" - -#. module: hr_expense -#: model:ir.actions.act_window,name:hr_expense.expense_my_new -#: model:ir.ui.menu,name:hr_expense.menu_expense_my_new -msgid "New Expenses Sheet" -msgstr "" - -#. module: hr_expense -#: model:process.transition,note:hr_expense.process_transition_reimburseexpense0 -msgid "After creating invoice, reimburse expenses" -msgstr "" - -#. module: hr_expense -#: model:process.node,name:hr_expense.process_node_reimbursement0 -msgid "Reimbursement" -msgstr "" - -#. module: hr_expense -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:0 -#, python-format -msgid "The employee must have a contact address" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.line,expense_id:0 -#: model:ir.model,name:hr_expense.model_hr_expense_expense -msgid "Expense" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -#: field:hr.expense.expense,line_ids:0 -#: view:hr.expense.line:0 -msgid "Expense Lines" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.expense,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: hr_expense -#: model:process.node,note:hr_expense.process_node_draftexpenses0 -msgid "Employee encode all his expenses" -msgstr "" - -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Invoiced" -msgstr "" - -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Reimbursed" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.expense,note:0 -msgid "Note" -msgstr "" - -#. module: hr_expense -#: model:process.transition,note:hr_expense.process_transition_reimbursereinvoice0 -msgid "Create Customer invoice" -msgstr "" - -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Draft" -msgstr "" - -#. module: hr_expense -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -msgid "Accounting data" -msgstr "" - -#. module: hr_expense -#: model:process.transition,note:hr_expense.process_transition_approveexpense0 -msgid "Expense is approved." -msgstr "" - -#. module: hr_expense -#: field:hr.expense.expense,amount:0 -msgid "Total Amount" -msgstr "" - -#. module: hr_expense -#: model:process.node,name:hr_expense.process_node_draftexpenses0 -msgid "Draft Expenses" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.expense,user_id:0 -msgid "User" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -#: field:hr.expense.expense,date:0 -#: field:hr.expense.line,date_value:0 -msgid "Date" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -msgid "Total:" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -msgid "HR Expenses" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.expense,account_move_id:0 -msgid "Account Move" -msgstr "" - -#. module: hr_expense -#: model:process.node,note:hr_expense.process_node_confirmedexpenses0 -msgid "The employee validates his expense sheet" -msgstr "" - -#. module: hr_expense -#: model:process.node,note:hr_expense.process_node_refused0 -msgid "The direct manager refuses the sheet.Reset as draft." -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -msgid "Expenses Sheet" -msgstr "" - -#. module: hr_expense -#: model:ir.actions.act_window,name:hr_expense.expense_all_invoiced -#: model:ir.ui.menu,name:hr_expense.menu_expense_all_invoiced -msgid "Expenses waiting payment" -msgstr "" - -#. module: hr_expense -#: model:ir.actions.act_window,name:hr_expense.expense_my_draft -#: model:ir.ui.menu,name:hr_expense.menu_expense_my_draft -msgid "My Draft expenses" -msgstr "" - -#. module: hr_expense -#: model:ir.module.module,shortdesc:hr_expense.module_meta_information -msgid "Human Resources Expenses Tracking" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -#: field:hr.expense.expense,invoice_id:0 -#: model:process.transition.action,name:hr_expense.process_transition_action_supplierinvoice0 -msgid "Invoice" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -msgid "Cancel" -msgstr "" - -#. module: hr_expense -#: model:process.transition,name:hr_expense.process_transition_reimbursereinvoice0 -msgid "Reinvoice" -msgstr "" - -#. module: hr_expense -#: model:process.process,name:hr_expense.process_process_expenseprocess0 -msgid "Expense Process" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -msgid "Other Info" -msgstr "" - -#. module: hr_expense -#: model:ir.actions.act_window,name:hr_expense.expense_all_draft -#: model:ir.ui.menu,name:hr_expense.menu_expense_all_draft -msgid "Draft expenses" -msgstr "" - -#. module: hr_expense -#: model:process.transition,name:hr_expense.process_transition_confirmexpense0 -msgid "Confirm expense" -msgstr "" - -#. module: hr_expense -#: model:process.transition,name:hr_expense.process_transition_approveexpense0 -msgid "Approve expense" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -#: model:process.transition.action,name:hr_expense.process_transition_action_accept0 -msgid "Accept" -msgstr "" - -#. module: hr_expense -#: model:process.transition,note:hr_expense.process_transition_refuseexpense0 -msgid "Expense is refused." -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -#: field:hr.expense.line,unit_amount:0 -msgid "Unit Price" -msgstr "" - -#. module: hr_expense -#: model:ir.actions.act_window,name:hr_expense.expense_all_valid -#: model:ir.ui.menu,name:hr_expense.menu_expense_all_valid -msgid "Expenses waiting invoice" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.line,product_id:0 -msgid "Product" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.line,description:0 -msgid "Description" -msgstr "" - -#. module: hr_expense -#: selection:hr.expense.expense,state:0 -msgid "Canceled" -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -#: field:hr.expense.expense,name:0 -msgid "Expense Sheet" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.line,unit_quantity:0 -msgid "Quantities" -msgstr "" - -#. module: hr_expense -#: model:process.node,name:hr_expense.process_node_refused0 -msgid "Refused" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -msgid "Ref." -msgstr "" - -#. module: hr_expense -#: field:hr.expense.expense,user_valid:0 -msgid "Validation User" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -msgid "(Date and signature)" -msgstr "" - -#. module: hr_expense -#: rml:hr.expense:0 -msgid "Name" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.line,name:0 -msgid "Short Description" -msgstr "" - -#. module: hr_expense -#: model:process.transition,note:hr_expense.process_transition_approveinvoice0 -msgid "Creates supplier invoice." -msgstr "" - -#. module: hr_expense -#: model:process.node,note:hr_expense.process_node_approved0 -msgid "The direct manager approves the sheet" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.line,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: hr_expense -#: model:process.transition,note:hr_expense.process_transition_confirmexpense0 -msgid "Expense is confirmed." -msgstr "" - -#. module: hr_expense -#: view:hr.expense.expense:0 -#: model:ir.ui.menu,name:hr_expense.next_id_49 -msgid "Expenses" -msgstr "" - -#. module: hr_expense -#: field:hr.expense.line,total_amount:0 -msgid "Total" -msgstr "" - -#. module: hr_expense -#: model:process.node,name:hr_expense.process_node_reinvoicing0 -msgid "Reinvoicing" -msgstr "" - diff --git a/addons/hr_holidays/i18n/tlh_TLH.po b/addons/hr_holidays/i18n/tlh_TLH.po deleted file mode 100644 index bddc8f041c6..00000000000 --- a/addons/hr_holidays/i18n/tlh_TLH.po +++ /dev/null @@ -1,718 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * hr_holidays -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays_new -msgid "New Holidays Request" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_all_holiday -msgid "All Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.per.user,remaining_leaves:0 -msgid "Remaining Leaves" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_holiday_waiting -msgid "Requests Awaiting for Validation" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Blue" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Brown" -msgstr "" - -#. module: hr_holidays -#: xsl:holidays.summary:0 -msgid "of the" -msgstr "" - -#. module: hr_holidays -#: xsl:holidays.summary:0 -msgid "Off-Days' Summary" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -#: model:process.transition,name:hr_holidays.process_transition_employeeholidays0 -msgid "Employee Holidays" -msgstr "" - -#. module: hr_holidays -#: code:addons/hr_holidays/hr.py:0 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -msgid "Set to Draft" -msgstr "" - -#. module: hr_holidays -#: model:ir.model,name:hr_holidays.model_hr_holidays -#: model:process.node,name:hr_holidays.process_node_holidays0 -msgid "Holidays" -msgstr "" - -#. module: hr_holidays -#: xsl:holidays.summary:0 -msgid "to" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Cyan" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Green" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,name:hr_holidays.process_transition_employeedeclaration0 -msgid "Employee Declaration" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -#: selection:hr.holidays,state:0 -#: model:process.transition.action,name:hr_holidays.process_transition_action_validate0 -msgid "Validate" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,name:hr_holidays.process_transition_refusedrequest0 -msgid "Refused Request" -msgstr "" - -#. module: hr_holidays -#: model:process.node,name:hr_holidays.process_node_approved0 -msgid "Approved" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.summary.employee,init,holiday_type:0 -msgid "Both" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -msgid "Refuse" -msgstr "" - -#. module: hr_holidays -#: wizard_button:hr.holidays.summary,notify,end:0 -#: wizard_button:hr.holidays.summary.employee,notify,end:0 -msgid "Ok" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday -msgid "My Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,notes:0 -#: field:hr.holidays.per.user,notes:0 -msgid "Notes" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,holiday_status:0 -#: field:hr.holidays.log,holiday_status:0 -#: field:hr.holidays.per.user,holiday_status:0 -msgid "Holiday's Status" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_refusedrequest0 -msgid "Request is refused." -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays -msgid "Holidays Management" -msgstr "" - -#. module: hr_holidays -#: xsl:holidays.summary:0 -msgid "Analyze from" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary -msgid "Summary Of Holidays" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_calendar0 -msgid "The holiday is set in the calendar" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.status:0 -msgid "Holiday status" -msgstr "" - -#. module: hr_holidays -#: model:ir.model,name:hr_holidays.model_hr_holidays_status -msgid "Holidays Status" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,date_to:0 -msgid "Vacation end day" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -msgid "Holidays Allowed" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_legaldeclaration0 -msgid "Legal Declaration Document to declare new employee" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Magenta" -msgstr "" - -#. module: hr_holidays -#: model:ir.model,name:hr_holidays.model_hr_holidays_per_user -msgid "Holidays Per User" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.status:0 -msgid "Define holiday status" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays,state:0 -#: selection:hr.holidays.summary,init,holiday_type:0 -#: selection:hr.holidays.summary.employee,init,holiday_type:0 -msgid "Confirmed" -msgstr "" - -#. module: hr_holidays -#: wizard_field:hr.holidays.summary,init,date_from:0 -#: wizard_field:hr.holidays.summary.employee,init,date_from:0 -msgid "From" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -#: model:process.transition.action,name:hr_holidays.process_transition_action_confirm0 -msgid "Confirm" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_waiting -msgid "My Awaiting Confirmation Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,user_id:0 -msgid "Employee_id" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_holidaysdefinition0 -msgid "Encoding of annual available holidays." -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,employee_id:0 -#: field:hr.holidays.log,employee_id:0 -#: field:hr.holidays.per.user,employee_id:0 -msgid "Employee" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_employeeholidays0 -msgid "Employee get holidays" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Salmon" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Wheat" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.log,nb_holidays:0 -msgid "Number of Holidays Requested" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.act_hr_employee_holiday_request -msgid "My Holiday Requests" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -msgid "Number of Days" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.status,name:0 -#: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status -#: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status -msgid "Holiday Status" -msgstr "" - -#. module: hr_holidays -#: wizard_view:hr.holidays.summary,init:0 -#: wizard_view:hr.holidays.summary.employee,init:0 -msgid "Report Options" -msgstr "" - -#. module: hr_holidays -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_approved0 -msgid "His manager approves the request" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_holidaysdefrequest0 -msgid "If holidays available, employee can take it and fill it." -msgstr "" - -#. module: hr_holidays -#: wizard_view:hr.holidays.summary.employee,notify:0 -msgid "You have to select at least 1 Employee. Try again." -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_validate -msgid "My Validated Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: wizard_field:hr.holidays.summary.employee,init,emp:0 -msgid "Employee(s)" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,number_of_days:0 -msgid "Number of Days in this Holiday Request" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: model:ir.actions.act_window,name:hr_holidays.action_holidays_per_user -#: model:ir.ui.menu,name:hr_holidays.menu_open_holidays_per_user -msgid "Holidays Per Employee" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.status,limit:0 -msgid "Allow to override Limit" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.log,holiday_user_id:0 -msgid "Holidays user" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Lavender" -msgstr "" - -#. module: hr_holidays -#: model:ir.model,name:hr_holidays.model_hr_holidays_log -msgid "hr.holidays.log" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.wizard,name:hr_holidays.wizard_holidays_summary -msgid "Print Summary of Employee's Holidays" -msgstr "" - -#. module: hr_holidays -#: model:process.node,name:hr_holidays.process_node_calendar0 -msgid "Calendar" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,date_from:0 -msgid "Vacation start day" -msgstr "" - -#. module: hr_holidays -#: wizard_view:hr.holidays.summary,notify:0 -#: wizard_view:hr.holidays.summary.employee,notify:0 -msgid "Notification" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_holidaysrequest0 -msgid "Employee fills in a request for holidays" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_setholiday0 -msgid "Holiday is set in the calendar." -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Coral" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_available -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_available -msgid "My Available Holidays" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Black" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_refuse -msgid "My Refused Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,name:hr_holidays.process_transition_setholiday0 -msgid "Set Holiday" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_my_holiday_draft -msgid "My Draft Holidays Requests" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.per.user,max_leaves:0 -msgid "Maximum Leaves Allowed" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,state:0 -msgid "Status" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Ivory" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday -msgid "My Holidays Request" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.status,color_name:0 -msgid "Color of the status" -msgstr "" - -#. module: hr_holidays -#: model:ir.module.module,description:hr_holidays.module_meta_information -msgid "Human Ressources: Holidays tracking and workflow\n" -"\n" -" This module allows you to manage holidays and holidays requests. For each employee, you can also define a number of available holidays per holiday status.\n" -"\n" -" Note that:\n" -" - A synchronisation with an internal agenda (use of the CRM module) is possible: in order to automatically create a case when an holiday request is accepted, you have to link the holidays status to a case section. You can set up this info and your colour preferences in\n" -" HR \ Configuration \ Holidays Status\n" -" - An employee can make a negative holiday request (holiday request of -2 days for example), this is considered by the system as an ask for more off-days. It will increase his total of that holiday status available (if the request is accepted).\n" -" - There are two ways to print the employee's holidays:\n" -" * The first will allow to choose employees by department and is used by clicking the menu item located in\n" -" HR \ Holidays Request \ Print Summary of Holidays\n" -" * The second will allow you to choose the holidays report for specific employees. Go on the list\n" -" HR \ Employees \ Employees\n" -" then select the ones you want to choose, click on the print icon and select the option\n" -" 'Print Summary of Employee's Holidays'\n" -" - The wizard allows you to choose if you want to print either the Confirmed & Validated holidays or only the Validated ones. These states must be set up by a user from the group 'HR' and with the role 'holidays'. You can define these features in the security tab from the user data in\n" -" Administration \ Users \ Users\n" -" for example, you maybe will do it for the user 'admin'.\n" -"" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.summary,init,holiday_type:0 -msgid "Both Validated and Confirmed" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.per.user,leaves_taken:0 -msgid "Leaves Already Taken" -msgstr "" - -#. module: hr_holidays -#: xsl:holidays.summary:0 -msgid "holidays." -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays,state:0 -msgid "draft" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.per.user,user_id:0 -msgid "User" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_employeedeclaration0 -msgid "Document for employee" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.log,date:0 -msgid "Date" -msgstr "" - -#. module: hr_holidays -#: model:process.transition.action,name:hr_holidays.process_transition_action_reufse0 -msgid "Reufse" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.status,section_id:0 -msgid "Section" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_waiting -msgid "My Holidays Request Waiting confirmation" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,manager_id:0 -msgid "Holiday manager" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.per.user,active:0 -#: field:hr.holidays.status,active:0 -msgid "Active" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_draft -msgid "My Holidays Request Draft" -msgstr "" - -#. module: hr_holidays -#: code:addons/hr_holidays/hr.py:0 -#, python-format -msgid "You can not cancel this holiday request. first You have to make its case in draft state." -msgstr "" - -#. module: hr_holidays -#: model:process.transition,name:hr_holidays.process_transition_approvedrequest0 -msgid "Approved Request" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -#: field:hr.holidays.per.user,history:0 -msgid "History" -msgstr "" - -#. module: hr_holidays -#: model:process.node,name:hr_holidays.process_node_holidaysrequest0 -msgid "Holidays Request" -msgstr "" - -#. module: hr_holidays -#: model:ir.ui.menu,name:hr_holidays.menu_action_holiday_waiting -msgid "Holidays Requests Awaiting for Validation" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -msgid "General" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.per.user:0 -msgid "General Information" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays:0 -#: selection:hr.holidays,state:0 -#: wizard_button:hr.holidays.summary,init,end:0 -#: wizard_button:hr.holidays.summary.employee,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,name:hr_holidays.process_transition_holidaysdefrequest0 -msgid "Holidays def Request" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.summary,init,holiday_type:0 -#: selection:hr.holidays.summary.employee,init,holiday_type:0 -msgid "Validated" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_refuse -msgid "My Holidays Request Refused" -msgstr "" - -#. module: hr_holidays -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: hr_holidays -#: wizard_button:hr.holidays.summary,init,checkdept:0 -#: wizard_button:hr.holidays.summary.employee,init,checkemp:0 -msgid "Print" -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.wizard,name:hr_holidays.holidays_summary -#: model:ir.ui.menu,name:hr_holidays.menu_holidays_summary -msgid "Print Summary of Holidays" -msgstr "" - -#. module: hr_holidays -#: view:hr.holidays.log:0 -msgid "Log Holidays" -msgstr "" - -#. module: hr_holidays -#: wizard_field:hr.holidays.summary,init,depts:0 -msgid "Department(s)" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,name:0 -msgid "Description" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays,state:0 -#: model:process.node,name:hr_holidays.process_node_refused0 -msgid "Refused" -msgstr "" - -#. module: hr_holidays -#: model:process.transition,note:hr_holidays.process_transition_approvedrequest0 -msgid "Request is approved." -msgstr "" - -#. module: hr_holidays -#: model:process.node,name:hr_holidays.process_node_holidaysdefinition0 -msgid "Holidays Definition" -msgstr "" - -#. module: hr_holidays -#: wizard_field:hr.holidays.summary,init,holiday_type:0 -#: wizard_field:hr.holidays.summary.employee,init,holiday_type:0 -msgid "Select Holiday Type" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays,case_id:0 -msgid "Case" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_holidays0 -msgid "Encode number of available holidays" -msgstr "" - -#. module: hr_holidays -#: model:process.node,name:hr_holidays.process_node_legaldeclaration0 -msgid "Secretariat Social" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Violet" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Red" -msgstr "" - -#. module: hr_holidays -#: model:ir.module.module,shortdesc:hr_holidays.module_meta_information -msgid "Human Resources: Holidays management" -msgstr "" - -#. module: hr_holidays -#: model:process.process,name:hr_holidays.process_process_holidaysprocess0 -msgid "Holidays Process" -msgstr "" - -#. module: hr_holidays -#: wizard_view:hr.holidays.summary,notify:0 -msgid "You have to select at least 1 Department. Try again." -msgstr "" - -#. module: hr_holidays -#: model:ir.actions.act_window,name:hr_holidays.action_my_holiday_validate -msgid "My Holidays Request Validated" -msgstr "" - -#. module: hr_holidays -#: field:hr.holidays.log,holiday_req_id:0 -msgid "Holiday Request ID" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Yellow" -msgstr "" - -#. module: hr_holidays -#: selection:hr.holidays.status,color_name:0 -msgid "Light Pink" -msgstr "" - -#. module: hr_holidays -#: model:process.node,note:hr_holidays.process_node_refused0 -msgid "His manager refuses the request" -msgstr "" - diff --git a/addons/hr_timesheet/i18n/tlh_TLH.po b/addons/hr_timesheet/i18n/tlh_TLH.po deleted file mode 100644 index 9230a088fa6..00000000000 --- a/addons/hr_timesheet/i18n/tlh_TLH.po +++ /dev/null @@ -1,583 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * hr_timesheet -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Wed" -msgstr "" - -#. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_in:0 -msgid "(Keep empty for current_time)" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/wizard/sign_in_out.py:0 -#, python-format -msgid "No employee defined for your user !" -msgstr "" - -#. module: hr_timesheet -#: field:hr.employee,journal_id:0 -msgid "Analytic Journal" -msgstr "" - -#. module: hr_timesheet -#: wizard_button:hr_timesheet.si_so,sign_in,so_result_end:0 -msgid "Stop Working" -msgstr "" - -#. module: hr_timesheet -#: view:account.analytic.account:0 -msgid "Work done stats" -msgstr "" - -#. module: hr_timesheet -#: xsl:hr.analytical.timesheet:0 -#: xsl:hr.analytical.timesheet_users:0 -#: model:ir.ui.menu,name:hr_timesheet.next_id_48 -msgid "Timesheet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Mon" -msgstr "" - -#. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_out:0 -msgid "Sign in" -msgstr "" - -#. module: hr_timesheet -#: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_today_form -#: model:ir.ui.menu,name:hr_timesheet.menu_act_hr_timesheet_line_evry1_today_form -msgid "Working Hours of The Day" -msgstr "" - -#. module: hr_timesheet -#: model:product.uom,name:hr_timesheet.uom_day -msgid "Day" -msgstr "" - -#. module: hr_timesheet -#: wizard_field:hr_timesheet.si_so,sign_in,analytic_amount:0 -msgid "Minimum Analytic Amount" -msgstr "" - -#. module: hr_timesheet -#: view:hr.analytic.timesheet:0 -msgid "Total time" -msgstr "" - -#. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_out:0 -msgid "Sign in / Sign out" -msgstr "" - -#. module: hr_timesheet -#: wizard_field:hr_timesheet.si_so,sign_in,state:0 -#: wizard_field:hr_timesheet.si_so,sign_out,state:0 -msgid "Current state" -msgstr "" - -#. module: hr_timesheet -#: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_me_all_form -#: model:ir.ui.menu,name:hr_timesheet.menu_act_hr_timesheet_line_me_all_form -msgid "My Working Hours" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/wizard/sign_in_out.py:0 -#, python-format -msgid "UserError" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/wizard/sign_in_out.py:0 -#, python-format -msgid "No cost unit defined for this employee !" -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 "" - -#. module: hr_timesheet -#: wizard_field:hr_timesheet.si_so,sign_in,account_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: hr_timesheet -#: model:process.process,name:hr_timesheet.process_process_timesheetprocess0 -msgid "Timesheet Process" -msgstr "" - -#. module: hr_timesheet -#: model:ir.module.module,shortdesc:hr_timesheet.module_meta_information -msgid "Human Resources (Timesheet encoding)" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:0 -#, python-format -msgid "ValidateError" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sat" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Sun" -msgstr "" - -#. module: hr_timesheet -#: xsl:hr.analytical.timesheet:0 -msgid "Sum" -msgstr "" - -#. module: hr_timesheet -#: wizard_button:hr.analytical.timesheet,init,report:0 -#: wizard_button:hr.analytical.timesheet.my,init,report:0 -#: wizard_button:hr.analytical.timesheet_users,init,report:0 -msgid "Print" -msgstr "" - -#. module: hr_timesheet -#: model:product.template,name:hr_timesheet.product_consultant_product_template -msgid "Consultancy - Senior Developer" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:0 -#, python-format -msgid "No analytic journal available for this employee.\nDefine an employee for the selected user and assign an analytic journal." -msgstr "" - -#. module: hr_timesheet -#: model:product.uom,name:hr_timesheet.uom_hour -msgid "Hour" -msgstr "" - -#. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_in:0 -msgid "General Information" -msgstr "" - -#. module: hr_timesheet -#: view:hr.analytic.timesheet:0 -msgid "Timesheet Lines" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "July" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Tue" -msgstr "" - -#. module: hr_timesheet -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: hr_timesheet -#: constraint:product.template:0 -msgid "Error: UOS must be in a different category than the UOM" -msgstr "" - -#. module: hr_timesheet -#: wizard_view:hr.analytical.timesheet_users,init:0 -msgid "Choose Users" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "March" -msgstr "" - -#. module: hr_timesheet -#: model:ir.model,name:hr_timesheet.model_hr_analytic_timesheet -msgid "Timesheet line" -msgstr "" - -#. module: hr_timesheet -#: view:hr.analytic.timesheet:0 -msgid "Total cost" -msgstr "" - -#. module: hr_timesheet -#: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_today_form_my -#: model:ir.ui.menu,name:hr_timesheet.menu_act_hr_timesheet_line_evry1_today_form_my -msgid "My Working Hours of The Day" -msgstr "" - -#. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_in:0 -msgid "Work done in the last period" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "December" -msgstr "" - -#. module: hr_timesheet -#: view:account.analytic.account:0 -msgid "Stats by month" -msgstr "" - -#. module: hr_timesheet -#: view:account.analytic.account:0 -#: wizard_field:hr.analytical.timesheet,init,month:0 -#: wizard_field:hr.analytical.timesheet.my,init,month:0 -#: wizard_field:hr.analytical.timesheet_users,init,month:0 -msgid "Month" -msgstr "" - -#. module: hr_timesheet -#: wizard_field:hr_timesheet.si_so,sign_in,info:0 -msgid "Work Description" -msgstr "" - -#. module: hr_timesheet -#: view:account.analytic.account:0 -msgid "To be invoiced" -msgstr "" - -#. module: hr_timesheet -#: model:ir.actions.report.xml,name:hr_timesheet.report_user_timesheet -#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet -#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet -msgid "Employee timesheet" -msgstr "" - -#. module: hr_timesheet -#: model:ir.actions.wizard,name:hr_timesheet.si_so -#: model:ir.ui.menu,name:hr_timesheet.menu_si_so -msgid "Sign in / Sign out by project" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Fri" -msgstr "" - -#. module: hr_timesheet -#: constraint:product.template:0 -msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "" - -#. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_out:0 -msgid "(Keep empty for current time)" -msgstr "" - -#. module: hr_timesheet -#: view:hr.employee:0 -msgid "Timesheets" -msgstr "" - -#. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_in:0 -msgid "Sign in status" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "August" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "June" -msgstr "" - -#. module: hr_timesheet -#: wizard_field:hr.analytical.timesheet,init,user_id:0 -#: wizard_field:hr.analytical.timesheet.my,init,user_id:0 -msgid "User" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "November" -msgstr "" - -#. module: hr_timesheet -#: wizard_field:hr_timesheet.si_so,sign_in,date:0 -msgid "Closing Date" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "October" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:0 -#, python-format -msgid "No analytic account defined on the project.\nPlease set one or we can not automatically fill the timesheet." -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "January" -msgstr "" - -#. module: hr_timesheet -#: view:account.analytic.account:0 -msgid "Key dates" -msgstr "" - -#. module: hr_timesheet -#: view:account.analytic.account:0 -msgid "Analysis stats" -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 "" - -#. module: hr_timesheet -#: model:ir.actions.report.xml,name:hr_timesheet.report_users_timesheet -#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet_users -#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet_users -msgid "Employees timesheet" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "September" -msgstr "" - -#. module: hr_timesheet -#: model:ir.actions.wizard,name:hr_timesheet.wizard_hr_timesheet_my -#: model:ir.ui.menu,name:hr_timesheet.menu_wizard_hr_timesheet_my -msgid "Print my timesheet" -msgstr "" - -#. module: hr_timesheet -#: view:account.analytic.account:0 -msgid "Analysis summary" -msgstr "" - -#. module: hr_timesheet -#: wizard_button:hr.analytical.timesheet,init,end:0 -#: wizard_button:hr.analytical.timesheet.my,init,end:0 -#: wizard_button:hr.analytical.timesheet_users,init,end:0 -#: wizard_button:hr_timesheet.si_so,sign_in,end:0 -#: wizard_button:hr_timesheet.si_so,sign_out,end:0 -msgid "Cancel" -msgstr "" - -#. module: hr_timesheet -#: view:hr.analytic.timesheet:0 -msgid "Timesheet Line" -msgstr "" - -#. module: hr_timesheet -#: wizard_view:hr.analytical.timesheet,init:0 -#: wizard_view:hr.analytical.timesheet.my,init:0 -msgid "Choose your month" -msgstr "" - -#. module: hr_timesheet -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: hr_timesheet -#: model:product.uom.categ,name:hr_timesheet.uom_categ_wtime -msgid "Working Time" -msgstr "" - -#. module: hr_timesheet -#: wizard_field:hr_timesheet.si_so,sign_out,server_date:0 -msgid "Current Date" -msgstr "" - -#. module: hr_timesheet -#: wizard_field:hr_timesheet.si_so,sign_in,server_date:0 -msgid "Current Server Date" -msgstr "" - -#. module: hr_timesheet -#: field:hr.employee,product_id:0 -msgid "Product" -msgstr "" - -#. module: hr_timesheet -#: view:account.analytic.account:0 -#: wizard_field:hr.analytical.timesheet_users,init,user_ids:0 -msgid "Users" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "May" -msgstr "" - -#. module: hr_timesheet -#: wizard_view:hr_timesheet.si_so,sign_out:0 -msgid "(local time on the server side)" -msgstr "" - -#. module: hr_timesheet -#: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_all_form -#: model:ir.ui.menu,name:hr_timesheet.menu_act_hr_timesheet_line_evry1_all_form -#: model:ir.ui.menu,name:hr_timesheet.menu_act_hr_timesheet_line_today_form -msgid "Working Hours" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "February" -msgstr "" - -#. module: hr_timesheet -#: field:hr.analytic.timesheet,line_id:0 -msgid "Analytic line" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#, python-format -msgid "Thu" -msgstr "" - -#. module: hr_timesheet -#: code:addons/hr_timesheet/report/user_timesheet.py:0 -#: code:addons/hr_timesheet/report/users_timesheet.py:0 -#: selection:hr.analytical.timesheet,init,month:0 -#: selection:hr.analytical.timesheet.my,init,month:0 -#: selection:hr.analytical.timesheet_users,init,month:0 -#, python-format -msgid "April" -msgstr "" - -#. module: hr_timesheet -#: wizard_button:hr_timesheet.si_so,sign_out,si_result:0 -msgid "Start Working" -msgstr "" - -#. module: hr_timesheet -#: constraint:product.product:0 -msgid "Error: Invalid ean code" -msgstr "" - -#. module: hr_timesheet -#: view:account.analytic.account:0 -msgid "Stats by user" -msgstr "" - -#. module: hr_timesheet -#: wizard_field:hr.analytical.timesheet,init,year:0 -#: wizard_field:hr.analytical.timesheet.my,init,year:0 -#: wizard_field:hr.analytical.timesheet_users,init,year:0 -msgid "Year" -msgstr "" - -#. module: hr_timesheet -#: xsl:hr.analytical.timesheet:0 -#: xsl:hr.analytical.timesheet_users:0 -msgid "Total" -msgstr "" - -#. module: hr_timesheet -#: wizard_button:hr_timesheet.si_so,sign_in,so_result:0 -msgid "Change Work" -msgstr "" - diff --git a/addons/hr_timesheet_invoice/i18n/tlh_TLH.po b/addons/hr_timesheet_invoice/i18n/tlh_TLH.po deleted file mode 100644 index b7c3d5474f9..00000000000 --- a/addons/hr_timesheet_invoice/i18n/tlh_TLH.po +++ /dev/null @@ -1,541 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * hr_timesheet_invoice -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: hr_timesheet_invoice -#: view:hr_timesheet_invoice.factor:0 -msgid "Type of invoicing" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "Profit" -msgstr "" - -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Analytic account incomplete" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.wizard,name:hr_timesheet_invoice.account_analytic_profit -#: model:ir.ui.menu,name:hr_timesheet_invoice.print_account_analytic_profit -msgid "Timesheet profit" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "Income" -msgstr "" - -#. module: hr_timesheet_invoice -#: field:hr_timesheet_invoice.factor,customer_name:0 -msgid "Visible name" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:hr.timesheet.invoice.account.analytic.account.cost_ledger.report,init,date1:0 -msgid "Start of period" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:hr.timesheet.invoice.create,init,price:0 -msgid "The cost of each work done will be displayed on the invoice. You probably don't want to check this." -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.wizard,name:hr_timesheet_invoice.hr_timesheet_invoice_create -msgid "Invoice analytic lines" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,time:0 -msgid "Display time in the history of works" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_draft_analytic_accounts -#: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_draft_analytic_accounts -msgid "Draft Analytic Accounts" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:hr.timesheet.final.invoice.create,init,time:0 -#: wizard_field:hr.timesheet.invoice.create,init,time:0 -msgid "Time spent" -msgstr "" - -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_invoiced:0 -msgid "Invoiced Amount" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:account.analytic.account,to_invoice:0 -msgid "Check this field if you plan to automatically generate invoices based on the costs in this analytic account: timesheets, expenses, ...You can configure an automatic invoice rate on analytic accounts." -msgstr "" - -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Partner incomplete" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:hr.timesheet.invoice.create,init,name:0 -msgid "The detail of each work done will be displayed on the invoice" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_view:hr.timesheet.invoice.account.analytic.account.cost_ledger.report,init:0 -msgid "Select period" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "Period to enddate" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_view:hr.timesheet.invoice.create,init:0 -msgid "Force to use a specific product" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "Period from startdate" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:hr.timesheet.invoice.create,init,time:0 -msgid "The time of each work done will be displayed on the invoice" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:hr.timesheet.final.invoice.create,init,balance_product:0 -msgid "Balance product" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.wizard,name:hr_timesheet_invoice.hr_timesheet_final_invoice_create -msgid "Final Invoice" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_view:hr.timesheet.final.invoice.create,init:0 -msgid "Do you want details for each line of the invoices ?" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Date or Code" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_analytic_timesheet_open_tree -#: model:ir.ui.menu,name:hr_timesheet_invoice.menu_hr_analytic_timesheet_tree -msgid "Entries to invoice" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_view:account.analytic.profit,init:0 -msgid "Choose" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Debit" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_button:account.analytic.profit,init,report:0 -#: wizard_button:hr.timesheet.invoice.account.analytic.account.cost_ledger.report,init,report:0 -msgid "Print" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_analytic_accounts -#: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_analytic_accounts -msgid "Open Analytic Accounts" -msgstr "" - -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_view:hr.timesheet.invoice.create,init:0 -msgid "Filter on Accounts" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.report.xml,name:hr_timesheet_invoice.report_analytical_profit -msgid "Timesheet Profit" -msgstr "" - -#. module: hr_timesheet_invoice -#: field:account.analytic.account,pricelist_id:0 -msgid "Sale Pricelist" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,name:0 -msgid "Display detail of work in the invoice line." -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "J.C. or Move name" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Printing date" -msgstr "" - -#. module: hr_timesheet_invoice -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_timesheet_invoice_factor_form -#: model:ir.ui.menu,name:hr_timesheet_invoice.hr_timesheet_invoice_factor_view -msgid "Types of Invoicing" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "Theorical" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_analytic_timesheet_tree_invoiced_my -#: model:ir.ui.menu,name:hr_timesheet_invoice.menu_hr_analytic_timesheet_tree_invoiced_my -msgid "My Uninvoiced Entries" -msgstr "" - -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:0 -#, python-format -msgid "You can not modify an invoiced analytic line!" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:hr.timesheet.final.invoice.create,init,name:0 -#: wizard_field:hr.timesheet.invoice.create,init,name:0 -msgid "Name of entry" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "Employee or Journal Name" -msgstr "" - -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Invoices" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "Currency" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:hr.timesheet.invoice.create,init,product:0 -msgid "Complete this field only if you want to force to use a specific product. Keep empty to use the real product that comes from the cost." -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_analytic_timesheet_tree_invoiced -#: model:ir.ui.menu,name:hr_timesheet_invoice.menu_hr_analytic_timesheet_tree_invoiced -msgid "Uninvoiced Entries" -msgstr "" - -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "At least on line have no product !" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_button:hr.timesheet.final.invoice.create,init,create:0 -#: wizard_button:hr.timesheet.invoice.create,init,create:0 -msgid "Create invoices" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_view:hr.timesheet.final.invoice.create,init:0 -msgid "Invoice Balance amount" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "Invoice rate by user" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:account.analytic.profit,init,date_from:0 -msgid "From" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:account.analytic.account,amount_invoiced:0 -msgid "Total invoiced" -msgstr "" - -#. module: hr_timesheet_invoice -#: view:account.analytic.account:0 -msgid "Status" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Period to" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,balance_product:0 -msgid "The product that will be used to invoice the remaining amount." -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -#: model:ir.actions.report.xml,name:hr_timesheet_invoice.account_analytic_account_cost_ledger -#: model:ir.actions.wizard,name:hr_timesheet_invoice.account_analytic_account_cost_ledger_report -msgid "Cost Ledger" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,date:0 -msgid "Display date in the history of works" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:hr.timesheet.final.invoice.create,init,date:0 -#: wizard_field:hr.timesheet.invoice.create,init,date:0 -msgid "Date" -msgstr "" - -#. module: hr_timesheet_invoice -#: field:hr_timesheet_invoice.factor,factor:0 -msgid "Discount (%)" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "Eff." -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:hr.timesheet.invoice.create,init,accounts:0 -msgid "Analytic Accounts" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Total:" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Credit" -msgstr "" - -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:hr.timesheet.invoice.account.analytic.account.cost_ledger.report,init,date2:0 -msgid "End of period" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Balance" -msgstr "" - -#. module: hr_timesheet_invoice -#: field:account.analytic.account,to_invoice:0 -msgid "Reinvoice Costs" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "Totals:" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:account.analytic.profit,init,date_to:0 -msgid "To" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_view:hr.timesheet.invoice.create,init:0 -msgid "Do you want to show details of work in invoice ?" -msgstr "" - -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the partner and pricelist field in the analytic account:\n%s" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:hr.timesheet.invoice.account.analytic.account.cost_ledger:0 -msgid "Period from" -msgstr "" - -#. module: hr_timesheet_invoice -#: field:account.analytic.account,amount_max:0 -msgid "Max. Invoice Price" -msgstr "" - -#. module: hr_timesheet_invoice -#: field:account.analytic.line,invoice_id:0 -msgid "Invoice" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_button:account.analytic.profit,init,end:0 -#: wizard_button:hr.timesheet.final.invoice.create,init,end:0 -#: wizard_button:hr.timesheet.invoice.account.analytic.account.cost_ledger.report,init,end:0 -#: wizard_button:hr.timesheet.invoice.create,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 -#, python-format -msgid "Balance product needed" -msgstr "" - -#. module: hr_timesheet_invoice -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:account.analytic.profit,init,employee_ids:0 -msgid "Employee" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:hr.timesheet.invoice.create,init,date:0 -msgid "The real date of each work will be displayed on the invoice" -msgstr "" - -#. module: hr_timesheet_invoice -#: help:hr.timesheet.final.invoice.create,init,price:0 -msgid "Display cost of the item you reinvoice" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_view:hr.timesheet.invoice.create,init:0 -msgid "Choose accounts you want to invoice" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:hr.timesheet.invoice.create,init,product:0 -msgid "Product" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "%" -msgstr "" - -#. module: hr_timesheet_invoice -#: field:hr_timesheet_invoice.factor,name:0 -msgid "Internal name" -msgstr "" - -#. module: hr_timesheet_invoice -#: wizard_field:account.analytic.profit,init,journal_ids:0 -msgid "Journal" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -msgid "Units" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.module.module,shortdesc:hr_timesheet_invoice.module_meta_information -msgid "Invoice on analytic lines" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_pending_analytic_accounts -#: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_pending_analytic_accounts -msgid "Pending Analytic Accounts" -msgstr "" - -#. module: hr_timesheet_invoice -#: view:account.analytic.account:0 -#: wizard_view:hr.timesheet.invoice.create,init:0 -msgid "Invoicing Data" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_factor -msgid "Invoice rate" -msgstr "" - -#. module: hr_timesheet_invoice -#: view:hr_timesheet_invoice.factor:0 -msgid "Types of invoicing" -msgstr "" - -#. module: hr_timesheet_invoice -#: field:account.analytic.line,to_invoice:0 -msgid "Invoicing" -msgstr "" - -#. module: hr_timesheet_invoice -#: model:ir.actions.act_window,name:hr_timesheet_invoice.action_open_invoice_analytic_accounts -#: model:ir.ui.menu,name:hr_timesheet_invoice.menu_action_open_invoice_analytic_accounts -msgid "Unclosed Invoiceable Accounts" -msgstr "" - -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 -#, python-format -msgid "Please fill a Balance product in the wizard" -msgstr "" - -#. module: hr_timesheet_invoice -#: rml:account.analytic.profit:0 -#: wizard_field:hr.timesheet.final.invoice.create,init,price:0 -#: wizard_field:hr.timesheet.invoice.create,init,price:0 -msgid "Cost" -msgstr "" - -#. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 -#, python-format -msgid "Please fill in the address field in the partner: %s." -msgstr "" - diff --git a/addons/hr_timesheet_sheet/i18n/tlh_TLH.po b/addons/hr_timesheet_sheet/i18n/tlh_TLH.po deleted file mode 100644 index bc9042e8911..00000000000 --- a/addons/hr_timesheet_sheet/i18n/tlh_TLH.po +++ /dev/null @@ -1,655 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * hr_timesheet_sheet -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: hr_timesheet_sheet -#: model:process.node,note:hr_timesheet_sheet.process_node_review0 -msgid "Review end of day check day is complete" -msgstr "" - -#. module: hr_timesheet_sheet -#: constraint:hr_timesheet_sheet.sheet:0 -msgid "You can not have 2 timesheets that overlaps !\n" -"Please use the menu 'My Current Timesheet' to avoid this problem." -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr.analytic.timesheet,sheet_id:0 -#: field:hr.attendance,sheet_id:0 -#: field:hr_timesheet_sheet.sheet.account,sheet_id:0 -#: field:hr_timesheet_sheet.sheet.day,sheet_id:0 -msgid "Sheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/wizard/wizard_timesheet_current.py:0 -#, python-format -msgid "No employee defined for your user !" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,total_attendance:0 -#: field:hr_timesheet_sheet.sheet,total_attendance_day:0 -#: view:hr_timesheet_sheet.sheet.day:0 -msgid "Total Attendance" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form_my_confirm -#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form_my_confirm -msgid "My timesheets to confirm" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:res.company,timesheet_range:0 -msgid "Timeshet range" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -msgid "Today" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,name:hr_timesheet_sheet.process_transition_confirmtimesheetsheet0 -msgid "Confirm timesheet sheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -#: model:process.node,name:hr_timesheet_sheet.process_node_timesheet0 -#: model:process.node,name:hr_timesheet_sheet.process_node_timesheetconfirming0 -#: model:process.transition,name:hr_timesheet_sheet.process_transition_timesheetdraft0 -msgid "Timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -msgid "Set to Draft" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,note:hr_timesheet_sheet.process_node_attendance0 -msgid "Defines employee's timesheet entry" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_drafttimesheetsheet0 -msgid "Draft Timesheet sheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.wizard,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form_my_current -#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form_my_current -msgid "My Current Timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition.action,name:hr_timesheet_sheet.process_transition_action_validatetimesheet0 -msgid "Validate" -msgstr "" - -#. module: hr_timesheet_sheet -#: selection:res.company,timesheet_range:0 -msgid "Day" -msgstr "" - -#. module: hr_timesheet_sheet -#: selection:hr_timesheet_sheet.sheet,state_attendance:0 -msgid "Present" -msgstr "" - -#. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "UserError" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -#: model:process.transition.action,name:hr_timesheet_sheet.process_transition_action_refusetimesheet0 -msgid "Refuse" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_validatedtimesheet0 -msgid "Validated Timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: constraint:hr_timesheet_sheet.sheet:0 -msgid "You must select a Current date wich is in the timesheet dates !" -msgstr "" - -#. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "You can not sign in from an other date than today" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet.day:0 -msgid "Total Difference" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,name:hr_timesheet_sheet.process_transition_phonecallencoding0 -msgid "Phone call encoding" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_sheet_by_account -msgid "Timesheet by Day" -msgstr "" - -#. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,note:hr_timesheet_sheet.process_node_timesheet0 -msgid "Defines the task work entry into timesheet line" -msgstr "" - -#. module: hr_timesheet_sheet -#: help:res.company,timesheet_max_difference:0 -msgid "Allowed difference between the sign in/out and the timesheet computation for one sheet. Set this to 0 if you do not want any control." -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet.day:0 -msgid "Timesheet by Days" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_confirmtimesheet0 -msgid "timesheet is confirmed at the end of the week / month" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet.account,name:0 -msgid "Analytic Account" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet.day,total_timesheet:0 -msgid "Project Timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,date_from:0 -msgid "Date from" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.process,name:hr_timesheet_sheet.process_process_hrtimesheetprocess0 -msgid "Hr Timesheet Process" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_analyticcost0 -msgid "Analytic cost" -msgstr "" - -#. module: hr_timesheet_sheet -#: selection:hr_timesheet_sheet.sheet,state:0 -msgid "Confirmed" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet.day,total_attendance:0 -#: model:process.node,name:hr_timesheet_sheet.process_node_attendance0 -#: model:process.transition,name:hr_timesheet_sheet.process_transition_attendancetimesheet0 -msgid "Attendance" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -#: model:process.transition.action,name:hr_timesheet_sheet.process_transition_action_draftconfirmtimesheet0 -msgid "Confirm" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,timesheet_ids:0 -msgid "Timesheet lines" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,note:hr_timesheet_sheet.process_node_timesheetline0 -msgid "Encode your timesheet line" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,name:hr_timesheet_sheet.process_transition_confirmtimesheet0 -msgid "Confirm Timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,note:hr_timesheet_sheet.process_node_validatedtimesheet0 -msgid "Control by the project manager" -msgstr "" - -#. module: hr_timesheet_sheet -#: selection:hr_timesheet_sheet.sheet,state:0 -msgid "New" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,note:hr_timesheet_sheet.process_node_timesheetconfirming0 -msgid "Timesheet sheet confirm at the end of the period" -msgstr "" - -#. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#: code:addons/hr_timesheet_sheet/wizard/wizard_timesheet_current.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet.account,total:0 -msgid "Total Time" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_sheet_2_hr_analytic_timesheet -msgid "Timesheet Lines" -msgstr "" - -#. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "Please verify that the total difference of the sheet is lower than %.2f !" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_confirmtimesheetsheet0 -msgid "Confirm timesheet at the end of the period" -msgstr "" - -#. module: hr_timesheet_sheet -#: selection:hr_timesheet_sheet.sheet,state_attendance:0 -msgid "No employee defined" -msgstr "" - -#. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_confirmedtimesheet0 -msgid "Confirmed Timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:res.company:0 -msgid "Configuration" -msgstr "" - -#. module: hr_timesheet_sheet -#: selection:res.company,timesheet_range:0 -msgid "Week" -msgstr "" - -#. module: hr_timesheet_sheet -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -msgid "Daily View" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.model,name:hr_timesheet_sheet.model_hr_timesheet_sheet_sheet_account -#: model:ir.model,name:hr_timesheet_sheet.model_hr_timesheet_sheet_sheet_day -msgid "Timesheets by period" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -msgid "Sign In" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.wizard,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form_department_current -#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form_department_current -msgid "My Department's Timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -msgid "Go to:" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_phonecall0 -msgid "Phone call" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,total_timesheet:0 -#: field:hr_timesheet_sheet.sheet,total_timesheet_day:0 -#: view:hr_timesheet_sheet.sheet.day:0 -msgid "Total Timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,name:hr_timesheet_sheet.process_transition_reviewofwork0 -msgid "Review of work" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_invoiceonwork0 -msgid "Invoice on Work" -msgstr "" - -#. module: hr_timesheet_sheet -#: selection:res.company,timesheet_range:0 -msgid "Month" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,note:hr_timesheet_sheet.process_node_drafttimesheetsheet0 -msgid "Encode Your hours and Sign in / out" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_review0 -#: model:process.transition.action,name:hr_timesheet_sheet.process_transition_action_reviewtimesheet0 -msgid "Review" -msgstr "" - -#. module: hr_timesheet_sheet -#: selection:hr_timesheet_sheet.sheet,state:0 -msgid "Draft" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -#: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form -#: model:ir.module.module,shortdesc:hr_timesheet_sheet.module_meta_information -#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form -#: model:ir.ui.menu,name:hr_timesheet_sheet.next_id_60 -#: view:res.company:0 -msgid "Timesheets" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form_all_confirm -#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form_all_confirm -msgid "Timesheets To Confirm" -msgstr "" - -#. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "You can not sign out from an other date than today" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,state:0 -msgid "Status" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,date_to:0 -msgid "Date to" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,state_attendance:0 -msgid "Current Status" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,name:hr_timesheet_sheet.process_transition_invoiceontimesheet0 -msgid "Invoice on timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,note:hr_timesheet_sheet.process_node_invoiceonwork0 -msgid "Invoice based on timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_sheet_by_day -msgid "Timesheet by Account" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet.day,name:0 -msgid "Date" -msgstr "" - -#. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "You can not modify an entry in a confirmed timesheet !" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,user_id:0 -msgid "User" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_invoiceontimesheet0 -msgid "Creates invoice based on timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form_all_valid -#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form_all_valid -msgid "Timesheets To Validate" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:res.company,timesheet_max_difference:0 -msgid "Timesheet allowed difference" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -#: field:hr_timesheet_sheet.sheet,period_ids:0 -msgid "Period" -msgstr "" - -#. module: hr_timesheet_sheet -#: selection:hr_timesheet_sheet.sheet,state:0 -msgid "Done" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_attendancetimesheet0 -msgid "Attendance entry moves into the timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_createanalyticcose0 -msgid "Creates your analytic cost accoording to quantity" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_timesheetline0 -msgid "Timesheet Line" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet.account:0 -msgid "Timesheet by Accounts" -msgstr "" - -#. module: hr_timesheet_sheet -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "Cannot delete Sheet(s) which are already confirmed !" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_validatetimesheet0 -msgid "Timesheet is validate by project manager." -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,note:hr_timesheet_sheet.process_node_phonecall0 -msgid "Whatever time u spent for phone call" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,name:hr_timesheet_sheet.process_transition_validatetimesheet0 -msgid "Validate Timesheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.wizard,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form_department_confirm -#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form_department_confirm -msgid "My Department's Timesheet to Confirm" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -#: field:hr_timesheet_sheet.sheet,attendances_ids:0 -#: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_sheet_2_hr_attendance -msgid "Attendances" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,name:hr_timesheet_sheet.process_transition_createanalyticcose0 -msgid "Create Analytic cost" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,name:0 -msgid "Description" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -msgid "Sign Out" -msgstr "" - -#. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:0 -#, python-format -msgid "You can not duplicate a timesheet !" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -msgid "By Day" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,total_difference:0 -#: field:hr_timesheet_sheet.sheet,total_difference_day:0 -#: field:hr_timesheet_sheet.sheet.day,total_difference:0 -msgid "Difference" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.model,name:hr_timesheet_sheet.model_hr_timesheet_sheet_sheet -msgid "hr_timesheet_sheet.sheet" -msgstr "" - -#. module: hr_timesheet_sheet -#: selection:hr_timesheet_sheet.sheet,state_attendance:0 -msgid "Absent" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,note:hr_timesheet_sheet.process_node_confirmedtimesheet0 -msgid "At the end of the period (week/month)" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_timesheetdraft0 -msgid "timesheet entry is into draft state." -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.node,note:hr_timesheet_sheet.process_node_analyticcost0 -msgid "Analytic cost is created" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet.account,invoice_rate:0 -msgid "Invoice rate" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_phonecallencoding0 -msgid "Encode how much time u spent on phone call" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_reviewofwork0 -msgid "Review of your work at the end of the day" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,account_ids:0 -msgid "Analytic accounts" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form_my -#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form_my -msgid "My timesheets" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet:0 -msgid "Accept" -msgstr "" - -#. module: hr_timesheet_sheet -#: field:hr_timesheet_sheet.sheet,date_current:0 -msgid "Current date" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_unvalidate -#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_hr_timesheet_sheet_unvalidate -msgid "Unvalidated Timesheets" -msgstr "" - -#. module: hr_timesheet_sheet -#: selection:res.company,timesheet_range:0 -msgid "Year" -msgstr "" - -#. module: hr_timesheet_sheet -#: view:hr_timesheet_sheet.sheet.account:0 -msgid "Total" -msgstr "" - -#. module: hr_timesheet_sheet -#: model:ir.actions.wizard,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form_department_validate -#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form_department_validate -msgid "My Department's Timesheet to Validate" -msgstr "" - diff --git a/addons/idea/i18n/tlh_TLH.po b/addons/idea/i18n/tlh_TLH.po deleted file mode 100644 index e7c8da0497d..00000000000 --- a/addons/idea/i18n/tlh_TLH.po +++ /dev/null @@ -1,368 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * idea -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: idea -#: field:idea.category,name:0 -#: field:idea.idea,category_id:0 -msgid "Category" -msgstr "" - -#. module: idea -#: selection:idea.idea,my_vote:0 -#: selection:idea.vote,score:0 -#: selection:idea.vote.stat,score:0 -msgid "Very Good" -msgstr "" - -#. module: idea -#: view:idea.idea:0 -#: field:idea.idea,stat_vote_ids:0 -msgid "Statistics" -msgstr "" - -#. module: idea -#: model:ir.actions.act_window,name:idea.action_idea_idea_my_idea -#: model:ir.ui.menu,name:idea.menu_idea_idea_my_idea -msgid "My Ideas" -msgstr "" - -#. module: idea -#: selection:idea.idea,state:0 -msgid "Opened" -msgstr "" - -#. module: idea -#: selection:idea.idea,my_vote:0 -#: selection:idea.vote,score:0 -#: selection:idea.vote.stat,score:0 -msgid "Not Voted" -msgstr "" - -#. module: idea -#: model:ir.actions.act_window,name:idea.action_idea_idea_open_my -#: model:ir.ui.menu,name:idea.menu_idea_idea_open_my -msgid "My Open Ideas" -msgstr "" - -#. module: idea -#: model:ir.actions.act_window,name:idea.action_idea_idea -#: model:ir.ui.menu,name:idea.menu_ideas -#: model:ir.ui.menu,name:idea.menu_ideas1 -msgid "Ideas" -msgstr "" - -#. module: idea -#: field:idea.category,child_ids:0 -msgid "Child Categories" -msgstr "" - -#. module: idea -#: view:idea.idea:0 -msgid "New Idea" -msgstr "" - -#. module: idea -#: model:ir.actions.act_window,name:idea.action_idea_category_tree -#: model:ir.ui.menu,name:idea.menu_idea_category_tree -msgid "Ideas by Categories" -msgstr "" - -#. module: idea -#: field:idea.vote,score:0 -#: field:idea.vote.stat,score:0 -msgid "Score" -msgstr "" - -#. module: idea -#: selection:idea.idea,state:0 -msgid "Draft" -msgstr "" - -#. module: idea -#: model:ir.actions.act_window,name:idea.action_idea_vote -msgid "Idea's vote" -msgstr "" - -#. module: idea -#: model:ir.actions.act_window,name:idea.action_idea_vote_stat -msgid "Statistics on Votes" -msgstr "" - -#. module: idea -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: idea -#: model:ir.model,name:idea.model_idea_category -msgid "Category for an idea" -msgstr "" - -#. module: idea -#: model:ir.module.module,shortdesc:idea.module_meta_information -msgid "Idea Manager" -msgstr "" - -#. module: idea -#: model:ir.ui.menu,name:idea.menu_idea_vote_stat -msgid "Vote Statistics" -msgstr "" - -#. module: idea -#: field:idea.idea,state:0 -msgid "Status" -msgstr "" - -#. module: idea -#: selection:idea.idea,my_vote:0 -#: selection:idea.vote,score:0 -#: selection:idea.vote.stat,score:0 -msgid "Good" -msgstr "" - -#. module: idea -#: field:idea.idea,description:0 -msgid "Description" -msgstr "" - -#. module: idea -#: selection:idea.idea,my_vote:0 -#: selection:idea.vote,score:0 -#: selection:idea.vote.stat,score:0 -msgid "Normal" -msgstr "" - -#. module: idea -#: model:ir.ui.menu,name:idea.menu_reporting -msgid "Reporting" -msgstr "" - -#. module: idea -#: model:ir.model,name:idea.model_idea_vote_stat -msgid "Idea Votes Statistics" -msgstr "" - -#. module: idea -#: model:ir.model,name:idea.model_idea_vote -msgid "idea.vote" -msgstr "" - -#. module: idea -#: field:idea.comment,user_id:0 -#: field:idea.vote,user_id:0 -msgid "User" -msgstr "" - -#. module: idea -#: view:idea.idea:0 -msgid "Your comment" -msgstr "" - -#. module: idea -#: model:ir.ui.menu,name:idea.menu_config -msgid "Configuration" -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 "" - -#. module: idea -#: view:idea.stat:0 -msgid "stat" -msgstr "" - -#. module: idea -#: field:idea.idea,my_vote:0 -msgid "My Vote" -msgstr "" - -#. module: idea -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: idea -#: view:idea.vote:0 -msgid "Votes" -msgstr "" - -#. module: idea -#: model:ir.module.module,description:idea.module_meta_information -msgid "This module allows your user to easily and efficiently participate in the innovation of the enterprise. It allows everybody to express ideas about different subjects. Then, others users can comment these ideas and vote for particular ideas. Each idea as a score based on the different votes. The managers can obtain an easy view on best ideas from all the users. Once installed, check the menu 'Ideas' in the 'Tools' main menu." -msgstr "" - -#. module: idea -#: field:idea.comment,create_date:0 -#: field:idea.idea,create_date:0 -msgid "Creation date" -msgstr "" - -#. module: idea -#: field:idea.idea,count_votes:0 -msgid "Count of votes" -msgstr "" - -#. module: idea -#: field:idea.vote.stat,nbr:0 -msgid "Number of Votes" -msgstr "" - -#. module: idea -#: model:ir.model,name:idea.model_idea_idea -msgid "idea.idea" -msgstr "" - -#. module: idea -#: model:ir.actions.act_window,name:idea.action_idea_idea_draft_my -#: model:ir.ui.menu,name:idea.menu_idea_idea_draft_my -msgid "My Draft Ideas" -msgstr "" - -#. module: idea -#: field:idea.idea,vote_ids:0 -msgid "Vote" -msgstr "" - -#. module: idea -#: selection:idea.idea,my_vote:0 -#: selection:idea.vote,score:0 -#: selection:idea.vote.stat,score:0 -msgid "Bad" -msgstr "" - -#. module: idea -#: view:idea.idea:0 -#: model:ir.ui.menu,name:idea.menu_idea_idea -msgid "All Ideas" -msgstr "" - -#. module: idea -#: view:idea.comment:0 -#: view:idea.idea:0 -#: field:idea.idea,comment_ids:0 -#: model:ir.model,name:idea.model_idea_comment -msgid "Comments" -msgstr "" - -#. module: idea -#: field:idea.idea,count_comments:0 -msgid "Count of comments" -msgstr "" - -#. module: idea -#: field:idea.idea,title:0 -msgid "Idea Summary" -msgstr "" - -#. module: idea -#: view:idea.category:0 -msgid "Category of ideas" -msgstr "" - -#. module: idea -#: field:idea.category,summary:0 -msgid "Summary" -msgstr "" - -#. module: idea -#: model:ir.actions.act_window,name:idea.action_idea_idea_categ_open -#: model:ir.actions.act_window,name:idea.action_idea_idea_open -#: model:ir.ui.menu,name:idea.menu_idea_idea_open -msgid "Open Ideas" -msgstr "" - -#. module: idea -#: view:idea.idea:0 -#: view:idea.vote.stat:0 -msgid "vote_stat of ideas" -msgstr "" - -#. module: idea -#: view:idea.comment:0 -#: field:idea.comment,content:0 -#: view:idea.idea:0 -msgid "Comment" -msgstr "" - -#. module: idea -#: field:idea.category,parent_id:0 -msgid "Parent Categories" -msgstr "" - -#. module: idea -#: field:idea.idea,user_id:0 -msgid "Creator" -msgstr "" - -#. module: idea -#: model:ir.ui.menu,name:idea.menu_tools -msgid "Tools" -msgstr "" - -#. module: idea -#: field:idea.comment,idea_id:0 -#: view:idea.idea:0 -#: field:idea.vote,idea_id:0 -#: field:idea.vote.stat,idea_id:0 -msgid "Idea" -msgstr "" - -#. module: idea -#: selection:idea.idea,my_vote:0 -#: selection:idea.vote,score:0 -#: selection:idea.vote.stat,score:0 -msgid "Very Bad" -msgstr "" - -#. module: idea -#: selection:idea.idea,state:0 -msgid "Canceled" -msgstr "" - -#. module: idea -#: model:ir.ui.menu,name:idea.menu_idea_vote -msgid "All Votes" -msgstr "" - -#. module: idea -#: view:idea.idea:0 -msgid "Cancel" -msgstr "" - -#. module: idea -#: view:idea.idea:0 -msgid "Close" -msgstr "" - -#. module: idea -#: field:idea.idea,vote_avg:0 -msgid "Average Score" -msgstr "" - -#. module: idea -#: view:idea.idea:0 -msgid "Open" -msgstr "" - -#. module: idea -#: help:idea.idea,description:0 -msgid "Content of the idea" -msgstr "" - diff --git a/addons/l10n_be/i18n/tlh_TLH.po b/addons/l10n_be/i18n/tlh_TLH.po deleted file mode 100644 index 3146c0f80d1..00000000000 --- a/addons/l10n_be/i18n/tlh_TLH.po +++ /dev/null @@ -1,223 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * l10n_be -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_tiers_receiv -msgid "Tiers - Recevable" -msgstr "" - -#. module: l10n_be -#: wizard_view:list.vat.detail,go:0 -#: wizard_view:wizard.account.xml.vat.declaration,go:0 -msgid "Notification" -msgstr "" - -#. module: l10n_be -#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_1 -msgid "Régime National" -msgstr "" - -#. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_tiers -msgid "Tiers" -msgstr "" - -#. module: l10n_be -#: code:addons/l10n_be/wizard/account_vat_declaration.py:0 -#, python-format -msgid "No VAT Number Associated with Main Company!" -msgstr "" - -#. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_charge -msgid "Charge" -msgstr "" - -#. module: l10n_be -#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_3 -msgid "Régime Intra-Communautaire" -msgstr "" - -#. module: l10n_be -#: wizard_button:list.vat.detail,init,go:0 -#: wizard_button:wizard.account.xml.vat.declaration,init,go:0 -msgid "Create XML" -msgstr "" - -#. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_capitaux -msgid "Capital" -msgstr "" - -#. module: l10n_be -#: wizard_field:list.vat.detail,go,msg:0 -#: wizard_field:wizard.account.xml.vat.declaration,go,msg:0 -msgid "File created" -msgstr "" - -#. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_stock -msgid "Stock et Encours" -msgstr "" - -#. module: l10n_be -#: constraint:account.account.template:0 -msgid "Error ! You can not create recursive account templates." -msgstr "" - -#. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_immo -msgid "Immobilisation" -msgstr "" - -#. module: l10n_be -#: wizard_field:list.vat.detail,go,file_save:0 -#: wizard_field:wizard.account.xml.vat.declaration,go,file_save:0 -msgid "Save File" -msgstr "" - -#. module: l10n_be -#: model:ir.module.module,shortdesc:l10n_be.module_meta_information -msgid "Belgium - Plan Comptable Minimum Normalise" -msgstr "" - -#. module: l10n_be -#: wizard_view:list.vat.detail,init:0 -msgid "Select Fiscal Year" -msgstr "" - -#. module: l10n_be -#: model:ir.actions.wizard,name:l10n_be.wizard_xml_vat_declaration -#: model:ir.ui.menu,name:l10n_be.account_wizard_vat_declaration -msgid "Periodical VAT Declaration" -msgstr "" - -#. module: l10n_be -#: constraint:account.tax.code.template:0 -msgid "Error ! You can not create recursive Tax Codes." -msgstr "" - -#. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_tiers_payable -msgid "Tiers - Payable" -msgstr "" - -#. module: l10n_be -#: wizard_view:wizard.account.xml.vat.declaration,init:0 -msgid "Select Period" -msgstr "" - -#. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_produit -msgid "Produit" -msgstr "" - -#. module: l10n_be -#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_2 -msgid "Régime Extra-Communautaire" -msgstr "" - -#. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_view -msgid "Vue" -msgstr "" - -#. module: l10n_be -#: wizard_button:list.vat.detail,go,end:0 -#: wizard_button:wizard.account.xml.vat.declaration,go,end:0 -msgid "Ok" -msgstr "" - -#. module: l10n_be -#: wizard_view:list.vat.detail,init:0 -msgid "This wizard will create an XML file for Vat details and total invoiced amounts per partner." -msgstr "" - -#. module: l10n_be -#: wizard_field:list.vat.detail,init,limit_amount:0 -msgid "Limit Amount" -msgstr "" - -#. module: l10n_be -#: model:ir.actions.wizard,name:l10n_be.partner_wizard_vat -#: model:ir.ui.menu,name:l10n_be.partner_wizard_vat_menu -msgid "Annual Listing of VAT-Subjected Customers" -msgstr "" - -#. module: l10n_be -#: wizard_field:list.vat.detail,init,fyear:0 -msgid "Fiscal Year" -msgstr "" - -#. module: l10n_be -#: wizard_view:wizard.account.xml.vat.declaration,go:0 -msgid "XML Flie has been Created." -msgstr "" - -#. module: l10n_be -#: code:addons/l10n_be/wizard/account_vat_declaration.py:0 -#, python-format -msgid "Data Insufficient" -msgstr "" - -#. module: l10n_be -#: model:ir.ui.menu,name:l10n_be.menu_finance_belgian_statement -msgid "Belgium Statements" -msgstr "" - -#. module: l10n_be -#: wizard_field:list.vat.detail,init,test_xml:0 -msgid "Test XML file" -msgstr "" - -#. module: l10n_be -#: model:ir.actions.todo,note:l10n_be.config_call_account_template -msgid "Generate Chart of Accounts from a Chart Template. You will be asked to pass the name of the company, the chart template to follow, the no. of digits to generate the code for your accounts and Bank account, currency to create Journals. Thus,the pure copy of chart Template is generated.\n" -"This is the same wizard that runs from Financial Management/Configuration/Financial Accounting/Financial Accounts/Generate Chart of Accounts from a Chart Template." -msgstr "" - -#. module: l10n_be -#: wizard_field:list.vat.detail,init,mand_id:0 -msgid "MandataireId" -msgstr "" - -#. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_tax -msgid "Tax" -msgstr "" - -#. module: l10n_be -#: wizard_field:wizard.account.xml.vat.declaration,init,period:0 -msgid "Period" -msgstr "" - -#. module: l10n_be -#: wizard_view:list.vat.detail,go:0 -msgid "XML File has been Created." -msgstr "" - -#. module: l10n_be -#: model:account.account.type,name:l10n_be.user_type_financiers -msgid "Financier" -msgstr "" - -#. module: l10n_be -#: wizard_button:list.vat.detail,init,end:0 -#: wizard_button:wizard.account.xml.vat.declaration,init,end:0 -msgid "Cancel" -msgstr "" - diff --git a/addons/l10n_chart_uk_minimal/i18n/tlh_TLH.po b/addons/l10n_chart_uk_minimal/i18n/tlh_TLH.po deleted file mode 100644 index 09c092d1f95..00000000000 --- a/addons/l10n_chart_uk_minimal/i18n/tlh_TLH.po +++ /dev/null @@ -1,83 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * l10n_chart_uk_minimal -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: l10n_chart_uk_minimal -#: model:account.account.type,name:l10n_chart_uk_minimal.account_type_receivable -msgid "Receivable" -msgstr "" - -#. module: l10n_chart_uk_minimal -#: model:ir.module.module,description:l10n_chart_uk_minimal.module_meta_information -msgid "This is the base module to manage the accounting chart for United Kingdom in Open ERP." -msgstr "" - -#. module: l10n_chart_uk_minimal -#: constraint:account.account.template:0 -msgid "Error ! You can not create recursive account templates." -msgstr "" - -#. module: l10n_chart_uk_minimal -#: model:account.account.type,name:l10n_chart_uk_minimal.account_type_income -msgid "Income" -msgstr "" - -#. module: l10n_chart_uk_minimal -#: model:account.account.type,name:l10n_chart_uk_minimal.account_type_tax -msgid "Tax" -msgstr "" - -#. module: l10n_chart_uk_minimal -#: model:account.account.type,name:l10n_chart_uk_minimal.account_type_cash -msgid "Cash" -msgstr "" - -#. module: l10n_chart_uk_minimal -#: model:ir.actions.todo,note:l10n_chart_uk_minimal.config_call_account_template_uk_minimal -msgid "Generate Chart of Accounts from a Chart Template. You will be asked to pass the name of the company, the chart template to follow, the no. of digits to generate the code for your accounts and Bank account, currency to create Journals. Thus,the pure copy of chart Template is generated.\n" -" This is the same wizard that runs from Financial Management/Configuration/Financial Accounting/Financial Accounts/Generate Chart of Accounts from a Chart Template." -msgstr "" - -#. module: l10n_chart_uk_minimal -#: model:account.account.type,name:l10n_chart_uk_minimal.account_type_payable -msgid "Payable" -msgstr "" - -#. module: l10n_chart_uk_minimal -#: model:ir.module.module,shortdesc:l10n_chart_uk_minimal.module_meta_information -msgid "United Kingdom - minimal" -msgstr "" - -#. module: l10n_chart_uk_minimal -#: model:account.account.type,name:l10n_chart_uk_minimal.account_type_equity -msgid "Equity" -msgstr "" - -#. module: l10n_chart_uk_minimal -#: constraint:account.tax.code.template:0 -msgid "Error ! You can not create recursive Tax Codes." -msgstr "" - -#. module: l10n_chart_uk_minimal -#: model:account.account.type,name:l10n_chart_uk_minimal.account_type_expense -msgid "Expense" -msgstr "" - -#. module: l10n_chart_uk_minimal -#: model:account.account.type,name:l10n_chart_uk_minimal.account_type_view -msgid "View" -msgstr "" - diff --git a/addons/l10n_fr/i18n/tlh_TLH.po b/addons/l10n_fr/i18n/tlh_TLH.po deleted file mode 100644 index 774c2d59b96..00000000000 --- a/addons/l10n_fr/i18n/tlh_TLH.po +++ /dev/null @@ -1,1036 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * l10n_fr -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Redevances de crédit-bail immobilier" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "période du" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Autres réserves" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "ACTIF IMMOBILISÉ" -msgstr "" - -#. module: l10n_fr -#: model:ir.actions.todo,note:l10n_fr.config_call_account_template_fr_pcg -msgid "Generate Chart of Accounts from a Chart Template. You will be asked to pass the name of the company, the chart template to follow, the no. of digits to generate the code for your accounts and Bank account, currency to create Journals. Thus,the pure copy of chart Template is generated.\n" -" This is the same wizard that runs from Financial Management/Configuration/Financial Accounting/Financial Accounts/Generate Chart of Accounts from a Chart Template." -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Capital [dont versé...]" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Réserves statutaires ou contractuelles" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "nstallations techniques,matériel et outillage" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -#: rml:l10n.fr.cdr:0 -msgid "TOTAL III" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_asset -msgid "Asset" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_income -msgid "Income" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Charges sociales" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "PRODUITS EXCEPTIONNELS" -msgstr "" - -#. module: l10n_fr -#: wizard_view:l10n.fr.bilan.report,init:0 -msgid "Select year" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Différences négatives de change" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Autres charges" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -#: rml:l10n.fr.cdr:0 -msgid "Tenue de Compte :" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_payable -msgid "Payable" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "( IV )" -msgstr "" - -#. module: l10n_fr -#: model:account.fiscal.position.template,name:l10n_fr.fiscal_position_template_4 -msgid "Hors Euro" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Fonds commercial" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "isponibilités" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "+ IV+ V+ VI" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "De participation" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "TOTAL IV" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "D" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "PROVISIONS" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "vances et acomptes" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Autres dettes" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "articipations" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "atières premières et autres approvisionnements" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "P" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_stocks -msgid "Actif circulant" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "T" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Dettes fournisseurs et comptes rattachés" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Provisions pour charges" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_dettes -msgid "Dettes long terme" -msgstr "" - -#. module: l10n_fr -#: wizard_view:l10n.fr.cdr.report,init:0 -msgid "Select period" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "RÉSERVES" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "TOTAL GÉNÉRAL (I + II + III + IV)" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_tax -msgid "Tax" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Dotations aux amortissements, aux dépréciations et aux provisions" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Achats de matières premières et autres approvisionnements" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Avances et acomptes reçus sur commandes en cours" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Quotes-parts de résultat sur opérations faites en commun (II)" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "VALEURS MOBILIÈRES DE PLACEMENT" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -#: rml:l10n.fr.cdr:0 -msgid "TOTAL I" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Autres intérêts et produits assimilés" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Dettes sur immobilisations et comptes rattachés" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Créances clients et comptes rattachés" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Report à nouveau" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "IMMOBILISATIONS INCORPORELLES" -msgstr "" - -#. module: l10n_fr -#: model:account.fiscal.position.template,name:l10n_fr.fiscal_position_template_1 -#: model:account.fiscal.position.template,name:l10n_fr.fiscal_position_template_5 -msgid "France" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "rêts" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Sous-total A - Montant net du chiffre d'affaires" -msgstr "" - -#. module: l10n_fr -#: wizard_button:l10n.fr.bilan.report,init,report:0 -#: wizard_button:l10n.fr.cdr.report,init,report:0 -msgid "Print" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Amortissements et dépréciations" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Net" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "TOTAL I ( A + B )" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "itres immobilisés de l'activité de portefeuille" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "( VI )" -msgstr "" - -#. module: l10n_fr -#: constraint:account.account.template:0 -msgid "Error ! You can not create recursive account templates." -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_provision -msgid "Provisions" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Variation des stocks" -msgstr "" - -#. module: l10n_fr -#: model:ir.actions.report.xml,name:l10n_fr.l10n_fr_pcg_bilan -#: model:ir.actions.wizard,name:l10n_fr.wizard_l10n_fr_pcg_bilan_report -#: rml:l10n.fr.bilan:0 -msgid "Bilan" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Emprunts obligataires convertibles" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "TOTAL ACTIF (" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "CHARGES ( hors taxes )" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Produits nets sur cessions de valeurs mobilières de placement" -msgstr "" - -#. module: l10n_fr -#: field:l10n.fr.line,report_id:0 -msgid "Report" -msgstr "" - -#. module: l10n_fr -#: constraint:account.tax.code.template:0 -msgid "Error ! You can not create recursive Tax Codes." -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_commitment -msgid "Engagements" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Avances et acomptes" -msgstr "" - -#. module: l10n_fr -#: model:account.fiscal.position.template,name:l10n_fr.fiscal_position_template_7 -msgid "TVA sur les encaissements" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Sous-total B" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "C" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "M" -msgstr "" - -#. module: l10n_fr -#: model:ir.module.module,description:l10n_fr.module_meta_information -msgid "This is the module to manage the accounting chart for France in Open ERP.\n" -"\n" -"Credits: Sistheo Zeekom CrysaLEAD\n" -"" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Concessions, brevets, licences,..., droits et valeurs similaires" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Instruments de trésorerie" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Écarts de conversion passif" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_expense -msgid "Expense" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "ACTIF" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "DETTES" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Sur immobilisations : dotations aux amortissements" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "mmobilisations corporelles en cours" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Autres" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Dotation aux amortissements et aux dépréciations" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "PRODUITS D'EXPLOITATION" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Reprises sur provisions, dépréciations (et amortissements) et transferts de charges" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "PRODUITS - CHARGES" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "RÉSULTAT DE L'EXERCICE [bénéfice ou perte]" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Impôts, taxes et versements assimilés" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "roduits intermédiaires et finis" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "utres" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Avances et acomptes versés sur commandes" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "onstructions" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Reprises sur provisions, dépréciations et transferts de charges" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "réances rattachées à des participations" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Dotations aux provisions" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "vous sur votre structure juridique et son fonctionnement comptable." -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Sur opérations en capital" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Charges constatés d'avance" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "TOTAL II" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "CAPITAUX PROPRES" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Frais d'établissement" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Charges à répartir sur plusieurs exercices" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Subventions d'exploitation" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Provisions réglementées" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "PRODUITS (hors taxes)" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Écart d'équivalence" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Primes d'émission, de fusion, d'apport" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "utres titres immobilisés" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Réserves réglementées" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "CHARGES D'EXPLOITATION" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "I + II + III + IV + V" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Attention, pour que votre bilan soit correct, vous devez solder les comptes 120 ou 129 (Résultat de l'exercice précédant) dans un compte de report à nouveau (compte 110 ou 119) ou dans le compte 108. Renseignez" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Vente de marchandises" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "PRODUITS FINANCIERS" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Frais de recherche et de développement" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Autres titres" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Production vendue [biens et services]" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Actions propres" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "D'autres valeurs mobilières et créances de l'actif immobilisé" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "ACTIF CIRCULANT" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "ACTIF - PASSIF" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "apital souscrit - non appelé" -msgstr "" - -#. module: l10n_fr -#: model:ir.model,name:l10n_fr.model_l10n_fr_report -msgid "Report for l10n_fr" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Compte de résultat" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "CRÉANCES" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Sur opérations de gestion" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Redevances de crédit-bail mobilier" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Primes de remboursement des emprunts" -msgstr "" - -#. module: l10n_fr -#: field:l10n.fr.report,code:0 -msgid "Code" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Autres produits" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Participation des salariés aux résultats" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Subventions d'investissement" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "STOCK EN COURS" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Autres achats et charges externes" -msgstr "" - -#. module: l10n_fr -#: wizard_field:l10n.fr.bilan.report,init,fiscalyear:0 -#: wizard_field:l10n.fr.cdr.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: l10n_fr -#: model:account.fiscal.position.template,name:l10n_fr.fiscal_position_template_3 -msgid "DOM-TOM" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Intérêts et charges assimilées" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Immobilisations incorporelles en cours" -msgstr "" - -#. module: l10n_fr -#: wizard_button:l10n.fr.bilan.report,init,end:0 -#: wizard_button:l10n.fr.cdr.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -#: rml:l10n.fr.cdr:0 -msgid "au" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Production immobilisée" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Sur actif circulant : dotations aux dépréciations" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_receivable -msgid "Receivable" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Capital souscrit - appelé , non versé" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -#: rml:l10n.fr.cdr:0 -msgid "( V )" -msgstr "" - -#. module: l10n_fr -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: l10n_fr -#: field:l10n.fr.line,definition:0 -msgid "Definition" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Différences positives de change" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "errains" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Brut" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_immobilisations -msgid "Immobilisations" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "PASSIF" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Écarts de réévaluation" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Production stockée" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -#: rml:l10n.fr.cdr:0 -msgid "Imprimé le :" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_equity -msgid "Equity" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Impôts sur les bénéfices" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "TOTAL DES PRODUITS ( I + II + III + IV )" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Salaires et traitements" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -#: rml:l10n.fr.cdr:0 -msgid ")" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Provisions pour risques" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "n-cours de production [biens et services]" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Sur immobilisations : dotations aux dépréciations" -msgstr "" - -#. module: l10n_fr -#: field:l10n.fr.line,code:0 -msgid "Variable Name" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "TOTAL CHARGES ( I + II + III" -msgstr "" - -#. module: l10n_fr -#: model:ir.actions.report.xml,name:l10n_fr.l10n_fr_pcg_cdr -#: model:ir.actions.wizard,name:l10n_fr.wizard_l10n_fr_pcg_cdr_report -msgid "Compte de resultat" -msgstr "" - -#. module: l10n_fr -#: model:ir.model,name:l10n_fr.model_l10n_fr_line -msgid "Report Lines for l10n_fr" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "A" -msgstr "" - -#. module: l10n_fr -#: model:account.fiscal.position.template,name:l10n_fr.fiscal_position_template_2 -msgid "Zone Euro" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "E" -msgstr "" - -#. module: l10n_fr -#: field:l10n.fr.line,name:0 -#: field:l10n.fr.report,name:0 -msgid "Name" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "I" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_stock -msgid "Stocks" -msgstr "" - -#. module: l10n_fr -#: field:l10n.fr.report,line_ids:0 -msgid "Lines" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_cash -msgid "Cash" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_special -msgid "Comptes spéciaux" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Emprunts et dettes financières diverses" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Produits constatés d'avance" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Charges nettes sur cessions de valeurs mobilières de placement" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "archandises" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Emprunts et dettes auprès des établissements de crédit" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_view -msgid "View" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "CHARGES FINANCIÈRES" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Quotes-parts de résultat sur opérations faites en commun ( II )" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "IMMOBILISATIONS CORPORELLES" -msgstr "" - -#. module: l10n_fr -#: model:account.fiscal.position.template,name:l10n_fr.fiscal_position_template_6 -msgid "TVA sur le débits" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "Achat de marchandises" -msgstr "" - -#. module: l10n_fr -#: model:ir.module.module,shortdesc:l10n_fr.module_meta_information -msgid "France - Plan Comptable Général" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Écarts de conversion actif" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Autres emprunts obligataires" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Réserve légale" -msgstr "" - -#. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_cloture -msgid "Cloture" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "IMMOBILISATIONS FINANCIÉRES" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.cdr:0 -msgid "CHARGES EXCEPTIONNELLES" -msgstr "" - -#. module: l10n_fr -#: rml:l10n.fr.bilan:0 -msgid "Dettes fiscales et sociales" -msgstr "" - diff --git a/addons/l10n_lu/i18n/tlh_TLH.po b/addons/l10n_lu/i18n/tlh_TLH.po deleted file mode 100644 index 8cabc51631d..00000000000 --- a/addons/l10n_lu/i18n/tlh_TLH.po +++ /dev/null @@ -1,119 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * l10n_lu -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: l10n_lu -#: wizard_view:l10n_lu.tax.report.wizard,init:0 -msgid "VAT Legal Declaration" -msgstr "" - -#. module: l10n_lu -#: constraint:account.account.template:0 -msgid "Error ! You can not create recursive account templates." -msgstr "" - -#. module: l10n_lu -#: wizard_button:l10n_lu.tax.report.wizard,init,pdf:0 -msgid "Print Taxes Statement" -msgstr "" - -#. module: l10n_lu -#: wizard_field:l10n_lu.tax.report.wizard,init,tax_code_id:0 -msgid "Company" -msgstr "" - -#. module: l10n_lu -#: model:account.account.type,name:l10n_lu.account_type_income -msgid "Income" -msgstr "" - -#. module: l10n_lu -#: model:account.account.type,name:l10n_lu.account_type_cash_moves -msgid "Cash" -msgstr "" - -#. module: l10n_lu -#: model:ir.actions.todo,note:l10n_lu.config_call_account_template -msgid "Generate Chart of Accounts from a Chart Template. You will be asked to select the company, the chart template, the no. of digits to generate the code for your accounts and Bank account, currency to create Journals. Thus,the pure copy of chart Template is generated.\n" -"This is the same wizard that runs from Financial Management/Configuration/Financial Accounting/Financial Accounts/Generate Chart of Accounts from a Chart Template." -msgstr "" - -#. module: l10n_lu -#: model:ir.actions.report.xml,name:l10n_lu.legal_vat -msgid "Luxembourg VAT Declaration" -msgstr "" - -#. module: l10n_lu -#: model:account.account.type,name:l10n_lu.account_type_liability -msgid "Liability" -msgstr "" - -#. module: l10n_lu -#: model:ir.ui.menu,name:l10n_lu.legal_lu -msgid "Luxembourg" -msgstr "" - -#. module: l10n_lu -#: model:ir.actions.wizard,name:l10n_lu.wizard_print_vat -#: model:ir.ui.menu,name:l10n_lu.legal_lu_vat -msgid "VAT Declaration" -msgstr "" - -#. module: l10n_lu -#: wizard_field:l10n_lu.tax.report.wizard,init,period_id:0 -msgid "Period" -msgstr "" - -#. module: l10n_lu -#: model:account.account.type,name:l10n_lu.account_type_asset -msgid "Asset" -msgstr "" - -#. module: l10n_lu -#: model:account.account.type,name:l10n_lu.account_type_cash_equity -msgid "Equity" -msgstr "" - -#. module: l10n_lu -#: wizard_button:l10n_lu.tax.report.wizard,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: l10n_lu -#: constraint:account.tax.code.template:0 -msgid "Error ! You can not create recursive Tax Codes." -msgstr "" - -#. module: l10n_lu -#: model:ir.module.module,shortdesc:l10n_lu.module_meta_information -msgid "Luxembourg - Plan Comptable Minimum Normalise" -msgstr "" - -#. module: l10n_lu -#: model:account.account.type,name:l10n_lu.account_type_expense -msgid "Expense" -msgstr "" - -#. module: l10n_lu -#: model:account.account.type,name:l10n_lu.account_type_creances -msgid "Créances" -msgstr "" - -#. module: l10n_lu -#: model:account.account.type,name:l10n_lu.account_type_root -msgid "View" -msgstr "" - diff --git a/addons/membership/i18n/tlh_TLH.po b/addons/membership/i18n/tlh_TLH.po deleted file mode 100644 index 78a10264832..00000000000 --- a/addons/membership/i18n/tlh_TLH.po +++ /dev/null @@ -1,506 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * membership -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: membership -#: model:process.transition,name:membership.process_transition_invoicetoassociate0 -msgid "invoice to associate" -msgstr "" - -#. module: membership -#: model:process.process,name:membership.process_process_membershipprocess0 -msgid "Membership Process" -msgstr "" - -#. module: membership -#: selection:membership.membership_line,state:0 -#: selection:res.partner,membership_state:0 -msgid "Paid Member" -msgstr "" - -#. module: membership -#: field:report.partner_member.year,currency:0 -#: field:report.partner_member.year_new,currency:0 -msgid "Currency" -msgstr "" - -#. module: membership -#: model:process.node,note:membership.process_node_setassociation0 -msgid "Set an associate member of partner." -msgstr "" - -#. module: membership -#: model:process.transition,note:membership.process_transition_invoicetopaid0 -msgid "Invoice is be paid." -msgstr "" - -#. module: membership -#: model:process.node,note:membership.process_node_membershipproduct0 -msgid "Define membership product." -msgstr "" - -#. module: membership -#: field:product.product,membership_date_to:0 -msgid "Date to" -msgstr "" - -#. module: membership -#: model:process.transition,name:membership.process_transition_waitingtoinvoice0 -msgid "Waiting to invoice" -msgstr "" - -#. module: membership -#: model:process.transition,name:membership.process_transition_producttomember0 -msgid "Product to member" -msgstr "" - -#. module: membership -#: field:res.partner,associate_member:0 -msgid "Associate member" -msgstr "" - -#. module: membership -#: model:process.node,note:membership.process_node_associatedmember0 -msgid "Member is associated." -msgstr "" - -#. module: membership -#: model:process.transition,note:membership.process_transition_associationpartner0 -msgid "Associated partner." -msgstr "" - -#. module: membership -#: constraint:account.account:0 -msgid "Error ! You can not create recursive accounts." -msgstr "" - -#. module: membership -#: field:product.product,membership_date_from:0 -msgid "Date from" -msgstr "" - -#. module: membership -#: field:membership.membership_line,partner:0 -msgid "Partner" -msgstr "" - -#. module: membership -#: model:ir.actions.act_window,name:membership.action_membership_members_free -#: model:ir.ui.menu,name:membership.menu_members_free -msgid "Free members" -msgstr "" - -#. module: membership -#: model:process.transition,name:membership.process_transition_invoicetopaid0 -msgid "Invoice to paid" -msgstr "" - -#. module: membership -#: view:res.partner:0 -msgid "Partners" -msgstr "" - -#. module: membership -#: field:membership.membership_line,date_from:0 -msgid "From" -msgstr "" - -#. module: membership -#: constraint:membership.membership_line:0 -msgid "Error, this membership product is out of date" -msgstr "" - -#. module: membership -#: wizard_button:wizard_invoice_membership,init,ok:0 -msgid "Confirm" -msgstr "" - -#. module: membership -#: model:process.transition.action,name:membership.process_transition_action_create0 -msgid "Create" -msgstr "" - -#. module: membership -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: membership -#: model:ir.model,name:membership.model_membership_membership_line -msgid "Member line" -msgstr "" - -#. module: membership -#: field:membership.membership_line,state:0 -msgid "State" -msgstr "" - -#. module: membership -#: field:res.partner,membership_start:0 -msgid "Start membership date" -msgstr "" - -#. module: membership -#: model:process.node,name:membership.process_node_paidmember0 -msgid "Paid member" -msgstr "" - -#. module: membership -#: model:ir.model,name:membership.model_report_partner_member_year -#: model:ir.ui.menu,name:membership.menu_report_partner_member_year -#: view:report.partner_member.year:0 -msgid "Membership by Years" -msgstr "" - -#. module: membership -#: model:ir.ui.menu,name:membership.menu_reporting -msgid "Reporting" -msgstr "" - -#. module: membership -#: view:res.partner:0 -msgid "Members" -msgstr "" - -#. module: membership -#: selection:membership.membership_line,state:0 -#: selection:res.partner,membership_state:0 -msgid "Non Member" -msgstr "" - -#. module: membership -#: model:process.node,note:membership.process_node_invoicedmember0 -msgid "Open invoice." -msgstr "" - -#. module: membership -#: model:ir.ui.menu,name:membership.menu_conf -msgid "Configuration" -msgstr "" - -#. module: membership -#: model:process.transition,note:membership.process_transition_producttomember0 -msgid "Define product for membership." -msgstr "" - -#. module: membership -#: model:process.transition,note:membership.process_transition_invoicetoassociate0 -msgid "Invoiced member may be Associated member." -msgstr "" - -#. module: membership -#: constraint:product.template:0 -msgid "Error: UOS must be in a different category than the UOM" -msgstr "" - -#. module: membership -#: model:ir.ui.menu,name:membership.menu_membership_products -#: view:product.product:0 -msgid "Membership products" -msgstr "" - -#. module: membership -#: model:ir.ui.menu,name:membership.menu_members_waiting -msgid "Future members (invoice not confirmed)" -msgstr "" - -#. module: membership -#: model:process.node,name:membership.process_node_setassociation0 -msgid "Set association" -msgstr "" - -#. module: membership -#: model:product.template,name:membership.member_product_1_product_template -msgid "Membership Product - 2" -msgstr "" - -#. module: membership -#: model:product.template,name:membership.member_product_0_product_template -msgid "Membership Product - 1" -msgstr "" - -#. module: membership -#: field:report.partner_member.year,canceled_amount:0 -#: field:report.partner_member.year,canceled_number:0 -#: field:report.partner_member.year_new,canceled_amount:0 -#: field:report.partner_member.year_new,canceled_number:0 -msgid "Canceled" -msgstr "" - -#. module: membership -#: model:product.pricelist,name:membership.list1m -msgid "Member Sale Pricelist" -msgstr "" - -#. module: membership -#: field:report.partner_member.year,invoiced_amount:0 -#: field:report.partner_member.year,invoiced_number:0 -#: field:report.partner_member.year_new,invoiced_amount:0 -#: field:report.partner_member.year_new,invoiced_number:0 -msgid "Invoiced" -msgstr "" - -#. module: membership -#: selection:membership.membership_line,state:0 -#: selection:res.partner,membership_state:0 -msgid "Free Member" -msgstr "" - -#. module: membership -#: model:product.pricelist.version,name:membership.ver1m -msgid "Member Sale Pricelist Version" -msgstr "" - -#. module: membership -#: constraint:product.template:0 -msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "" - -#. module: membership -#: help:res.partner,membership_amount:0 -msgid "The price negociated by the partner" -msgstr "" - -#. module: membership -#: model:process.node,name:membership.process_node_associatedmember0 -msgid "Associated member" -msgstr "" - -#. module: membership -#: field:res.partner,membership_cancel:0 -msgid "Cancel membership date" -msgstr "" - -#. module: membership -#: model:ir.actions.act_window,name:membership.action_membership_products -msgid "Membership Products" -msgstr "" - -#. module: membership -#: model:process.node,note:membership.process_node_paidmember0 -msgid "Membership invoice paid." -msgstr "" - -#. module: membership -#: field:report.partner_member.year,paid_amount:0 -#: field:report.partner_member.year,paid_number:0 -#: field:report.partner_member.year_new,paid_amount:0 -#: field:report.partner_member.year_new,paid_number:0 -msgid "Paid" -msgstr "" - -#. module: membership -#: selection:membership.membership_line,state:0 -#: selection:res.partner,membership_state:0 -msgid "Invoiced Member" -msgstr "" - -#. module: membership -#: model:ir.module.module,shortdesc:membership.module_meta_information -#: model:ir.ui.menu,name:membership.menu_membership -#: view:product.product:0 -#: field:product.product,membership:0 -#: view:res.partner:0 -#: field:res.partner,member_lines:0 -msgid "Membership" -msgstr "" - -#. module: membership -#: help:product.product,membership:0 -msgid "Specify if this product is a membership product" -msgstr "" - -#. module: membership -#: selection:membership.membership_line,state:0 -#: selection:res.partner,membership_state:0 -msgid "Waiting Member" -msgstr "" - -#. module: membership -#: model:process.transition,name:membership.process_transition_associationpartner0 -msgid "Association Partner" -msgstr "" - -#. module: membership -#: model:ir.actions.act_window,name:membership.action_membership_members_invoiced -#: model:ir.ui.menu,name:membership.menu_members_invoiced -msgid "Invoiced members" -msgstr "" - -#. module: membership -#: model:ir.actions.act_window,name:membership.action_membership_members_old -#: model:ir.ui.menu,name:membership.menu_members_old -msgid "Old members" -msgstr "" - -#. module: membership -#: field:res.partner,membership_amount:0 -msgid "Membership amount" -msgstr "" - -#. module: membership -#: wizard_view:wizard_invoice_membership,init:0 -msgid "Choose invoice details" -msgstr "" - -#. module: membership -#: selection:membership.membership_line,state:0 -#: selection:res.partner,membership_state:0 -msgid "Old Member" -msgstr "" - -#. module: membership -#: field:membership.membership_line,date_to:0 -msgid "To" -msgstr "" - -#. module: membership -#: field:report.partner_member.year,waiting_amount:0 -#: field:report.partner_member.year,waiting_number:0 -#: field:report.partner_member.year_new,waiting_amount:0 -#: field:report.partner_member.year_new,waiting_number:0 -msgid "Waiting" -msgstr "" - -#. module: membership -#: model:process.transition,note:membership.process_transition_waitingtoinvoice0 -msgid "Draft invoice is now open." -msgstr "" - -#. module: membership -#: model:ir.actions.act_window,name:membership.action_membership_members_waiting -msgid "Future members" -msgstr "" - -#. module: membership -#: wizard_button:wizard_invoice_membership,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: membership -#: model:ir.actions.act_window,name:membership.action_membership_members_associated -#: model:ir.ui.menu,name:membership.menu_members_associated -msgid "Associated members" -msgstr "" - -#. module: membership -#: model:ir.actions.act_window,name:membership.action_membership_members_paid -#: model:ir.ui.menu,name:membership.menu_members_paid -msgid "Paid members" -msgstr "" - -#. module: membership -#: view:product.product:0 -msgid "Information" -msgstr "" - -#. module: membership -#: field:membership.membership_line,account_invoice_line:0 -msgid "Account Invoice line" -msgstr "" - -#. module: membership -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: membership -#: model:process.node,note:membership.process_node_waitingmember0 -msgid "Draft invoice for membership." -msgstr "" - -#. module: membership -#: selection:membership.membership_line,state:0 -#: selection:res.partner,membership_state:0 -msgid "Canceled Member" -msgstr "" - -#. module: membership -#: model:product.price.type,name:membership.product_price_type_memberprice -#: field:product.template,member_price:0 -msgid "Member Price" -msgstr "" - -#. module: membership -#: field:res.partner,free_member:0 -msgid "Free member" -msgstr "" - -#. module: membership -#: field:res.partner,membership_stop:0 -msgid "Stop membership date" -msgstr "" - -#. module: membership -#: model:ir.actions.act_window,name:membership.action_membership_members -#: model:ir.ui.menu,name:membership.menu_members -msgid "Current members" -msgstr "" - -#. module: membership -#: model:ir.model,name:membership.model_report_partner_member_year_new -#: model:ir.ui.menu,name:membership.menu_report_partner_member_year_new -#: view:report.partner_member.year_new:0 -msgid "New Membership by Years" -msgstr "" - -#. module: membership -#: model:process.node,name:membership.process_node_invoicedmember0 -msgid "Invoiced member" -msgstr "" - -#. module: membership -#: field:membership.membership_line,date_cancel:0 -msgid "Cancel date" -msgstr "" - -#. module: membership -#: model:process.node,name:membership.process_node_waitingmember0 -msgid "Waiting member" -msgstr "" - -#. module: membership -#: model:ir.actions.wizard,name:membership.wizard_invoice_membership -msgid "Invoice Membership" -msgstr "" - -#. module: membership -#: model:process.node,name:membership.process_node_membershipproduct0 -#: wizard_field:wizard_invoice_membership,init,product:0 -msgid "Membership product" -msgstr "" - -#. module: membership -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - -#. module: membership -#: constraint:product.product:0 -msgid "Error: Invalid ean code" -msgstr "" - -#. module: membership -#: field:report.partner_member.year,year:0 -#: field:report.partner_member.year_new,year:0 -msgid "Year" -msgstr "" - -#. module: membership -#: field:res.partner,membership_state:0 -msgid "Current membership state" -msgstr "" - diff --git a/addons/mrp/i18n/tlh_TLH.po b/addons/mrp/i18n/tlh_TLH.po deleted file mode 100644 index 13c56ef9147..00000000000 --- a/addons/mrp/i18n/tlh_TLH.po +++ /dev/null @@ -1,2002 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * mrp -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: mrp -#: field:mrp.production,move_created_ids:0 -msgid "Moves Created" -msgstr "" - -#. module: mrp -#: rml:mrp.production.order:0 -msgid "No. Of Cycles" -msgstr "" - -#. module: mrp -#: help:mrp.procurement.compute.all,init,automatic:0 -msgid "Triggers an automatic procurement for all products that have a virtual stock under 0. You should probably not use this option, we suggest using a MTO configuration on products." -msgstr "" - -#. module: mrp -#: model:ir.module.module,shortdesc:mrp.module_meta_information -msgid "Manufacturing Resource Planning" -msgstr "" - -#. module: mrp -#: field:mrp.bom.revision,indice:0 -msgid "Revision" -msgstr "" - -#. module: mrp -#: 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 "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_procurement_action5 -#: model:ir.ui.menu,name:mrp.menu_mrp_procurement_action5 -msgid "Exceptions Procurements" -msgstr "" - -#. module: mrp -#: view:mrp.routing.workcenter:0 -msgid "Routing Workcenters" -msgstr "" - -#. module: mrp -#: rml:bom.structure:0 -msgid "UoM" -msgstr "" - -#. module: mrp -#: help:mrp.property,composition:0 -msgid "Not used in computations, for information purpose only." -msgstr "" - -#. 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 "" - -#. module: mrp -#: field:mrp.production,picking_id:0 -msgid "Packing list" -msgstr "" - -#. module: mrp -#: model:process.node,name:mrp.process_node_stock0 -msgid "Stockable Stock" -msgstr "" - -#. module: mrp -#: field:mrp.procurement,origin:0 -#: field:mrp.production,origin:0 -msgid "Origin" -msgstr "" - -#. module: mrp -#: model:ir.ui.menu,name:mrp.menu_mrp_configuration -#: view:res.company:0 -msgid "Configuration" -msgstr "" - -#. module: mrp -#: field:mrp.production,name:0 -msgid "Reference" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Finished Products" -msgstr "" - -#. module: mrp -#: wizard_field:mrp.procurement.compute.all,init,automatic:0 -#: wizard_field:mrp.procurement.orderpoint.compute,init,automatic:0 -msgid "Automatic orderpoint" -msgstr "" - -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#, python-format -msgid "No supplier defined for this product !" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Product name" -msgstr "" - -#. module: mrp -#: selection:mrp.bom,method:0 -msgid "Set / Pack" -msgstr "" - -#. module: mrp -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: mrp -#: help:res.company,security_lead:0 -msgid "This is the days added to what you promise to customers for security purpose" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,costs_hour:0 -msgid "Cost per hour" -msgstr "" - -#. module: mrp -#: selection:stock.warehouse.orderpoint,logic:0 -msgid "Best price (not yet active!)" -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -msgid "Product & Location" -msgstr "" - -#. module: mrp -#: view:res.company:0 -msgid "MRP & Logistic Scheduler" -msgstr "" - -#. module: mrp -#: help:mrp.workcenter,capacity_per_cycle:0 -msgid "Number of operation this workcenter can do in parallel. If this workcenter represent a team of 5 workers, the capacity per cycle is 5." -msgstr "" - -#. module: mrp -#: wizard_button:product.product.procurement,init,create:0 -msgid "Ask New Products" -msgstr "" - -#. module: mrp -#: model:ir.ui.menu,name:mrp.menu_mrp_reordering -msgid "Automatic Procurements" -msgstr "" - -#. module: mrp -#: wizard_field:change_production_qty,confirm,product_qty:0 -#: field:mrp.bom,product_qty:0 -#: field:mrp.production,product_qty:0 -#: field:mrp.production,product_uos_qty:0 -#: field:mrp.production.product.line,product_qty:0 -msgid "Product Qty" -msgstr "" - -#. module: mrp -#: field:mrp.production,move_lines:0 -msgid "Products Consummed" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,costs_cycle_account_id:0 -msgid "Cycle Account" -msgstr "" - -#. module: mrp -#: view:mrp.workcenter:0 -msgid "Capacity Information" -msgstr "" - -#. module: mrp -#: selection:mrp.production,state:0 -msgid "Packing Exception" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_orderrfq0 -msgid "A purchase order is created for a sub-contracting demand." -msgstr "" - -#. module: mrp -#: rml:mrp.production.order:0 -msgid "Destination Location" -msgstr "" - -#. module: mrp -#: view:mrp.workcenter:0 -msgid "Analytic Accounting" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_servicemts0 -msgid "Do nothing" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "products" -msgstr "" - -#. module: mrp -#: rml:mrp.production.order:0 -msgid "Partner Ref" -msgstr "" - -#. module: mrp -#: help:mrp.procurement.orderpoint.compute,init,automatic:0 -msgid "If the stock of a product is under 0, it will act like an orderpoint" -msgstr "" - -#. module: mrp -#: selection:mrp.workcenter.load,init,measure_unit:0 -msgid "Amount in hours" -msgstr "" - -#. module: mrp -#: field:mrp.production,product_lines:0 -msgid "Scheduled goods" -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_producttostockrules0 -msgid "you can see the minimum stock rules from product" -msgstr "" - -#. module: mrp -#: selection:mrp.bom,type:0 -msgid "Sets / Phantom" -msgstr "" - -#. module: mrp -#: wizard_view:mrp.procurement.compute,init:0 -msgid "This wizard will schedule procurements." -msgstr "" - -#. module: mrp -#: field:mrp.bom,position:0 -msgid "Internal Ref." -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -#: field:mrp.procurement,state:0 -#: field:mrp.production,state:0 -msgid "Status" -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_stockproduction0 -msgid "Stockable Production Order" -msgstr "" - -#. module: mrp -#: help:mrp.bom,position:0 -msgid "Reference to a position in an external plan." -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_stockrfq0 -msgid "Stockable Request" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Workcenter name" -msgstr "" - -#. module: mrp -#: model:process.node,name:mrp.process_node_serviceonorder0 -msgid "Service on Order" -msgstr "" - -#. module: mrp -#: help:stock.warehouse.orderpoint,product_max_qty:0 -#: help:stock.warehouse.orderpoint,product_min_qty:0 -msgid "When the virtual stock goes belong the Min Quantity, Open ERP generates a procurement to bring the virtual stock to the Max Quantity." -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_stockmts0 -msgid "Stockable Make to Stock" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_production_action -#: model:ir.ui.menu,name:mrp.menu_mrp_production_action -#: view:mrp.production:0 -msgid "Production Orders" -msgstr "" - -#. module: mrp -#: rml:bom.structure:0 -#: field:mrp.procurement,product_qty:0 -#: rml:mrp.production.order:0 -#: wizard_field:product.product.procurement,init,qty:0 -msgid "Quantity" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,priority:0 -#: selection:mrp.production,priority:0 -msgid "Not urgent" -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_procureserviceproduct0 -msgid "Procure Service Product" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Confirm Production" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Product Quantity" -msgstr "" - -#. module: mrp -#: model:process.node,name:mrp.process_node_purchaseprocure0 -#: field:stock.move,procurements:0 -msgid "Procurements" -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_mrp_production_product_line -msgid "Production scheduled products" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,timesheet_id:0 -msgid "Working Time" -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -msgid "Details" -msgstr "" - -#. module: mrp -#: model:process.process,name:mrp.process_process_procurementprocess0 -msgid "Procurement Process" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,priority:0 -#: selection:mrp.production,priority:0 -msgid "Urgent" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Product Standard Price" -msgstr "" - -#. module: mrp -#: help:mrp.bom,product_rounding:0 -msgid "Rounding applied on the product quantity. For integer only values, put 1.0" -msgstr "" - -#. module: mrp -#: rml:mrp.production.order:0 -msgid "Bill Of Material" -msgstr "" - -#. module: mrp -#: help:mrp.routing,location_id:0 -msgid "Keep empty if you produce at the location where the finished products are needed.Set a location if you produce at a fixed location. This can be a partner location if you subcontract the manufacturing operations." -msgstr "" - -#. module: mrp -#: field:mrp.procurement,move_id:0 -msgid "Reservation" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.action2 -msgid "Bill of Materials Structure" -msgstr "" - -#. module: mrp -#: wizard_field:product.product.procurement,init,product_id:0 -msgid "product" -msgstr "" - -#. module: mrp -#: selection:mrp.property,composition:0 -msgid "max" -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_producttostockrules0 -msgid "Product to stock rules" -msgstr "" - -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#, python-format -msgid "from stock: products assigned." -msgstr "" - -#. module: mrp -#: wizard_button:product_price,init,price:0 -msgid "Print product price" -msgstr "" - -#. module: mrp -#: wizard_view:product.product.procurement,done:0 -msgid "Make Procurement" -msgstr "" - -#. module: mrp -#: field:mrp.bom.revision,date:0 -msgid "Modification Date" -msgstr "" - -#. module: mrp -#: help:mrp.workcenter,costs_cycle_account_id:0 -#: help:mrp.workcenter,costs_hour_account_id:0 -msgid "Complete this only if you want automatic analytic accounting entries on production orders." -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_stockproduction0 -msgid "If Procure method is Make to order and supply method is produce" -msgstr "" - -#. module: mrp -#: field:res.company,po_lead:0 -msgid "Purchase Lead Time" -msgstr "" - -#. module: mrp -#: field:mrp.routing,location_id:0 -msgid "Production Location" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Change Qty" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Force Reservation" -msgstr "" - -#. module: mrp -#: field:mrp.bom.revision,author_id:0 -msgid "Author" -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_stockproduct0 -msgid "Stockable Product Stock" -msgstr "" - -#. module: mrp -#: field:mrp.bom,product_uos:0 -#: field:mrp.production.product.line,product_uos:0 -msgid "Product UOS" -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_productionprocureproducts0 -msgid "Production Procure Products" -msgstr "" - -#. module: mrp -#: model:process.process,name:mrp.process_process_serviceproductprocess0 -msgid "Service Product Process" -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_purchaseprocure0 -msgid "Procurement convert into the draft purchase order." -msgstr "" - -#. module: mrp -#: field:mrp.procurement,message:0 -msgid "Latest error" -msgstr "" - -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#, python-format -msgid "from stock and no minimum orderpoint rule defined" -msgstr "" - -#. module: mrp -#: field:mrp.bom,bom_lines:0 -msgid "BoM Lines" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,time_start:0 -msgid "Time before prod." -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_mrp_routing_workcenter -msgid "Routing workcenter usage" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Consumed Products" -msgstr "" - -#. module: mrp -#: constraint:mrp.bom:0 -msgid "Error ! You can not create recursive BoM." -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_stockmts0 -#: model:process.transition,note:mrp.process_transition_stockrfq0 -msgid "If Product type is Stockable and procure method is make to stock" -msgstr "" - -#. module: mrp -#: field:res.company,manufacturing_lead:0 -msgid "Manufacturity Lead Time" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_procurement_action4 -#: model:ir.ui.menu,name:mrp.menu_mrp_procurement_action4 -msgid "Exceptions Procurements to Fix" -msgstr "" - -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#, python-format -msgid "No BoM defined for this product !" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,state:0 -msgid "Ready" -msgstr "" - -#. module: mrp -#: view:mrp.routing:0 -msgid "Workcenter Operations" -msgstr "" - -#. 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 "" - -#. module: mrp -#: help:mrp.workcenter,time_efficiency:0 -msgid "Factor that multiplies all times expressed in the workcenter." -msgstr "" - -#. module: mrp -#: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." -msgstr "" - -#. module: mrp -#: field:mrp.production,date_finnished:0 -msgid "End Date" -msgstr "" - -#. module: mrp -#: help:mrp.production,picking_id:0 -msgid "This is the internal picking list take bring the raw materials to the production plan." -msgstr "" - -#. module: mrp -#: selection:mrp.production,state:0 -msgid "In Production" -msgstr "" - -#. module: mrp -#: field:stock.warehouse.orderpoint,qty_multiple:0 -msgid "Qty Multiple" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,state:0 -msgid "Waiting" -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_mrp_routing -#: field:mrp.bom,routing_id:0 -#: field:mrp.production,routing_id:0 -#: view:mrp.routing:0 -#: model:process.node,name:mrp.process_node_routing0 -msgid "Routing" -msgstr "" - -#. module: mrp -#: wizard_button:mrp.workcenter.load,init,report:0 -msgid "Print" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,type:0 -msgid "Type" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_stockproduct0 -#: model:process.node,note:mrp.process_node_stockproduct1 -msgid "For stockable and consumable" -msgstr "" - -#. module: mrp -#: selection:mrp.workcenter.load,init,time_unit:0 -msgid "Per month" -msgstr "" - -#. module: mrp -#: field:mrp.procurement,product_uos_qty:0 -msgid "UoS Quantity" -msgstr "" - -#. module: mrp -#: rml:bom.structure:0 -msgid "Product Name" -msgstr "" - -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: mrp -#: rml:mrp.production.order:0 -msgid "Printing date" -msgstr "" - -#. module: mrp -#: model:process.node,name:mrp.process_node_orderrfq0 -#: model:process.node,name:mrp.process_node_rfq0 -msgid "RFQ" -msgstr "" - -#. module: mrp -#: field:mrp.bom,revision_type:0 -msgid "indice type" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Hours Cost" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_production0 -msgid "Production orders are created for the product manufacturing." -msgstr "" - -#. module: mrp -#: rml:mrp.production.order:0 -msgid "WorkCenter" -msgstr "" - -#. module: mrp -#: field:stock.warehouse.orderpoint,product_min_qty:0 -msgid "Min Quantity" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Production orders" -msgstr "" - -#. module: mrp -#: field:mrp.bom,child_complete_ids:0 -#: field:mrp.bom,child_ids:0 -msgid "BoM Hyerarchy" -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -msgid "Procurement Lines" -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_servicemts0 -msgid "If Product type is service and procure method is Make to stock" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_serviceproduct0 -#: model:process.node,note:mrp.process_node_serviceproduct1 -msgid "If Product type is service" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "SUBTOTAL" -msgstr "" - -#. module: mrp -#: field:res.company,security_lead:0 -msgid "Security Days" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -#: field:mrp.production,cycle_total:0 -msgid "Total Cycles" -msgstr "" - -#. module: mrp -#: selection:mrp.production,state:0 -msgid "Ready to Produce" -msgstr "" - -#. module: mrp -#: field:mrp.bom.revision,name:0 -msgid "Modification name" -msgstr "" - -#. module: mrp -#: field:mrp.bom,type:0 -msgid "BoM Type" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,state:0 -msgid "Exception" -msgstr "" - -#. module: mrp -#: wizard_view:product.product.procurement,init:0 -msgid "This wizard will planify the procurement for this product. This procurement may generate task, production orders or purchase orders." -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_mts0 -msgid "The system waits for requested products in stock." -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_servicemto0 -msgid "Serivce Stockable Order" -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_minimumstockprocure0 -msgid "From minimum stock rules, it goes for procure product." -msgstr "" - -#. module: mrp -#: model:process.node,name:mrp.process_node_stockproduct0 -#: model:process.node,name:mrp.process_node_stockproduct1 -msgid "Stockable Product" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Production done" -msgstr "" - -#. module: mrp -#: rml:bom.structure:0 -#: field:mrp.bom,code:0 -#: field:mrp.routing,code:0 -#: field:mrp.workcenter,code:0 -msgid "Code" -msgstr "" - -#. module: mrp -#: rml:mrp.production.order:0 -msgid "No. Of Hours" -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_mrp_property_group -#: field:mrp.property,group_id:0 -#: field:mrp.property.group,name:0 -msgid "Property Group" -msgstr "" - -#. module: mrp -#: field:mrp.bom,bom_id:0 -msgid "Parent BoM" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Unit Product Price" -msgstr "" - -#. module: mrp -#: rml:mrp.production.order:0 -msgid "Qty" -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -msgid "References" -msgstr "" - -#. module: mrp -#: wizard_button:change_production_qty,confirm,end:0 -#: view:mrp.procurement:0 -#: selection:mrp.procurement,state:0 -#: wizard_button:mrp.procurement.compute,init,end:0 -#: wizard_button:mrp.procurement.compute.all,init,end:0 -#: wizard_button:mrp.procurement.orderpoint.compute,init,end:0 -#: view:mrp.production:0 -#: wizard_button:mrp.workcenter.load,init,end:0 -#: wizard_button:product.product.procurement,init,end:0 -#: wizard_button:product_price,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: mrp -#: field:mrp.production,move_prod_id:0 -msgid "Move product" -msgstr "" - -#. module: mrp -#: selection:mrp.workcenter,type:0 -msgid "Machine" -msgstr "" - -#. module: mrp -#: model:process.node,name:mrp.process_node_servicemts0 -msgid "Make to stock" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,name:0 -msgid "Workcenter Name" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Start Production" -msgstr "" - -#. module: mrp -#: selection:mrp.property,composition:0 -msgid "min" -msgstr "" - -#. module: mrp -#: help:mrp.workcenter,note:0 -msgid "Description of the workcenter. Explain here what's a cycle according to this workcenter." -msgstr "" - -#. module: mrp -#: rml:bom.structure:0 -msgid "-" -msgstr "" - -#. module: mrp -#: selection:mrp.workcenter,type:0 -msgid "Human Resource" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_workcenter_action -#: model:ir.ui.menu,name:mrp.menu_mrp_workcenter_action -#: field:mrp.routing,workcenter_lines:0 -msgid "Workcenters" -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -msgid "UOM" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,procure_method:0 -msgid "on order" -msgstr "" - -#. 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 "" - -#. module: mrp -#: field:mrp.production.workcenter.line,cycle:0 -msgid "Nbr of cycle" -msgstr "" - -#. module: mrp -#: field:mrp.bom,name:0 -#: field:mrp.procurement,name:0 -#: rml:mrp.production.order:0 -#: field:mrp.production.product.line,name:0 -#: field:mrp.production.workcenter.line,name:0 -#: field:mrp.property,name:0 -#: field:mrp.routing,name:0 -#: field:mrp.routing.workcenter,name:0 -#: field:stock.warehouse.orderpoint,name:0 -msgid "Name" -msgstr "" - -#. module: mrp -#: model:ir.actions.wizard,name:mrp.product_procurement_wizard -msgid "Create Procurement" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Product uom" -msgstr "" - -#. module: mrp -#: field:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of Cycle" -msgstr "" - -#. module: mrp -#: wizard_field:mrp.workcenter.load,init,measure_unit:0 -msgid "Amount measuring unit" -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -msgid "Run procurement" -msgstr "" - -#. 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 "" - -#. module: mrp -#: field:mrp.workcenter,time_efficiency:0 -msgid "Time Efficiency" -msgstr "" - -#. module: mrp -#: help:res.company,manufacturing_lead:0 -msgid "Security days for each manufacturing operation." -msgstr "" - -#. module: mrp -#: wizard_view:mrp.procurement.compute.all,init:0 -msgid "Scheduler Parameters" -msgstr "" - -#. 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 "" - -#. module: mrp -#: selection:mrp.workcenter.load,init,measure_unit:0 -msgid "Amount in cycles" -msgstr "" - -#. module: mrp -#: field:mrp.production,location_dest_id:0 -msgid "Finished Products Location" -msgstr "" - -#. module: mrp -#: wizard_field:product.product.procurement,init,uom_id:0 -msgid "Unit of Measure" -msgstr "" - -#. module: mrp -#: field:mrp.procurement,procure_method:0 -msgid "Procurement Method" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,costs_journal_id:0 -msgid "Analytic Journal" -msgstr "" - -#. module: mrp -#: selection:mrp.workcenter.load,init,time_unit:0 -msgid "Per week" -msgstr "" - -#. module: mrp -#: wizard_button:mrp.procurement.compute,init,compute:0 -#: wizard_button:mrp.procurement.compute.all,init,compute:0 -#: wizard_button:mrp.procurement.orderpoint.compute,init,compute:0 -msgid "Compute Procurements" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_stock0 -msgid "Wait for available products for reservation" -msgstr "" - -#. module: mrp -#: wizard_button:change_production_qty,confirm,validate:0 -msgid "Validate" -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_purchaseprocure0 -msgid "Procurement Purchase" -msgstr "" - -#. module: mrp -#: field:mrp.production.workcenter.line,hour:0 -msgid "Nbr of hour" -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_mrp_bom -#: view:mrp.bom:0 -#: field:mrp.production,bom_id:0 -msgid "Bill of Material" -msgstr "" - -#. module: mrp -#: wizard_view:mrp.workcenter.load,init:0 -msgid "Select time unit" -msgstr "" - -#. module: mrp -#: wizard_field:product_price,init,number:0 -msgid "Number of products to produce" -msgstr "" - -#. module: mrp -#: help:mrp.production,location_dest_id:0 -msgid "Location where the system will stock the finished products." -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_billofmaterialrouting0 -msgid "Material routing" -msgstr "" - -#. module: mrp -#: selection:mrp.workcenter.load,init,time_unit:0 -msgid "Day by day" -msgstr "" - -#. module: mrp -#: model:process.node,name:mrp.process_node_productminimumstockrule0 -msgid "Minimum stock rule" -msgstr "" - -#. module: mrp -#: view:mrp.bom:0 -msgid "Revisions" -msgstr "" - -#. module: mrp -#: field:mrp.bom,product_efficiency:0 -msgid "Product Efficiency" -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_stock_warehouse_orderpoint -msgid "Orderpoint minimum rule" -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_servicemts0 -msgid "Service Make to Stock" -msgstr "" - -#. module: mrp -#: field:mrp.production,sale_ref:0 -msgid "Sale Ref" -msgstr "" - -#. module: mrp -#: field:mrp.procurement,priority:0 -#: field:mrp.production,priority:0 -#: rml:mrp.production.order:0 -msgid "Priority" -msgstr "" - -#. module: mrp -#: field:mrp.procurement,location_id:0 -#: field:stock.warehouse.orderpoint,location_id:0 -msgid "Location" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_procurement_new -#: model:ir.ui.menu,name:mrp.menu_mrp_procurement_new -msgid "New Procurement" -msgstr "" - -#. module: mrp -#: rml:mrp.production.order:0 -msgid "Production Order N° :" -msgstr "" - -#. module: mrp -#: selection:mrp.workcenter,type:0 -msgid "Tool" -msgstr "" - -#. module: mrp -#: help:mrp.production,location_src_id:0 -msgid "Location where the system will look for products used in raw materials." -msgstr "" - -#. module: mrp -#: field:mrp.production,date_planned_date:0 -#: rml:mrp.production.order:0 -#: wizard_field:product.product.procurement,init,date_planned:0 -msgid "Planned Date" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_purchaseprocure0 -msgid "Procurement orders" -msgstr "" - -#. module: mrp -#: model:process.node,name:mrp.process_node_mts0 -msgid "Make to Stock" -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_servicemto0 -msgid "If product type is service and procure method is Make to order" -msgstr "" - -#. module: mrp -#: field:res.company,schedule_range:0 -msgid "Scheduler Range" -msgstr "" - -#. module: mrp -#: field:stock.warehouse.orderpoint,product_max_qty:0 -msgid "Max Quantity" -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_mrp_procurement -#: view:mrp.procurement:0 -msgid "Procurement" -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 "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_minimumstockprocure0 -msgid "Minimum Stock Procure" -msgstr "" - -#. module: mrp -#: help:res.company,po_lead:0 -msgid "This is the leads/security time for each purchase order." -msgstr "" - -#. module: mrp -#: view:mrp.bom:0 -msgid "BoM Structure" -msgstr "" - -#. module: mrp -#: field:mrp.production,date_start:0 -msgid "Start Date" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,costs_hour_account_id:0 -msgid "Hour Account" -msgstr "" - -#. module: mrp -#: selection:mrp.bom,revision_type:0 -msgid "alphabetical indices" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_productionorder0 -msgid "Procurement for raw materials." -msgstr "" - -#. module: mrp -#: field:mrp.procurement,note:0 -#: rml:mrp.production.order:0 -msgid "Note" -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_procurestockableproduct0 -msgid "Procure Stockable Product" -msgstr "" - -#. module: mrp -#: field:mrp.bom,method:0 -msgid "Method" -msgstr "" - -#. module: mrp -#: wizard_view:product_price,init:0 -msgid "Paid ?" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_routing0 -msgid "Define a routing to describe the manufacturing steps." -msgstr "" - -#. module: mrp -#: field:mrp.bom,active:0 -#: field:mrp.routing,active:0 -#: field:mrp.workcenter,active:0 -#: field:stock.warehouse.orderpoint,active:0 -msgid "Active" -msgstr "" - -#. module: mrp -#: model:process.node,name:mrp.process_node_procureproducts0 -msgid "Procure Products" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_property_action -#: model:ir.ui.menu,name:mrp.menu_mrp_property_action -#: model:ir.ui.menu,name:mrp.menu_mrp_property_group_action_prop -#: view:mrp.bom:0 -#: field:mrp.bom,property_ids:0 -#: view:mrp.procurement:0 -#: field:mrp.procurement,property_ids:0 -#: view:mrp.property:0 -msgid "Properties" -msgstr "" - -#. module: mrp -#: field:mrp.procurement,date_planned:0 -#: field:mrp.production,date_planned:0 -msgid "Scheduled date" -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -#: view:mrp.production:0 -msgid "Extra Information" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_billofmaterial0 -msgid "Define the product structure, with sub-products and/or components." -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_minimumstockrule0 -msgid "Procurement is created if the product quantity is lower than the minimum limit." -msgstr "" - -#. module: mrp -#: field:mrp.procurement,date_close:0 -msgid "Date Closed" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,costs_general_account_id:0 -msgid "General Account" -msgstr "" - -#. module: mrp -#: field:mrp.property,composition:0 -msgid "Properties composition" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_production_action4 -#: model:ir.ui.menu,name:mrp.menu_production_orders_waiting4 -msgid "Production Orders Waiting Products" -msgstr "" - -#. module: mrp -#: rml:mrp.production.order:0 -msgid "SO Number" -msgstr "" - -#. module: mrp -#: model:ir.actions.wizard,name:mrp.wizard_change_production_qty -msgid "Change Product Qty." -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,state:0 -#: selection:mrp.production,state:0 -msgid "Done" -msgstr "" - -#. module: mrp -#: help:stock.warehouse.orderpoint,qty_multiple:0 -msgid "The procurement quantity will by rounded up to this multiple." -msgstr "" - -#. module: mrp -#: field:stock.warehouse.orderpoint,logic:0 -msgid "Reordering Mode" -msgstr "" - -#. module: mrp -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_procureproducts0 -msgid "Central document to procure products" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_production_action3 -#: model:ir.ui.menu,name:mrp.menu_mrp_production_action3 -msgid "Production Orders in Progress" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.act_product_product_2_stock_warehouse_orderpoint -#: model:ir.actions.act_window,name:mrp.act_stock_warehouse_2_stock_warehouse_orderpoint -#: model:ir.actions.act_window,name:mrp.action_orderpoint_form -#: model:ir.ui.menu,name:mrp.menu_action_orderpoint_form -#: view:stock.warehouse.orderpoint:0 -msgid "Minimum Stock Rules" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,capacity_per_cycle:0 -msgid "Capacity per Cycle" -msgstr "" - -#. module: mrp -#: field:mrp.bom,product_id:0 -#: field:mrp.procurement,product_id:0 -#: field:mrp.production,product_id:0 -#: rml:mrp.production.order:0 -#: field:mrp.production.product.line,product_id:0 -#: field:stock.warehouse.orderpoint,product_id:0 -msgid "Product" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -#: field:mrp.production,hour_total:0 -msgid "Total Hours" -msgstr "" - -#. module: mrp -#: field:mrp.production,location_src_id:0 -msgid "Raw Materials Location" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.action_product_bom_structure -msgid "Product BoM Structure" -msgstr "" - -#. module: mrp -#: field:mrp.bom,product_uom:0 -#: field:mrp.production,product_uom:0 -#: field:mrp.production,product_uos:0 -#: field:mrp.production.product.line,product_uom:0 -#: field:stock.warehouse.orderpoint,product_uom:0 -msgid "Product UOM" -msgstr "" - -#. module: mrp -#: help:mrp.procurement,origin:0 -msgid "Reference of the document that created this procurement.\n" -"This is automatically completed by Open ERP." -msgstr "" - -#. module: mrp -#: view:mrp.production.lot.line:0 -msgid "Production Products" -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_stockproduct0 -msgid "Product type is Stockable and procure method is make to stock" -msgstr "" - -#. module: mrp -#: help:mrp.bom,date_start:0 -#: help:mrp.bom,date_stop:0 -msgid "Validity of this BoM or component. Keep empty if it's always valid." -msgstr "" - -#. module: mrp -#: field:mrp.procurement,product_uos:0 -msgid "Product UoS" -msgstr "" - -#. module: mrp -#: field:mrp.procurement,product_uom:0 -msgid "Product UoM" -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_mrp_workcenter -#: field:mrp.production.workcenter.line,workcenter_id:0 -#: field:mrp.routing.workcenter,workcenter_id:0 -#: view:mrp.workcenter:0 -msgid "Workcenter" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,priority:0 -#: selection:mrp.production,priority:0 -msgid "Very Urgent" -msgstr "" - -#. module: mrp -#: field:mrp.procurement,purchase_id:0 -#: field:stock.warehouse.orderpoint,procurement_id:0 -msgid "Purchase Order" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Production Workcenters" -msgstr "" - -#. module: mrp -#: view:mrp.property.group:0 -msgid "Properties categories" -msgstr "" - -#. module: mrp -#: help:mrp.procurement,procure_method:0 -msgid "If you encode manually a procurement, you probably want to use a make to order method." -msgstr "" - -#. module: mrp -#: rml:mrp.production.order:0 -msgid "Source Location" -msgstr "" - -#. module: mrp -#: model:process.transition,name:mrp.process_transition_servicerfq0 -msgid "Stockable Order Request" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -#: view:mrp.production.product.line:0 -msgid "Scheduled Products" -msgstr "" - -#. module: mrp -#: view:mrp.production.lot.line:0 -msgid "Production Products Consommation" -msgstr "" - -#. module: mrp -#: selection:mrp.bom,revision_type:0 -msgid "numeric indices" -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_servicerfq0 -msgid "If Procure method is Make to order and supply method is buy" -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_procurestockableproduct0 -msgid "if Product type is Stockable in procurement order" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -#: rml:mrp.production.order:0 -msgid "Work Orders" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,costs_cycle:0 -msgid "Cost per cycle" -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_mrp_bom_revision -msgid "Bill of material revisions" -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -msgid "Planification" -msgstr "" - -#. module: mrp -#: rml:bom.structure:0 -#: model:process.transition,name:mrp.process_transition_bom0 -msgid "BOM" -msgstr "" - -#. module: mrp -#: help:mrp.bom,type:0 -msgid "Use a phantom bill of material in raw materials lines that have to be automatically computed in on eproduction order and not one per level.If you put \"Phantom/Set\" at the root level of a bill of material it is considered as a set or pack: the products are replaced by the components between the sale order to the picking without going through the production order.The normal BoM will generate one production order per BoM level." -msgstr "" - -#. module: mrp -#: code:addons/mrp/mrp.py:0 -#, python-format -msgid "No address defined for the supplier" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,time_cycle:0 -msgid "Time for 1 cycle (hour)" -msgstr "" - -#. module: mrp -#: wizard_view:product.product.procurement,done:0 -msgid "Your procurement request has been sent !" -msgstr "" - -#. module: mrp -#: wizard_view:product.product.procurement,init:0 -msgid "Internal Procurement Request" -msgstr "" - -#. module: mrp -#: model:ir.actions.report.xml,name:mrp.report_mrp_production_report -#: field:mrp.production.product.line,production_id:0 -#: field:mrp.production.workcenter.line,production_id:0 -#: model:process.node,name:mrp.process_node_production0 -#: model:process.node,name:mrp.process_node_productionorder0 -msgid "Production Order" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Compute Data" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_property_group_action -#: model:ir.ui.menu,name:mrp.menu_mrp_property_group_action -msgid "Property Categories" -msgstr "" - -#. module: mrp -#: model:ir.actions.wizard,name:mrp.wiz_mrp_proc1 -#: model:ir.ui.menu,name:mrp.menu_wiz_mrp_proc1 -msgid "Compute Procurements Only" -msgstr "" - -#. module: mrp -#: rml:bom.structure:0 -#: model:ir.actions.report.xml,name:mrp.report_bom_structure -msgid "BOM Structure" -msgstr "" - -#. module: mrp -#: field:mrp.bom,date_stop:0 -msgid "Valid Until" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_procurement_action11 -#: model:ir.ui.menu,name:mrp.menu_mrp_procurement_action11 -msgid "Temporary Procurement Exceptions" -msgstr "" - -#. module: mrp -#: field:mrp.bom,date_start:0 -msgid "Valid From" -msgstr "" - -#. module: mrp -#: selection:mrp.bom,type:0 -msgid "Normal BoM" -msgstr "" - -#. module: mrp -#: field:mrp.bom,product_uos_qty:0 -#: field:mrp.production.product.line,product_uos_qty:0 -msgid "Product UOS Qty" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,state:0 -msgid "Confirmed" -msgstr "" - -#. module: mrp -#: wizard_view:mrp.procurement.compute,init:0 -#: wizard_view:mrp.procurement.orderpoint.compute,init:0 -msgid "Parameters" -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -msgid "Confirm" -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_mrp_production_workcenter_line -msgid "Production workcenters used" -msgstr "" - -#. module: mrp -#: field:mrp.production,workcenter_lines:0 -msgid "Workcenters Utilisation" -msgstr "" - -#. module: mrp -#: help:mrp.bom,product_efficiency:0 -msgid "Efficiency on the production. A factor of 0.9 means a loss of 10% in the production." -msgstr "" - -#. module: mrp -#: field:mrp.bom,product_rounding:0 -msgid "Product Rounding" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Recreate Picking" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_serviceonorder0 -msgid "If procurement is make to order" -msgstr "" - -#. module: mrp -#: selection:mrp.bom,method:0 -msgid "On Order" -msgstr "" - -#. module: mrp -#: model:process.node,name:mrp.process_node_minimumstockrule0 -msgid "Minimum Stock Rule" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_bom_form_action_new -#: model:ir.ui.menu,name:mrp.menu_mrp_bom_form_action_new -msgid "New Bill of Materials" -msgstr "" - -#. module: mrp -#: field:mrp.workcenter,time_stop:0 -msgid "Time after prod." -msgstr "" - -#. module: mrp -#: wizard_field:mrp.workcenter.load,init,time_unit:0 -msgid "Type of period" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Total Qty" -msgstr "" - -#. module: mrp -#: field:mrp.routing.workcenter,hour_nbr:0 -msgid "Number of Hours" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Product quantity" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_procurement_action -#: model:ir.ui.menu,name:mrp.menu_mrp_procurement_action -msgid "Procurement Orders" -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_mrp_property -msgid "Property" -msgstr "" - -#. module: mrp -#: field:mrp.routing.workcenter,routing_id:0 -msgid "Parent Routing" -msgstr "" - -#. module: mrp -#: help:mrp.workcenter,time_start:0 -msgid "Time in hours for the setup." -msgstr "" - -#. module: mrp -#: selection:mrp.production,state:0 -msgid "Canceled" -msgstr "" - -#. module: mrp -#: selection:mrp.property,composition:0 -msgid "plus" -msgstr "" - -#. module: mrp -#: field:mrp.bom.revision,bom_id:0 -#: field:mrp.procurement,bom_id:0 -msgid "BoM" -msgstr "" - -#. module: mrp -#: help:mrp.bom,routing_id:0 -msgid "The list of operations (list of workcenters) to produce the finished product. The routing is mainly used to compute workcenter costs during operations and to plan futur loads on workcenters based on production plannification." -msgstr "" - -#. module: mrp -#: selection:mrp.production,state:0 -msgid "Waiting Goods" -msgstr "" - -#. module: mrp -#: model:process.process,name:mrp.process_process_stockableproductprocess0 -msgid "Stockable Product Process" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_production_new -#: model:ir.ui.menu,name:mrp.menu_production_orders_new -msgid "New Production Order" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_rfq0 -msgid "A Request for Quotation is created and sent to the supplier." -msgstr "" - -#. module: mrp -#: field:mrp.bom.revision,last_indice:0 -msgid "last indice" -msgstr "" - -#. module: mrp -#: field:mrp.bom,revision_ids:0 -#: view:mrp.bom.revision:0 -msgid "BoM Revisions" -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -msgid "Retry" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,state:0 -#: selection:mrp.production,state:0 -msgid "Draft" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,priority:0 -#: selection:mrp.production,priority:0 -msgid "Normal" -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_productionprocureproducts0 -msgid "When any procuere products, it comes into the prpcurement orders" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_production_action2 -#: model:ir.ui.menu,name:mrp.menu_production_orders_start -msgid "Production Orders To Start" -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -msgid "Procurement Reason" -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_billofmaterialrouting0 -msgid "An entry is being made from billing material to routing." -msgstr "" - -#. module: mrp -#: help:mrp.workcenter,timesheet_id:0 -msgid "The normal working time of the workcenter." -msgstr "" - -#. module: mrp -#: selection:stock.warehouse.orderpoint,logic:0 -msgid "Order to Max" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.act_product_product_2_mrp_bom -#: model:ir.actions.act_window,name:mrp.mrp_bom_form_action -#: model:ir.ui.menu,name:mrp.menu_mrp_bom_form_action -#: model:process.node,name:mrp.process_node_billofmaterial0 -msgid "Bill of Materials" -msgstr "" - -#. module: mrp -#: model:process.transition,note:mrp.process_transition_procureserviceproduct0 -msgid "In procurement order, if product type is service" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,procure_method:0 -msgid "from stock" -msgstr "" - -#. module: mrp -#: view:mrp.bom:0 -#: view:mrp.property:0 -#: view:mrp.property.group:0 -#: view:mrp.routing:0 -#: view:mrp.routing.workcenter:0 -msgid "General Information" -msgstr "" - -#. module: mrp -#: view:mrp.production:0 -msgid "Productions" -msgstr "" - -#. module: mrp -#: wizard_button:product.product.procurement,done,end:0 -msgid "Close" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "TOTAL" -msgstr "" - -#. module: mrp -#: field:mrp.production,sale_name:0 -msgid "Sale Name" -msgstr "" - -#. module: mrp -#: code:addons/mrp/report/price.py:0 -#, python-format -msgid "Product supplier" -msgstr "" - -#. module: mrp -#: model:process.node,note:mrp.process_node_productminimumstockrule0 -msgid "Create minimum stock rules" -msgstr "" - -#. module: mrp -#: wizard_field:product.product.procurement,init,warehouse_id:0 -#: field:stock.warehouse.orderpoint,warehouse_id:0 -msgid "Warehouse" -msgstr "" - -#. module: mrp -#: model:ir.model,name:mrp.model_mrp_production -#: field:stock.move,production_id:0 -msgid "Production" -msgstr "" - -#. module: mrp -#: model:process.node,name:mrp.process_node_serviceproduct0 -#: model:process.node,name:mrp.process_node_serviceproduct1 -msgid "Service Product" -msgstr "" - -#. module: mrp -#: field:mrp.procurement,close_move:0 -msgid "Close Move at end" -msgstr "" - -#. module: mrp -#: wizard_view:change_production_qty,confirm:0 -msgid "Change Product Qty" -msgstr "" - -#. module: mrp -#: field:mrp.bom.revision,description:0 -#: view:mrp.property:0 -#: field:mrp.property,description:0 -#: field:mrp.property.group,description:0 -#: view:mrp.routing:0 -#: field:mrp.routing,note:0 -#: field:mrp.routing.workcenter,note:0 -#: view:mrp.workcenter:0 -#: field:mrp.workcenter,note:0 -msgid "Description" -msgstr "" - -#. module: mrp -#: selection:mrp.procurement,state:0 -msgid "Running" -msgstr "" - -#. module: mrp -#: model:ir.ui.menu,name:mrp.menu_mrp_root -msgid "Manufacturing" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_procurement_action3 -#: model:ir.ui.menu,name:mrp.menu_mrp_procurement_action3 -msgid "Unscheduled procurements" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_bom_tree_action -#: model:ir.ui.menu,name:mrp.menu_bom_tree -msgid "Bill of Material Structure" -msgstr "" - -#. module: mrp -#: model:ir.actions.wizard,name:mrp.wizard_workcenter_load -msgid "Workcenter load" -msgstr "" - -#. module: mrp -#: help:mrp.workcenter,time_stop:0 -msgid "Time in hours for the cleaning." -msgstr "" - -#. module: mrp -#: view:mrp.procurement:0 -msgid "Procurement Details" -msgstr "" - -#. 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 "" - -#. module: mrp -#: selection:mrp.bom,method:0 -msgid "On Stock" -msgstr "" - -#. module: mrp -#: field:mrp.bom,sequence:0 -#: rml:mrp.production.order:0 -#: field:mrp.production.workcenter.line,sequence:0 -#: field:mrp.routing.workcenter,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: mrp -#: model:ir.actions.act_window,name:mrp.mrp_bom_form_action2 -#: model:ir.ui.menu,name:mrp.menu_mrp_bom_form_action2 -msgid "Bill of Materials Components" -msgstr "" - diff --git a/addons/mrp_jit/i18n/tlh_TLH.po b/addons/mrp_jit/i18n/tlh_TLH.po deleted file mode 100644 index 3f9cd545aeb..00000000000 --- a/addons/mrp_jit/i18n/tlh_TLH.po +++ /dev/null @@ -1,22 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * mrp_jit -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: mrp_jit -#: model:ir.module.module,shortdesc:mrp_jit.module_meta_information -msgid "MRP JIT" -msgstr "" - diff --git a/addons/mrp_operations/i18n/tlh_TLH.po b/addons/mrp_operations/i18n/tlh_TLH.po deleted file mode 100644 index 68a6cba4621..00000000000 --- a/addons/mrp_operations/i18n/tlh_TLH.po +++ /dev/null @@ -1,423 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * mrp_operations -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: mrp_operations -#: model:process.node,name:mrp_operations.process_node_startoperation0 -msgid "Start Operation" -msgstr "" - -#. module: mrp_operations -#: selection:mrp.production.workcenter.line,state:0 -msgid "In Progress" -msgstr "" - -#. module: mrp_operations -#: view:mrp.production.workcenter.line:0 -#: selection:mrp.production.workcenter.line,state:0 -#: selection:mrp_operations.operation.code,start_stop:0 -msgid "Pause" -msgstr "" - -#. module: mrp_operations -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: mrp_operations -#: model:process.node,note:mrp_operations.process_node_startoperation0 -msgid "Operation is started" -msgstr "" - -#. module: mrp_operations -#: model:process.node,name:mrp_operations.process_node_productionorder0 -msgid "Production Order" -msgstr "" - -#. module: mrp_operations -#: view:mrp.production.workcenter.line:0 -msgid "Start working" -msgstr "" - -#. module: mrp_operations -#: model:ir.actions.act_window,name:mrp_operations.mrp_production_code_action -msgid "Operations Code" -msgstr "" - -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Production Order Cannot start in [%s] state" -msgstr "" - -#. module: mrp_operations -#: model:process.process,name:mrp_operations.process_process_mrpoperationprocess0 -msgid "Mrp Operation Process" -msgstr "" - -#. module: mrp_operations -#: field:mrp.production.workcenter.line,state:0 -#: field:mrp_operations.operation.code,start_stop:0 -msgid "Status" -msgstr "" - -#. module: mrp_operations -#: field:mrp.production.workcenter.line,delay:0 -msgid "Delay" -msgstr "" - -#. module: mrp_operations -#: selection:mrp_operations.operation.code,start_stop:0 -msgid "Start" -msgstr "" - -#. module: mrp_operations -#: field:mrp_operations.operation,production_id:0 -msgid "Production" -msgstr "" - -#. module: mrp_operations -#: view:mrp_operations.operation:0 -msgid "Calendar View" -msgstr "" - -#. module: mrp_operations -#: model:process.node,name:mrp_operations.process_node_workorder0 -msgid "Work Center" -msgstr "" - -#. module: mrp_operations -#: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_operation_action -msgid "Work Order Events Using Bar Codes" -msgstr "" - -#. module: mrp_operations -#: view:mrp.production.workcenter.line:0 -msgid "Set Draft" -msgstr "" - -#. module: mrp_operations -#: field:mrp.production.workcenter.line,date_planned:0 -msgid "Date Planned" -msgstr "" - -#. module: mrp_operations -#: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_code_action -msgid "Start - Stop Codes" -msgstr "" - -#. module: mrp_operations -#: field:mrp.production.workcenter.line,uom:0 -msgid "UOM" -msgstr "" - -#. module: mrp_operations -#: view:mrp_operations.operation.code:0 -msgid "Production Operation Code" -msgstr "" - -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid " You cannot Resume the operation other then Pause state !" -msgstr "" - -#. module: mrp_operations -#: model:process.transition,note:mrp_operations.process_transition_productionstart0 -msgid "From production order, create the workorder" -msgstr "" - -#. module: mrp_operations -#: model:process.transition,name:mrp_operations.process_transition_startcanceloperation0 -msgid "Start Cancel Operation" -msgstr "" - -#. module: mrp_operations -#: selection:mrp.production.workcenter.line,state:0 -msgid "Canceled" -msgstr "" - -#. module: mrp_operations -#: rml:mrp.code.barcode:0 -msgid ")" -msgstr "" - -#. module: mrp_operations -#: rml:mrp.code.barcode:0 -msgid "(" -msgstr "" - -#. module: mrp_operations -#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_draft_action -#: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_draft_action -msgid "Future Work Orders" -msgstr "" - -#. module: mrp_operations -#: model:ir.actions.report.xml,name:mrp_operations.report_wc_barcode -msgid "Workcenters Barcode" -msgstr "" - -#. module: mrp_operations -#: model:process.node,note:mrp_operations.process_node_doneoperation0 -#: model:process.transition,note:mrp_operations.process_transition_startdoneoperation0 -msgid "Operation is done" -msgstr "" - -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Operation is already finished !" -msgstr "" - -#. module: mrp_operations -#: model:process.transition,name:mrp_operations.process_transition_startdoneoperation0 -msgid "Start Done Operation" -msgstr "" - -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "There is no Operation to be cancelled !" -msgstr "" - -#. module: mrp_operations -#: view:mrp.production.workcenter.line:0 -#: selection:mrp.production.workcenter.line,state:0 -msgid "Finished" -msgstr "" - -#. module: mrp_operations -#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form -#: view:mrp.production.workcenter.line:0 -msgid "Work Orders" -msgstr "" - -#. module: mrp_operations -#: field:mrp.production.workcenter.line,date_start:0 -#: field:mrp_operations.operation,date_start:0 -msgid "Start Date" -msgstr "" - -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Sorry!" -msgstr "" - -#. module: mrp_operations -#: model:process.node,note:mrp_operations.process_node_productionorder0 -msgid "Production order for any products" -msgstr "" - -#. module: mrp_operations -#: model:ir.module.module,shortdesc:mrp_operations.module_meta_information -msgid "Workcenter Production start end workflow" -msgstr "" - -#. module: mrp_operations -#: field:mrp_operations.operation.code,name:0 -msgid "Operation Name" -msgstr "" - -#. module: mrp_operations -#: field:mrp.production.workcenter.line,date_finnished:0 -#: field:mrp_operations.operation,date_finished:0 -msgid "End Date" -msgstr "" - -#. module: mrp_operations -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: mrp_operations -#: model:ir.model,name:mrp_operations.model_mrp_operations_operation_code -msgid "mrp_operations.operation.code" -msgstr "" - -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "You cannot finish the operation without Starting/Resuming it !" -msgstr "" - -#. module: mrp_operations -#: help:mrp.production.workcenter.line,delay:0 -msgid "This is delay between operation start and stop in this workcenter" -msgstr "" - -#. module: mrp_operations -#: field:mrp.production.workcenter.line,product:0 -msgid "Product" -msgstr "" - -#. module: mrp_operations -#: model:process.transition,note:mrp_operations.process_transition_workstartoperation0 -msgid "From work order, define the cycles and hour for creating product" -msgstr "" - -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Operation is not started yet !" -msgstr "" - -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Error!" -msgstr "" - -#. module: mrp_operations -#: field:mrp.production.workcenter.line,production_state:0 -msgid "Prod.State" -msgstr "" - -#. module: mrp_operations -#: field:mrp_operations.operation,order_date:0 -msgid "Order Date" -msgstr "" - -#. module: mrp_operations -#: model:process.node,note:mrp_operations.process_node_workorder0 -msgid "Production Work Center" -msgstr "" - -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Operation is Already Cancelled !" -msgstr "" - -#. module: mrp_operations -#: model:process.transition,name:mrp_operations.process_transition_productionstart0 -msgid "Production start Operation" -msgstr "" - -#. module: mrp_operations -#: field:mrp_operations.operation,workcenter_id:0 -msgid "Workcenter" -msgstr "" - -#. module: mrp_operations -#: view:mrp.production.workcenter.line:0 -msgid "Graph view in hours by workcenter" -msgstr "" - -#. module: mrp_operations -#: model:ir.actions.act_window,name:mrp_operations.mrp_production_operation_action -#: view:mrp.production.workcenter.line:0 -msgid "Operations" -msgstr "" - -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "You cannot Pause the Operation other then Start/Resume state !" -msgstr "" - -#. module: mrp_operations -#: field:mrp_operations.operation,code_id:0 -#: field:mrp_operations.operation.code,code:0 -msgid "Code" -msgstr "" - -#. module: mrp_operations -#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_confirm_action -msgid "Confirmed Work Orders" -msgstr "" - -#. module: mrp_operations -#: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_confirm_action -msgid "Work Orders to Do" -msgstr "" - -#. module: mrp_operations -#: model:process.node,name:mrp_operations.process_node_canceloperation0 -msgid "Cancel Operation" -msgstr "" - -#. module: mrp_operations -#: model:process.transition,name:mrp_operations.process_transition_workstartoperation0 -msgid "Work start Operation" -msgstr "" - -#. module: mrp_operations -#: model:ir.actions.report.xml,name:mrp_operations.report_code_barcode -msgid "Start/Stop Barcode" -msgstr "" - -#. module: mrp_operations -#: view:mrp.production.workcenter.line:0 -#: selection:mrp_operations.operation.code,start_stop:0 -msgid "Resume" -msgstr "" - -#. module: mrp_operations -#: model:process.node,name:mrp_operations.process_node_doneoperation0 -msgid "Done Operation" -msgstr "" - -#. module: mrp_operations -#: field:mrp.production.workcenter.line,qty:0 -msgid "Qty" -msgstr "" - -#. module: mrp_operations -#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action -#: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_action -msgid "All Work Orders" -msgstr "" - -#. module: mrp_operations -#: view:mrp_operations.operation:0 -msgid "Production Operation" -msgstr "" - -#. module: mrp_operations -#: selection:mrp_operations.operation.code,start_stop:0 -msgid "Done" -msgstr "" - -#. module: mrp_operations -#: model:ir.model,name:mrp_operations.model_mrp_operations_operation -msgid "mrp_operations.operation" -msgstr "" - -#. module: mrp_operations -#: view:mrp.production.workcenter.line:0 -#: selection:mrp_operations.operation.code,start_stop:0 -msgid "Cancel" -msgstr "" - -#. module: mrp_operations -#: selection:mrp.production.workcenter.line,state:0 -msgid "Draft" -msgstr "" - -#. module: mrp_operations -#: model:process.node,note:mrp_operations.process_node_canceloperation0 -#: model:process.transition,note:mrp_operations.process_transition_startcanceloperation0 -msgid "Operation is cancelled" -msgstr "" - -#. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Operation has already started !' 'You can either Pause /Finish/Cancel the operation" -msgstr "" - diff --git a/addons/mrp_repair/i18n/tlh_TLH.po b/addons/mrp_repair/i18n/tlh_TLH.po deleted file mode 100644 index 606c19b9fd2..00000000000 --- a/addons/mrp_repair/i18n/tlh_TLH.po +++ /dev/null @@ -1,648 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * mrp_repair -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Fees Line" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.fee,repair_id:0 -#: field:mrp.repair.line,repair_id:0 -msgid "Repair Order Ref" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.line,move_id:0 -msgid "Inventory Move" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Recreate Invoice" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Untaxed amount" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,state:0 -msgid "Repair State" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Printing Date" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.fee,product_uom_qty:0 -#: rml:repair.order:0 -msgid "Quantity" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Set to Draft" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair,state:0 -msgid "Invoice Exception" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,address_id:0 -msgid "Delivery Address" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Make Invoice" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.fee,price_subtotal:0 -#: field:mrp.repair.line,price_subtotal:0 -msgid "Subtotal" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Invoice address :" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,guarantee_limit:0 -msgid "Guarantee limit" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,amount_tax:0 -#: field:mrp.repair.fee,tax_id:0 -#: field:mrp.repair.line,tax_id:0 -msgid "Taxes" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Net Total :" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "VAT" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Operations" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,move_id:0 -msgid "Move" -msgstr "" - -#. module: mrp_repair -#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_tree -msgid "Repair Orders" -msgstr "" - -#. module: mrp_repair -#: model:ir.actions.report.xml,name:mrp_repair.report_mrp_repair -msgid "Quotation / Order" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Extra Info" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: mrp_repair -#: model:ir.actions.act_window,name:mrp_repair.action_repair_quotation_tree -#: model:ir.ui.menu,name:mrp_repair.menu_repair_quotation -msgid "Repairs in quotation" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair,state:0 -#: selection:mrp.repair.line,state:0 -msgid "Confirmed" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Repairs order" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Repair Order N° :" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,prodlot_id:0 -#: rml:repair.order:0 -msgid "Lot Number" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair,state:0 -msgid "Under Repair" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,fees_lines:0 -msgid "Fees Lines" -msgstr "" - -#. module: mrp_repair -#: model:ir.model,name:mrp_repair.model_mrp_repair_fee -msgid "Repair Fees line" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Fees Line(s)" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair,state:0 -msgid "To be Invoiced" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Shipping address :" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Start Repair" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.line,product_uom_qty:0 -msgid "Quantity (UoM)" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.fee,to_invoice:0 -#: field:mrp.repair.line,to_invoice:0 -msgid "To Invoice" -msgstr "" - -#. module: mrp_repair -#: model:ir.ui.menu,name:mrp_repair.menu_repair_order -msgid "Repairs" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,picking_id:0 -msgid "Packing" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Total :" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,pricelist_id:0 -msgid "Pricelist" -msgstr "" - -#. module: mrp_repair -#: help:mrp.repair,state:0 -msgid "Gives the state of the Repair Order" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -#: field:mrp.repair,quotation_notes:0 -msgid "Quotation Notes" -msgstr "" - -#. module: mrp_repair -#: model:ir.actions.act_window,name:mrp_repair.action_repair_progress_tree -#: model:ir.ui.menu,name:mrp_repair.menu_repair_progress -msgid "Repairs in progress" -msgstr "" - -#. module: mrp_repair -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: mrp_repair -#: help:mrp.repair,guarantee_limit:0 -msgid "The garantee limit is computed as: last move date + warranty defined on selected product. If the current date is below the garantee limit, each operation and fee you will add will be set as 'not to invoiced' by default. Note that you can change manually afterwards." -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Repair Line" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "N° :" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,invoice_method:0 -msgid "Invoice Method" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,repaired:0 -msgid "Repaired" -msgstr "" - -#. module: mrp_repair -#: wizard_field:mrp.repair.make_invoice,init,group:0 -msgid "Group by partner invoice address" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.fee,invoice_line_id:0 -#: field:mrp.repair.line,invoice_line_id:0 -msgid "Invoice Line" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Total amount" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair.line,state:0 -msgid "Canceled" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair,invoice_method:0 -msgid "Before Repair" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,location_id:0 -msgid "Current Location" -msgstr "" - -#. module: mrp_repair -#: wizard_button:mrp.repair.cancel,display,yes:0 -msgid "Yes" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,invoiced:0 -#: field:mrp.repair.fee,invoiced:0 -#: field:mrp.repair.line,invoiced:0 -msgid "Invoiced" -msgstr "" - -#. module: mrp_repair -#: wizard_button:mrp.repair.cancel,display,end:0 -msgid "No" -msgstr "" - -#. module: mrp_repair -#: wizard_view:mrp.repair.make_invoice,init:0 -#: wizard_button:mrp.repair.make_invoice,init,invoice:0 -msgid "Create invoices" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair.line,type:0 -#: rml:repair.order:0 -msgid "Add" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair.line,state:0 -msgid "Draft" -msgstr "" - -#. module: mrp_repair -#: model:ir.actions.act_window,name:mrp_repair.action_repair_order_form -#: model:ir.ui.menu,name:mrp_repair.menu_repair_form -msgid "New Repair" -msgstr "" - -#. module: mrp_repair -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,amount_untaxed:0 -msgid "Untaxed Amount" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.line,state:0 -msgid "Status" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Guarantee Limit" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,product_id:0 -#: rml:repair.order:0 -msgid "Product to Repair" -msgstr "" - -#. module: mrp_repair -#: help:mrp.repair,pricelist_id:0 -msgid "The pricelist comes from the selected partner, by default." -msgstr "" - -#. module: mrp_repair -#: wizard_view:mrp.repair.cancel,display:0 -msgid "This operation will cancel the Repair process, but will not cancel it's Invoice. Do you want to continue?" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair,state:0 -msgid "Quotation" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Compute" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Confirm Repair" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Repair Quotation" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "End Repair" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "History" -msgstr "" - -#. module: mrp_repair -#: model:ir.model,name:mrp_repair.model_mrp_repair -msgid "Repairs Order" -msgstr "" - -#. module: mrp_repair -#: model:ir.actions.act_window,name:mrp_repair.action_repair_ready_tree -#: model:ir.ui.menu,name:mrp_repair.menu_repair_ready -msgid "Repairs Ready to Start" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Qty" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair,state:0 -#: selection:mrp.repair.line,state:0 -msgid "Done" -msgstr "" - -#. module: mrp_repair -#: model:ir.actions.act_window,name:mrp_repair.action_repair_2binvoiced_tree -#: model:ir.ui.menu,name:mrp_repair.menu_repair_2binvoiced -msgid "Repairs to be invoiced" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,invoice_id:0 -msgid "Invoice" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Fees" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair,state:0 -#: wizard_button:mrp.repair.make_invoice,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.line,location_dest_id:0 -msgid "Dest. Location" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Operation Line(s)" -msgstr "" - -#. module: mrp_repair -#: model:ir.model,name:mrp_repair.model_mrp_repair_line -msgid "Repair Operations Lines" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,location_dest_id:0 -msgid "Delivery Location" -msgstr "" - -#. module: mrp_repair -#: model:ir.module.module,shortdesc:mrp_repair.module_meta_information -msgid "Products Repairs Module" -msgstr "" - -#. module: mrp_repair -#: help:mrp.repair,invoice_method:0 -msgid "This field allow you to change the workflow of the repair order. If value selected is different from 'No Invoice', it also allow you to select the pricelist and invoicing address." -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.fee,price_unit:0 -#: field:mrp.repair.line,price_unit:0 -#: rml:repair.order:0 -msgid "Unit Price" -msgstr "" - -#. module: mrp_repair -#: wizard_view:mrp.repair.make_invoice,init:0 -msgid "Do you really want to create the invoices ?" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.fee,name:0 -#: field:mrp.repair.line,name:0 -#: rml:repair.order:0 -msgid "Description" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,operations:0 -msgid "Operation Lines" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.fee,product_id:0 -#: field:mrp.repair.line,product_id:0 -msgid "Product" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Invoice Corrected" -msgstr "" - -#. module: mrp_repair -#: help:mrp.repair,deliver_bool:0 -msgid "Check this box if you want to manage the delivery once the product is repaired. If cheked, it will create a packing with selected product. Note that you can select the locations in the Info tab, if you have the extended view." -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.line,type:0 -msgid "Type" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Price" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,deliver_bool:0 -msgid "Deliver" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -#: field:mrp.repair,internal_notes:0 -msgid "Internal Notes" -msgstr "" - -#. module: mrp_repair -#: rml:repair.order:0 -msgid "Taxes:" -msgstr "" - -#. module: mrp_repair -#: model:ir.actions.wizard,name:mrp_repair.wizard_mrp_repair_make_invoice -msgid "Make invoices" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,name:0 -msgid "Repair Ref" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "UoM" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair.line,type:0 -#: rml:repair.order:0 -msgid "Remove" -msgstr "" - -#. module: mrp_repair -#: wizard_view:mrp.repair.cancel,display:0 -msgid "Cancel Repair...??" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.fee,product_uom:0 -#: field:mrp.repair.line,product_uom:0 -msgid "Product UoM" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,partner_invoice_id:0 -msgid "Invoicing Address" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair,invoice_method:0 -msgid "After Repair" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Invoicing" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair.line,location_id:0 -msgid "Source Location" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "Quality" -msgstr "" - -#. module: mrp_repair -#: model:ir.actions.wizard,name:mrp_repair.action_cancel_repair -#: view:mrp.repair:0 -msgid "Cancel Repair" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair,invoice_method:0 -msgid "No Invoice" -msgstr "" - -#. module: mrp_repair -#: view:mrp.repair:0 -msgid "States" -msgstr "" - -#. module: mrp_repair -#: help:mrp.repair,partner_id:0 -msgid "This field allow you to choose the parner that will be invoiced and delivered" -msgstr "" - -#. module: mrp_repair -#: field:mrp.repair,amount_total:0 -msgid "Total" -msgstr "" - -#. module: mrp_repair -#: selection:mrp.repair,state:0 -msgid "Ready to Repair" -msgstr "" - diff --git a/addons/mrp_subproduct/i18n/tlh_TLH.po b/addons/mrp_subproduct/i18n/tlh_TLH.po deleted file mode 100644 index 72502424aac..00000000000 --- a/addons/mrp_subproduct/i18n/tlh_TLH.po +++ /dev/null @@ -1,72 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * mrp_subproduct -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: mrp_subproduct -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: mrp_subproduct -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: mrp_subproduct -#: view:mrp.bom:0 -msgid "sub products" -msgstr "" - -#. module: mrp_subproduct -#: field:mrp.subproduct,product_id:0 -msgid "Product" -msgstr "" - -#. module: mrp_subproduct -#: model:ir.model,name:mrp_subproduct.model_mrp_subproduct -msgid "Mrp Sub Product" -msgstr "" - -#. module: mrp_subproduct -#: field:mrp.subproduct,product_qty:0 -msgid "Product Qty" -msgstr "" - -#. module: mrp_subproduct -#: field:mrp.subproduct,product_uom:0 -msgid "Product UOM" -msgstr "" - -#. module: mrp_subproduct -#: field:mrp.subproduct,bom_id:0 -msgid "BoM" -msgstr "" - -#. module: mrp_subproduct -#: view:mrp.bom:0 -msgid "Sub Products" -msgstr "" - -#. module: mrp_subproduct -#: field:mrp.bom,sub_products:0 -msgid "sub_products" -msgstr "" - -#. module: mrp_subproduct -#: model:ir.module.module,shortdesc:mrp_subproduct.module_meta_information -msgid "MRP Sub Product" -msgstr "" - diff --git a/addons/point_of_sale/i18n/tlh_TLH.po b/addons/point_of_sale/i18n/tlh_TLH.po deleted file mode 100644 index a0051dffbe6..00000000000 --- a/addons/point_of_sale/i18n/tlh_TLH.po +++ /dev/null @@ -1,1003 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * point_of_sale -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Total paid" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Qty of product" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "Set to draft" -msgstr "" - -#. module: point_of_sale -#: model:ir.model,name:point_of_sale.model_report_transaction_pos -msgid "transaction for the pos" -msgstr "" - -#. module: point_of_sale -#: wizard_view:pos.discount,init:0 -msgid "Discount :" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.payment,ask_pay,payment_nb:0 -msgid "Piece number" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,name:0 -msgid "Order Description" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.wizard,name:point_of_sale.pos_scan_product -msgid "Scan Product" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Document" -msgstr "" - -#. module: point_of_sale -#: wizard_view:pos.add_product,init:0 -msgid "Add product :" -msgstr "" - -#. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_tree2 -msgid "Orders of the day" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.report.xml,name:point_of_sale.pos_details_summary -msgid "Sales (summary)" -msgstr "" - -#. module: point_of_sale -#: wizard_view:pos.sale.get,init:0 -msgid "Select an Open Sale Order" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Invoice Date" -msgstr "" - -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "," -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.report.xml,name:point_of_sale.pos_lines_detail -msgid "Details of Sales" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Base" -msgstr "" - -#. module: point_of_sale -#: wizard_view:pos.scan_product,init:0 -msgid "Scan product" -msgstr "" - -#. module: point_of_sale -#: field:pos.order.line,price_subtotal:0 -msgid "Subtotal" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Partner Ref." -msgstr "" - -#. module: point_of_sale -#: field:pos.order.line,name:0 -msgid "Line Description" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,shop_id:0 -msgid "Shop" -msgstr "" - -#. module: point_of_sale -#: wizard_button:pos.refund_order,init,refund_n_quit:0 -msgid "Ok" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,note:0 -msgid "Notes" -msgstr "" - -#. module: point_of_sale -#: field:stock.picking,pos_order:0 -msgid "Pos order" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Detail of Sales" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -#: rml:pos.lines:0 -#: field:pos.order,amount_tax:0 -msgid "Taxes" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.act_window,name:point_of_sale.action_pos_order_line -#: model:ir.actions.act_window,name:point_of_sale.action_pos_order_line_day -msgid "Sale line" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -#: field:pos.payment,amount:0 -#: wizard_field:pos.payment,ask_pay,amount:0 -#: field:report.transaction.pos,amount:0 -msgid "Amount" -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 -msgid "Validity Date" -msgstr "" - -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Operation N° :" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -msgid "VAT" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.wizard,name:point_of_sale.pos_refund -msgid "Refund Orders" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,last_out_picking:0 -msgid "Last Output Picking" -msgstr "" - -#. module: point_of_sale -#: wizard_view:pos.config.journal,init:0 -msgid "Select default journals" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -msgid "VAT(%)" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Tax" -msgstr "" - -#. module: point_of_sale -#: view:report.transaction.pos:0 -msgid "Total Transaction" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -msgid "Disc" -msgstr "" - -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Journal:" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Fax :" -msgstr "" - -#. module: point_of_sale -#: wizard_view:pos.scan_product,init:0 -msgid "Scan Barcode" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,payments:0 -msgid "Order Payments" -msgstr "" - -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Date :" -msgstr "" - -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Disc :" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.wizard,name:point_of_sale.pos_confirm -#: wizard_button:pos.sale.get,init,set:0 -msgid "Confirm" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "POS Orders" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -#: rml:pos.lines:0 -msgid "Disc. (%)" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Sales total" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Supplier Invoice" -msgstr "" - -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "Modify line failed !" -msgstr "" - -#. module: point_of_sale -#: view:pos.order.line:0 -msgid "Sum of subtotals" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.payment,ask_pay,payment_date:0 -msgid "Payment date" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.payment,ask_pay,payment_name:0 -msgid "Payment name" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,lines:0 -msgid "Order Lines" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.receipt:0 -msgid "Qty" -msgstr "" - -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total Sold" -msgstr "" - -#. module: point_of_sale -#: model:ir.module.module,shortdesc:point_of_sale.module_meta_information -msgid "Point Of Sale" -msgstr "" - -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "User :" -msgstr "" - -#. module: point_of_sale -#: field:pos.order.line,create_date:0 -msgid "Creation Date" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Total :" -msgstr "" - -#. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_point_rep -msgid "Reporting" -msgstr "" - -#. module: point_of_sale -#: view:report.transaction.pos:0 -msgid "POS " -msgstr "" - -#. module: point_of_sale -#: model:ir.model,name:point_of_sale.model_pos_config_journal -msgid "Point of Sale journal configuration." -msgstr "" - -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "Create line failed !" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.config.journal,init,default_journal:0 -msgid "Default journal" -msgstr "" - -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Product Name" -msgstr "" - -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,account_receivable:0 -msgid "Default Receivable" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.wizard,name:point_of_sale.pos_sale_get -msgid "Get From Order" -msgstr "" - -#. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_point_config -msgid "Configuration" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -#: rml:pos.lines:0 -#: field:pos.order.line,price_unit:0 -msgid "Unit Price" -msgstr "" - -#. module: point_of_sale -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -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" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,nb_print:0 -msgid "Number of Print" -msgstr "" - -#. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_wizard_default_journal -msgid "Default journals" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Draft Invoice" -msgstr "" - -#. module: point_of_sale -#: field:pos.order.line,discount:0 -msgid "Discount (%)" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.wizard,name:point_of_sale.pos_add_product -msgid "Add products" -msgstr "" - -#. module: point_of_sale -#: view:pos.order.line:0 -msgid "Total qty" -msgstr "" - -#. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_line -msgid "POS Lines" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "Sales Order POS" -msgstr "" - -#. module: point_of_sale -#: wizard_button:pos.config.journal,init,set_default_journal:0 -msgid "Define default journals" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.act_window,name:point_of_sale.action_pos_order_tree2 -#: model:ir.actions.act_window,name:point_of_sale.action_pos_order_tree3 -#: model:ir.actions.act_window,name:point_of_sale.action_pos_pos_form -#: model:ir.model,name:point_of_sale.model_pos_order -#: model:ir.ui.menu,name:point_of_sale.menu_point_ofsale -#: model:ir.ui.menu,name:point_of_sale.menu_point_root -msgid "Point of Sale" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,user_id:0 -msgid "Salesman" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: selection:pos.order,state:0 -msgid "Invoiced" -msgstr "" - -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Tel :" -msgstr "" - -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total No. of Articles" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.config.journal,init,default_journal_rebate:0 -msgid "Default rebate journal" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.wizard,name:point_of_sale.wizard_default_journal -msgid "Wizard default journals" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "Ma_ke Payment" -msgstr "" - -#. module: point_of_sale -#: wizard_button:pos.scan_product,init,add:0 -msgid "Add" -msgstr "" - -#. module: point_of_sale -#: selection:pos.order,state:0 -msgid "Draft" -msgstr "" - -#. module: point_of_sale -#: selection:pos.order,state:0 -msgid "Paid" -msgstr "" - -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total Taxes" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "VAT :" -msgstr "" - -#. module: point_of_sale -#: view:pos.order.line:0 -msgid "POS Order lines" -msgstr "" - -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "E-mail :" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Total invoiced" -msgstr "" - -#. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_trans_pos_tree_today -msgid "Sales of the day" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,amount_paid:0 -#: field:pos.order,amount_return:0 -msgid "unknown" -msgstr "" - -#. module: point_of_sale -#: view:pos.order.line:0 -msgid "POS Order line" -msgstr "" - -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "." -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.wizard,name:point_of_sale.pos_discount -msgid "Discount" -msgstr "" - -#. module: point_of_sale -#: field:report.transaction.pos,user_id:0 -msgid "User" -msgstr "" - -#. module: point_of_sale -#: field:pos.payment,payment_date:0 -msgid "Payment Date" -msgstr "" - -#. module: point_of_sale -#: field:pos.payment,payment_name:0 -msgid "Payment Name" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.lines:0 -#: field:report.transaction.pos,date_create:0 -msgid "Date" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.act_window,name:point_of_sale.action_trans_pos_tree -#: model:ir.actions.act_window,name:point_of_sale.action_trans_pos_tree_month -#: model:ir.actions.act_window,name:point_of_sale.action_trans_pos_tree_today -msgid "Sales by user" -msgstr "" - -#. module: point_of_sale -#: wizard_button:pos.add_product,init,add:0 -#: view:pos.order:0 -msgid "_Add product" -msgstr "" - -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid ":" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Period:" -msgstr "" - -#. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_trans_pos_tree -msgid "All the sales" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "Compute" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Total:" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -#: field:pos.order,pickings:0 -msgid "Picking" -msgstr "" - -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "Create _Invoice" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.add_product,init,quantity:0 -#: rml:pos.invoice:0 -#: field:pos.order.line,qty:0 -msgid "Quantity" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Refund" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Mode of payment" -msgstr "" - -#. module: point_of_sale -#: wizard_button:pos.payment,ask_pay,add_pay:0 -msgid "Ma_ke payment" -msgstr "" - -#. module: point_of_sale -#: wizard_button:pos.discount,init,apply_discount:0 -msgid "Apply Discount" -msgstr "" - -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Total Paid" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,pricelist_id:0 -msgid "Pricelist" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.discount,init,discount:0 -msgid "Discount percentage" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.report.xml,name:point_of_sale.pos_receipt -msgid "Receipt" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,state:0 -msgid "State" -msgstr "" - -#. module: point_of_sale -#: wizard_view:pos.refund_order,init:0 -msgid "Refund order :" -msgstr "" - -#. module: point_of_sale -#: field:report.transaction.pos,no_trans:0 -msgid "Number of Transaction" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Net Total:" -msgstr "" - -#. module: point_of_sale -#: code:addons/point_of_sale/pos.py:0 -#, python-format -msgid "Cannot delete a point of sale which is already confirmed !" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "Other" -msgstr "" - -#. module: point_of_sale -#: selection:pos.order,state:0 -msgid "Done" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.report.xml,name:point_of_sale.pos_invoice_report -#: rml:pos.invoice:0 -#: field:pos.order,invoice_id:0 -#: wizard_field:pos.payment,ask_pay,invoice_wanted:0 -#: field:report.transaction.pos,invoice_id:0 -msgid "Invoice" -msgstr "" - -#. module: point_of_sale -#: wizard_button:pos.add_product,init,end:0 -#: wizard_button:pos.config.journal,init,end:0 -#: wizard_button:pos.discount,init,end:0 -#: view:pos.order:0 -#: selection:pos.order,state:0 -#: wizard_button:pos.payment,ask_pay,end:0 -#: wizard_button:pos.refund_order,init,end:0 -#: wizard_button:pos.sale.get,init,end:0 -#: wizard_button:pos.scan_product,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "Close" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "Order lines" -msgstr "" - -#. module: point_of_sale -#: field:pos.order.line,order_id:0 -#: field:pos.payment,order_id:0 -msgid "Order Ref" -msgstr "" - -#. module: point_of_sale -#: wizard_view:pos.payment,ask_pay:0 -msgid "Add payment :" -msgstr "" - -#. module: point_of_sale -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Total of the day" -msgstr "" - -#. module: point_of_sale -#: model:ir.model,name:point_of_sale.model_pos_payment -msgid "Pos Payment" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Total discount" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,invoice_wanted:0 -msgid "Create Invoice" -msgstr "" - -#. module: point_of_sale -#: wizard_view:pos.refund_order,init:0 -msgid "Refund " -msgstr "" - -#. module: point_of_sale -#: model:ir.model,name:point_of_sale.model_pos_order_line -msgid "Lines of Point of Sale" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Taxes:" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -#: view:report.transaction.pos:0 -msgid "Amount total" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.add_product,init,product:0 -#: rml:pos.details:0 -#: field:pos.order.line,product_id:0 -msgid "Product" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "Invoicing" -msgstr "" - -#. module: point_of_sale -#: field:pos.config.journal,journal_id:0 -#: field:pos.order,sale_journal:0 -#: wizard_field:pos.payment,ask_pay,journal:0 -#: field:pos.payment,journal_id:0 -#: field:report.transaction.pos,journal_id:0 -msgid "Journal" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.scan_product,init,gencod:0 -msgid "Barcode" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Canceled Invoice" -msgstr "" - -#. module: point_of_sale -#: view:report.transaction.pos:0 -msgid "POS" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.report.xml,name:point_of_sale.pos_lines_report -msgid "Pos Lines" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Tel. :" -msgstr "" - -#. module: point_of_sale -#: field:pos.payment,payment_nb:0 -msgid "Piece Number" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.config.journal,init,default_journal_gift:0 -msgid "Default gift journal" -msgstr "" - -#. module: point_of_sale -#: model:ir.actions.wizard,name:point_of_sale.pos_payment -#: view:pos.order:0 -msgid "Payment" -msgstr "" - -#. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_action_pos_order_tree3 -msgid "All orders" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.sale.get,init,picking_id:0 -msgid "Sale Order" -msgstr "" - -#. module: point_of_sale -#: rml:pos.lines:0 -msgid "Name" -msgstr "" - -#. module: point_of_sale -#: model:ir.ui.menu,name:point_of_sale.menu_trans_pos_tree_month -msgid "Sales of the month" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "D_iscount" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,date_order:0 -msgid "Date Ordered" -msgstr "" - -#. module: point_of_sale -#: rml:pos.receipt:0 -msgid "Ce bon est valide jusqu'au" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "Payments" -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 -#: field:pos.payment,name:0 -#: rml:pos.receipt:0 -msgid "Description" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,account_move:0 -msgid "Account Entry" -msgstr "" - -#. module: point_of_sale -#: wizard_field:pos.payment,ask_pay,payment_id:0 -#: field:pos.payment,payment_id:0 -msgid "Payment Term" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -msgid "Mode of Taxes" -msgstr "" - -#. module: point_of_sale -#: view:pos.order:0 -msgid "Actions" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -#: rml:pos.lines:0 -msgid "Print Date:" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.details_summary:0 -#: rml:pos.lines:0 -msgid "Company:" -msgstr "" - -#. module: point_of_sale -#: rml:pos.invoice:0 -msgid "Supplier Refund" -msgstr "" - -#. module: point_of_sale -#: field:pos.order,amount_total:0 -msgid "Total" -msgstr "" - -#. module: point_of_sale -#: rml:pos.details:0 -#: rml:pos.invoice:0 -#: rml:pos.receipt:0 -msgid "Price" -msgstr "" - diff --git a/addons/process/i18n/tlh_TLH.po b/addons/process/i18n/tlh_TLH.po deleted file mode 100644 index ca5e886412f..00000000000 --- a/addons/process/i18n/tlh_TLH.po +++ /dev/null @@ -1,297 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * process -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: process -#: view:process.node:0 -#: view:process.process:0 -msgid "Process Node" -msgstr "" - -#. module: process -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: process -#: view:process.node:0 -#: view:process.process:0 -#: view:process.transition:0 -msgid "Roles from Workflow" -msgstr "" - -#. module: process -#: field:process.node,menu_id:0 -msgid "Related Menu" -msgstr "" - -#. module: process -#: view:process.node:0 -#: view:process.process:0 -#: field:process.transition,action_ids:0 -msgid "Buttons" -msgstr "" - -#. module: process -#: selection:process.node,kind:0 -msgid "State" -msgstr "" - -#. module: process -#: view:process.node:0 -#: view:process.process:0 -#: view:process.transition:0 -msgid "Details" -msgstr "" - -#. module: process -#: field:process.node,help_url:0 -msgid "Help URL" -msgstr "" - -#. module: process -#: model:ir.actions.act_window,name:process.action_process_node_form -#: model:ir.model,name:process.model_process_node -#: model:ir.ui.menu,name:process.menu_process_node_form -#: view:process.node:0 -#: view:process.process:0 -msgid "Process Nodes" -msgstr "" - -#. module: process -#: view:process.process:0 -#: field:process.process,node_ids:0 -msgid "Nodes" -msgstr "" - -#. module: process -#: view:process.node:0 -#: field:process.node,condition_ids:0 -#: view:process.process:0 -msgid "Conditions" -msgstr "" - -#. module: process -#: field:process.condition,node_id:0 -msgid "Node" -msgstr "" - -#. module: process -#: selection:process.transition.action,state:0 -msgid "Workflow Trigger" -msgstr "" - -#. module: process -#: field:process.transition,note:0 -msgid "Description" -msgstr "" - -#. module: process -#: model:ir.model,name:process.model_process_transition_action -msgid "Process Transitions Actions" -msgstr "" - -#. module: process -#: field:process.condition,model_id:0 -#: field:process.node,model_id:0 -#: field:process.process,model_id:0 -msgid "Object" -msgstr "" - -#. module: process -#: field:process.transition,source_node_id:0 -msgid "Source Node" -msgstr "" - -#. module: process -#: field:process.transition,transition_ids:0 -msgid "Workflow Transitions" -msgstr "" - -#. module: process -#: field:process.transition.action,action:0 -msgid "Action ID" -msgstr "" - -#. module: process -#: view:process.transition:0 -msgid "Process Transition" -msgstr "" - -#. module: process -#: model:ir.model,name:process.model_process_condition -#: view:process.node:0 -#: view:process.process:0 -msgid "Condition" -msgstr "" - -#. module: process -#: selection:process.transition.action,state:0 -msgid "Dummy" -msgstr "" - -#. module: process -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: process -#: field:process.condition,name:0 -#: field:process.node,name:0 -#: field:process.process,name:0 -#: field:process.transition,name:0 -#: field:process.transition.action,name:0 -msgid "Name" -msgstr "" - -#. module: process -#: field:process.transition,role_ids:0 -msgid "Roles" -msgstr "" - -#. module: process -#: field:process.node,transition_in:0 -msgid "Starting Transitions" -msgstr "" - -#. module: process -#: field:process.node,note:0 -#: field:process.process,note:0 -#: view:process.transition:0 -msgid "Notes" -msgstr "" - -#. module: process -#: view:process.node:0 -#: view:process.process:0 -#: field:process.transition.action,transition_id:0 -msgid "Transition" -msgstr "" - -#. module: process -#: view:process.node:0 -#: view:process.process:0 -#: view:process.transition:0 -msgid "Roles Required" -msgstr "" - -#. module: process -#: view:process.node:0 -#: view:process.process:0 -msgid "Extra Information" -msgstr "" - -#. module: process -#: selection:process.node,kind:0 -#: field:process.node,subflow_id:0 -msgid "Subflow" -msgstr "" - -#. module: process -#: field:process.process,active:0 -msgid "Active" -msgstr "" - -#. module: process -#: selection:process.transition.action,state:0 -msgid "Action" -msgstr "" - -#. module: process -#: field:process.node,flow_start:0 -msgid "Starting Flow" -msgstr "" - -#. module: process -#: field:process.condition,model_states:0 -msgid "Expression" -msgstr "" - -#. module: process -#: field:process.transition.action,state:0 -msgid "Type" -msgstr "" - -#. module: process -#: field:process.node,transition_out:0 -msgid "Ending Transitions" -msgstr "" - -#. module: process -#: model:ir.actions.act_window,name:process.action_process_form -#: model:ir.model,name:process.model_process_process -#: model:ir.ui.menu,name:process.menu_process_form -#: field:process.node,process_id:0 -#: view:process.process:0 -msgid "Process" -msgstr "" - -#. module: process -#: model:ir.module.module,shortdesc:process.module_meta_information -msgid "Enterprise Process" -msgstr "" - -#. module: process -#: view:process.node:0 -#: view:process.process:0 -#: view:process.transition:0 -msgid "Actions" -msgstr "" - -#. module: process -#: field:process.node,model_states:0 -msgid "States Expression" -msgstr "" - -#. module: process -#: model:ir.actions.act_window,name:process.action_process_transition_form -#: model:ir.model,name:process.model_process_transition -#: model:ir.ui.menu,name:process.menu_process_transition_form -msgid "Process Transitions" -msgstr "" - -#. module: process -#: field:process.transition,target_node_id:0 -msgid "Target Node" -msgstr "" - -#. module: process -#: field:process.node,kind:0 -msgid "Kind of Node" -msgstr "" - -#. module: process -#: view:process.node:0 -#: view:process.process:0 -msgid "Outgoing Transitions" -msgstr "" - -#. module: process -#: model:ir.ui.menu,name:process.menu_process -msgid "Enterprise Processes" -msgstr "" - -#. module: process -#: view:process.node:0 -#: view:process.process:0 -msgid "Transitions" -msgstr "" - -#. module: process -#: selection:process.transition.action,state:0 -msgid "Object Method" -msgstr "" - diff --git a/addons/product/i18n/tlh_TLH.po b/addons/product/i18n/tlh_TLH.po deleted file mode 100644 index daba4a15ac8..00000000000 --- a/addons/product/i18n/tlh_TLH.po +++ /dev/null @@ -1,1649 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * product -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: product -#: view:product.pricelist.item:0 -msgid "Max. Margin" -msgstr "" - -#. module: product -#: view:product.pricelist.item:0 -msgid "Base Price" -msgstr "" - -#. module: product -#: help:product.template,standard_price:0 -msgid "The cost of the product for accounting stock valuation. It can serves as a base price for supplier price." -msgstr "" - -#. module: product -#: selection:product.template,type:0 -msgid "Service" -msgstr "" - -#. module: product -#: help:product.template,purchase_ok:0 -msgid "Determine if the product is visible in the list of products within a selection from a purchase order line." -msgstr "" - -#. module: product -#: help:product.supplierinfo,name:0 -msgid "Supplier of this product" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_ram512_product_template -msgid "DDR 512MB PC400" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_0_product_template -msgid "Onsite Senior Intervention" -msgstr "" - -#. module: product -#: help:product.supplierinfo,qty:0 -msgid "The minimal quantity to purchase for this supplier, expressed in the default unit of measure." -msgstr "" - -#. module: product -#: field:product.template,weight_net:0 -msgid "Net weight" -msgstr "" - -#. module: product -#: help:product.product,incoming_qty:0 -msgid "Quantities of products that are planned to arrive in selected locations or all internal if none have been selected." -msgstr "" - -#. module: product -#: help:product.product,virtual_available:0 -msgid "Futur stock for this product according to the selected location or all internal if none have been selected. Computed as: Real Stock - Outgoing + Incoming." -msgstr "" - -#. module: product -#: field:product.packaging,width:0 -msgid "Width" -msgstr "" - -#. module: product -#: help:product.pricelist.item,product_tmpl_id:0 -msgid "Set a template if this rule only apply to a template of product. Keep empty for all products" -msgstr "" - -#. module: product -#: field:product.template,procure_method:0 -msgid "Procure Method" -msgstr "" - -#. module: product -#: model:process.process,name:product.process_process_productprocess0 -msgid "Product Process" -msgstr "" - -#. module: product -#: help:product.price.type,field:0 -msgid "Associated field in the product form." -msgstr "" - -#. module: product -#: selection:product.template,cost_method:0 -msgid "Standard Price" -msgstr "" - -#. module: product -#: code:addons/product/product.py:0 -#, python-format -msgid "Products: " -msgstr "" - -#. module: product -#: help:product.packaging,height:0 -msgid "The height of the package" -msgstr "" - -#. module: product -#: view:product.pricelist:0 -msgid "Products Price List" -msgstr "" - -#. module: product -#: model:product.category,name:product.cat1 -msgid "Sellable" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_26_product_template -msgid "Kit Keyboard + Mouse" -msgstr "" - -#. module: product -#: field:product.price.type,name:0 -msgid "Price Name" -msgstr "" - -#. module: product -#: field:product.product,price:0 -msgid "Customer Price" -msgstr "" - -#. module: product -#: field:product.template,company_id:0 -msgid "Company" -msgstr "" - -#. module: product -#: field:product.template,rental:0 -msgid "Rentable Product" -msgstr "" - -#. module: product -#: field:product.product,lst_price:0 -msgid "List Price" -msgstr "" - -#. module: product -#: model:ir.actions.act_window,name:product.product_price_type_action -#: model:ir.ui.menu,name:product.menu_product_price_type_action -msgid "Prices Types" -msgstr "" - -#. module: product -#: selection:product.template,type:0 -msgid "Stockable Product" -msgstr "" - -#. module: product -#: model:product.category,name:product.product_category_services -msgid "Services" -msgstr "" - -#. module: product -#: help:product.template,list_price:0 -msgid "Base price for computing the customer price. Sometimes called the catalog price." -msgstr "" - -#. module: product -#: code:addons/product/pricelist.py:0 -#, python-format -msgid "Partner section of the product form" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_cpu3_product_template -msgid "Processor AMD Athlon XP 2200+" -msgstr "" - -#. module: product -#: help:product.price.type,name:0 -msgid "Name of this kind of price." -msgstr "" - -#. module: product -#: help:product.pricelist.version,date_start:0 -msgid "Starting date for this pricelist version to be valid." -msgstr "" - -#. module: product -#: field:product.product,incoming_qty:0 -msgid "Incoming" -msgstr "" - -#. module: product -#: selection:product.template,procure_method:0 -msgid "Make to Stock" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Weigths" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_fan2_product_template -msgid "Silent fan" -msgstr "" - -#. module: product -#: help:product.template,supply_method:0 -msgid "Produce will generate production order or tasks, according to the product type. Purchase will trigger purchase orders when requested." -msgstr "" - -#. module: product -#: model:process.transition,note:product.process_transition_supplierofproduct0 -msgid "You can see the list of suppliers for that product." -msgstr "" - -#. module: product -#: help:product.packaging,rows:0 -msgid "The number of layer on a palet or box" -msgstr "" - -#. module: product -#: model:product.pricelist.type,name:product.pricelist_type_sale -#: field:res.partner,property_product_pricelist:0 -msgid "Sale Pricelist" -msgstr "" - -#. module: product -#: field:product.pricelist.item,base_pricelist_id:0 -msgid "If Other Pricelist" -msgstr "" - -#. module: product -#: model:ir.actions.act_window,name:product.product_normal_action -#: model:ir.actions.act_window,name:product.product_normal_action_tree -#: model:ir.ui.menu,name:product.menu_main_product -#: model:ir.ui.menu,name:product.menu_products -#: view:product.product:0 -msgid "Products" -msgstr "" - -#. module: product -#: view:product.pricelist.item:0 -msgid "New Price =" -msgstr "" - -#. module: product -#: field:product.product,virtual_available:0 -msgid "Virtual Stock" -msgstr "" - -#. module: product -#: selection:product.template,mes_type:0 -msgid "Fixed" -msgstr "" - -#. module: product -#: model:ir.actions.act_window,name:product.product_uom_categ_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_categ_form_action -msgid "Units of Measure Categories" -msgstr "" - -#. module: product -#: help:product.pricelist.item,product_id:0 -msgid "Set a product if this rule only apply to one product. Keep empty for all products" -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_pricelist_type -#: field:product.pricelist,type:0 -#: view:product.pricelist.type:0 -msgid "Pricelist Type" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Base Prices" -msgstr "" - -#. module: product -#: model:ir.ui.menu,name:product.menu_price -msgid "Prices Computations" -msgstr "" - -#. module: product -#: field:product.pricelist.item,name:0 -msgid "Rule Name" -msgstr "" - -#. module: product -#: model:ir.ui.menu,name:product.menu_config_product -msgid "Configuration" -msgstr "" - -#. module: product -#: field:product.packaging,rows:0 -msgid "Number of Layer" -msgstr "" - -#. module: product -#: constraint:product.category:0 -msgid "Error ! You can not create recursive categories." -msgstr "" - -#. module: product -#: field:product.template,uom_id:0 -msgid "Default UoM" -msgstr "" - -#. module: product -#: field:product.template,produce_delay:0 -msgid "Manufacturing Lead Time" -msgstr "" - -#. module: product -#: field:product.supplierinfo,pricelist_ids:0 -msgid "Supplier Pricelist" -msgstr "" - -#. module: product -#: view:product.packaging:0 -#: view:product.product:0 -msgid "Pallet Dimension" -msgstr "" - -#. module: product -#: field:product.pricelist.item,base:0 -msgid "Based on" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_24_product_template -msgid "Keyboard" -msgstr "" - -#. module: product -#: field:product.supplierinfo,name:0 -msgid "Partner" -msgstr "" - -#. module: product -#: field:product.template,sale_delay:0 -msgid "Customer Lead Time" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_25_product_template -msgid "Mouse" -msgstr "" - -#. module: product -#: help:product.template,cost_method:0 -msgid "Standard Price: the cost price is fixed and recomputed periodically (usually at the end of the year), Average Price: the cost price is recomputed at each reception of products." -msgstr "" - -#. module: product -#: field:product.pricelist,name:0 -msgid "Pricelist Name" -msgstr "" - -#. module: product -#: field:product.template,seller_ids:0 -msgid "Partners" -msgstr "" - -#. module: product -#: selection:product.template,cost_method:0 -msgid "Average Price" -msgstr "" - -#. module: product -#: model:process.node,note:product.process_node_product0 -msgid "Create new Product" -msgstr "" - -#. module: product -#: help:product.pricelist.item,name:0 -msgid "Explicit rule name for this pricelist line." -msgstr "" - -#. module: product -#: view:product.pricelist.item:0 -msgid "Min. Margin" -msgstr "" - -#. module: product -#: view:product.pricelist.item:0 -msgid "* ( 1 + " -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_cpu1_product_template -msgid "Processor AMD Athlon XP 1800+" -msgstr "" - -#. module: product -#: selection:product.template,state:0 -msgid "In Production" -msgstr "" - -#. module: product -#: field:product.category,child_id:0 -msgid "Child Categories" -msgstr "" - -#. module: product -#: model:product.category,name:product.product_category_accessories -msgid "Accessories" -msgstr "" - -#. module: product -#: field:product.supplierinfo,sequence:0 -msgid "Priority" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_20_product_template -msgid "HDD on demand" -msgstr "" - -#. module: product -#: field:product.uom,factor_inv:0 -#: field:product.uom,factor_inv_data:0 -msgid "Factor" -msgstr "" - -#. module: product -#: wizard_button:product.price_list,init,price:0 -msgid "Print" -msgstr "" - -#. module: product -#: model:process.node,name:product.process_node_supplier0 -msgid "Supplier Info" -msgstr "" - -#. module: product -#: field:product.ul,type:0 -msgid "Type" -msgstr "" - -#. module: product -#: wizard_field:product.price_list,init,price_list:0 -msgid "PriceList" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "UOM" -msgstr "" - -#. module: product -#: model:product.uom,name:product.product_uom_unit -msgid "PCE" -msgstr "" - -#. module: product -#: model:ir.actions.act_window,name:product.product_pricelist_action2 -#: model:ir.ui.menu,name:product.menu_product_pricelist_action2 -#: model:ir.ui.menu,name:product.menu_product_pricelist_main -msgid "Pricelists" -msgstr "" - -#. module: product -#: field:product.supplierinfo,product_name:0 -msgid "Partner Product Name" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Miscelleanous" -msgstr "" - -#. module: product -#: help:product.pricelist.item,base:0 -msgid "The mode for computing the price for this rule." -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_ul -msgid "Shipping Unit" -msgstr "" - -#. module: product -#: field:product.product,partner_ref:0 -msgid "Customer ref" -msgstr "" - -#. module: product -#: field:product.supplierinfo,qty:0 -msgid "Minimal Quantity" -msgstr "" - -#. module: product -#: model:product.category,name:product.product_category_pc -msgid "PC" -msgstr "" - -#. module: product -#: field:pricelist.partnerinfo,min_quantity:0 -msgid "Quantity" -msgstr "" - -#. module: product -#: field:product.template,seller_delay:0 -msgid "Supplier Lead Time" -msgstr "" - -#. module: product -#: model:product.pricelist.version,name:product.ver0 -msgid "Default Public Pricelist Version" -msgstr "" - -#. module: product -#: field:product.pricelist.type,key:0 -msgid "Key" -msgstr "" - -#. module: product -#: field:product.pricelist.item,price_version_id:0 -msgid "Price List Version" -msgstr "" - -#. module: product -#: view:product.pricelist.item:0 -msgid "Rules Test Match" -msgstr "" - -#. module: product -#: help:res.partner,property_product_pricelist:0 -msgid "This pricelist will be used, instead of the default one, for sales to the current partner" -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_pricelist -#: view:product.supplierinfo:0 -msgid "Pricelist" -msgstr "" - -#. module: product -#: selection:product.template,type:0 -msgid "Consumable" -msgstr "" - -#. module: product -#: help:product.price.type,currency_id:0 -msgid "The currency the field is expressed in." -msgstr "" - -#. module: product -#: code:addons/product/pricelist.py:0 -#, python-format -msgid "Other Pricelist" -msgstr "" - -#. module: product -#: help:product.template,weight:0 -msgid "The gross weight in Kg." -msgstr "" - -#. module: product -#: selection:product.ul,type:0 -msgid "Box" -msgstr "" - -#. module: product -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: product -#: help:product.template,sale_ok:0 -msgid "Determine if the product can be visible in the list of product within a selection from a sale order line." -msgstr "" - -#. module: product -#: constraint:product.template:0 -msgid "Error: UOS must be in a different category than the UOM" -msgstr "" - -#. module: product -#: field:product.category,parent_id:0 -msgid "Parent Category" -msgstr "" - -#. module: product -#: selection:product.template,state:0 -msgid "In Development" -msgstr "" - -#. module: product -#: help:product.pricelist.type,key:0 -msgid "Used in the code to select specific prices based on the context. Keep unchanged." -msgstr "" - -#. module: product -#: help:product.product,outgoing_qty:0 -msgid "Quantities of products that are planned to leave in selected locations or all internal if none have been selected." -msgstr "" - -#. module: product -#: field:product.packaging,weight:0 -msgid "Total Package Weight" -msgstr "" - -#. module: product -#: help:product.template,procure_method:0 -msgid "'Make to Stock': When needed, take from the stock or wait until re-supplying. 'Make to Order': When needed, purchase or produce for the procurement request." -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Procurement" -msgstr "" - -#. module: product -#: model:ir.actions.act_window,name:product.product_category_action -#: model:ir.ui.menu,name:product.menu_product_category_action -msgid "Products by Category" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_hdd1_product_template -msgid "HDD Seagate 7200.8 80GB" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_hdd3_product_template -msgid "HDD Seagate 7200.8 160GB" -msgstr "" - -#. module: product -#: view:product.product:0 -msgid "Product Variant" -msgstr "" - -#. module: product -#: field:product.packaging,ul:0 -msgid "Type of Package" -msgstr "" - -#. module: product -#: field:product.template,loc_rack:0 -msgid "Rack" -msgstr "" - -#. module: product -#: field:product.uom,category_id:0 -msgid "UoM Category" -msgstr "" - -#. module: product -#: selection:product.ul,type:0 -msgid "Pack" -msgstr "" - -#. module: product -#: field:product.product,ean13:0 -msgid "EAN13" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -#: field:product.template,description_sale:0 -msgid "Sale Description" -msgstr "" - -#. module: product -#: field:product.template,uos_id:0 -msgid "Unit of Sale" -msgstr "" - -#. module: product -#: field:product.template,mes_type:0 -msgid "Measure Type" -msgstr "" - -#. module: product -#: model:product.uom.categ,name:product.product_uom_categ_kgm -msgid "Weight" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_22_product_template -msgid "Processor on demand" -msgstr "" - -#. module: product -#: help:product.supplierinfo,product_name:0 -msgid "Name of the product for this partner, will be used when printing a request for quotation. Keep empty to use the internal one." -msgstr "" - -#. module: product -#: field:product.template,supply_method:0 -msgid "Supply method" -msgstr "" - -#. module: product -#: model:product.category,name:product.product_category_11 -msgid "IT components kits" -msgstr "" - -#. module: product -#: view:product.uom.categ:0 -msgid "Units of Measure categories" -msgstr "" - -#. module: product -#: view:product.supplierinfo:0 -msgid "Supplier Information" -msgstr "" - -#. module: product -#: model:ir.actions.act_window,name:product.product_ul_form_action -#: model:ir.model,name:product.model_product_packaging -#: model:ir.ui.menu,name:product.menu_product_ul_form_action -#: view:product.packaging:0 -#: view:product.product:0 -#: view:product.ul:0 -msgid "Packaging" -msgstr "" - -#. module: product -#: field:product.price.type,currency_id:0 -#: field:product.pricelist,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_cpu_gen_product_template -msgid "Regular processor config" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Descriptions" -msgstr "" - -#. module: product -#: model:process.transition,name:product.process_transition_supplierofproduct0 -msgid "Suppliers of Product" -msgstr "" - -#. module: product -#: field:product.pricelist.version,date_start:0 -msgid "Start Date" -msgstr "" - -#. module: product -#: view:res.partner:0 -msgid "Sales Properties" -msgstr "" - -#. module: product -#: help:product.product,qty_available:0 -msgid "Current quantities of products in selected locations or all internal if none have been selected." -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_pc1_product_template -msgid "Basic PC" -msgstr "" - -#. module: product -#: field:product.template,loc_row:0 -msgid "Row" -msgstr "" - -#. module: product -#: field:product.template,categ_id:0 -msgid "Category" -msgstr "" - -#. module: product -#: help:product.pricelist.item,min_quantity:0 -msgid "The rule only applies if the partner buys/sells more than this quantity." -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_ram_product_template -msgid "DDR 256MB PC400" -msgstr "" - -#. module: product -#: field:product.product,qty_available:0 -msgid "Real Stock" -msgstr "" - -#. module: product -#: view:product.category:0 -msgid "Product Categories" -msgstr "" - -#. module: product -#: help:product.uom,category_id:0 -msgid "Unit of Measure of a category can be converted between each others in the same category." -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_uom -msgid "Product Unit of Measure" -msgstr "" - -#. module: product -#: field:product.template,sale_ok:0 -msgid "Can be sold" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_23_product_template -msgid "Complete PC With Peripherals" -msgstr "" - -#. module: product -#: constraint:product.template:0 -msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_mb2_product_template -msgid "Mainboard ASUStek A7V8X-X" -msgstr "" - -#. module: product -#: field:product.uom,factor:0 -msgid "Rate" -msgstr "" - -#. module: product -#: view:product.pricelist.item:0 -msgid "Products Listprices Items" -msgstr "" - -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d unit" -msgstr "" - -#. module: product -#: field:product.uom,rounding:0 -msgid "Rounding Precision" -msgstr "" - -#. module: product -#: help:product.packaging,width:0 -msgid "The width of the package" -msgstr "" - -#. module: product -#: field:product.packaging,qty:0 -msgid "Quantity by Package" -msgstr "" - -#. module: product -#: help:product.template,uos_id:0 -msgid "Used by companies that manages two unit of measure: invoicing and stock management. For example, in food industries, you will manage a stock of ham but invoice in Kg. Keep empty to use the default UOM." -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Procurement & Locations" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -#: field:product.template,state:0 -msgid "Status" -msgstr "" - -#. module: product -#: field:product.product,outgoing_qty:0 -msgid "Outgoing" -msgstr "" - -#. module: product -#: selection:product.template,supply_method:0 -msgid "Buy" -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_pricelist_version -#: view:product.pricelist:0 -#: view:product.pricelist.version:0 -msgid "Pricelist Version" -msgstr "" - -#. module: product -#: field:product.pricelist.item,price_round:0 -msgid "Price Rounding" -msgstr "" - -#. module: product -#: model:product.price.type,name:product.list_price -msgid "Public Price" -msgstr "" - -#. module: product -#: field:product.pricelist.item,price_max_margin:0 -msgid "Max. Price Margin" -msgstr "" - -#. module: product -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "" - -#. module: product -#: model:product.category,name:product.product_category_10 -msgid "IT components" -msgstr "" - -#. module: product -#: help:product.packaging,weight_ul:0 -msgid "The weight of the empty UL" -msgstr "" - -#. module: product -#: help:product.packaging,code:0 -msgid "The code of the transport unit." -msgstr "" - -#. module: product -#: field:product.template,uom_po_id:0 -msgid "Purchase UoM" -msgstr "" - -#. module: product -#: view:product.price.type:0 -msgid "Products Price Type" -msgstr "" - -#. module: product -#: field:product.template,product_manager:0 -msgid "Product Manager" -msgstr "" - -#. module: product -#: field:product.product,price_extra:0 -msgid "Variant Price Extra" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_fan_product_template -msgid "Regular case fan 80mm" -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_supplierinfo -msgid "Information about a product supplier" -msgstr "" - -#. module: product -#: help:product.product,packaging:0 -msgid "Gives the different ways to package the same product. This has no impact on the packing order and is mainly used if you use the EDI module." -msgstr "" - -#. module: product -#: field:product.product,price_margin:0 -msgid "Variant Price Margin" -msgstr "" - -#. module: product -#: wizard_view:product.price_list,init:0 -msgid "Price list" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_pc3_product_template -msgid "Medium PC" -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_pricelist_partnerinfo -msgid "pricelist.partnerinfo" -msgstr "" - -#. module: product -#: model:product.price.type,name:product.standard_price -#: field:product.template,standard_price:0 -msgid "Cost Price" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -#: field:product.template,description_purchase:0 -msgid "Purchase Description" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Second UoM" -msgstr "" - -#. module: product -#: help:product.template,seller_delay:0 -msgid "This is the average delay in days between the purchase order confirmation and the reception of goods for this product and for the default supplier. It is used by the scheduler to order requests based on reordering delays." -msgstr "" - -#. module: product -#: model:product.category,name:product.product_category_4 -msgid "Dello Computer" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Storage Localisation" -msgstr "" - -#. module: product -#: help:product.packaging,length:0 -msgid "The length of the package" -msgstr "" - -#. module: product -#: field:product.pricelist.item,price_min_margin:0 -msgid "Min. Price Margin" -msgstr "" - -#. module: product -#: help:product.packaging,ean:0 -msgid "The EAN code of the package unit." -msgstr "" - -#. module: product -#: field:product.template,weight:0 -msgid "Gross weight" -msgstr "" - -#. module: product -#: field:product.price.type,active:0 -#: field:product.pricelist,active:0 -#: field:product.pricelist.version,active:0 -#: field:product.product,active:0 -#: field:product.uom,active:0 -msgid "Active" -msgstr "" - -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_category -#: field:product.pricelist.item,categ_id:0 -msgid "Product Category" -msgstr "" - -#. module: product -#: field:product.price.type,field:0 -msgid "Product Field" -msgstr "" - -#. module: product -#: model:ir.actions.act_window,name:product.product_pricelist_type_action -#: model:ir.ui.menu,name:product.menu_product_pricelist_type_action -msgid "Pricelists Types" -msgstr "" - -#. module: product -#: help:product.template,state:0 -msgid "Tells the user if he can use the product or not." -msgstr "" - -#. module: product -#: field:product.supplierinfo,product_code:0 -msgid "Partner Product Code" -msgstr "" - -#. module: product -#: model:product.category,name:product.product_category_3 -msgid "Computer Stuff" -msgstr "" - -#. module: product -#: field:product.packaging,code:0 -#: field:product.product,code:0 -#: field:product.product,default_code:0 -msgid "Code" -msgstr "" - -#. module: product -#: help:product.uom,factor_inv:0 -msgid "The coefficient for the formula:\n" -"coeff (base unit) = 1 (this unit). Factor = 1 / Rate." -msgstr "" - -#. module: product -#: view:product.supplierinfo:0 -msgid "Seq" -msgstr "" - -#. module: product -#: model:product.category,name:product.product_category_8 -msgid "Phone Help" -msgstr "" - -#. module: product -#: selection:product.template,mes_type:0 -msgid "Variable" -msgstr "" - -#. module: product -#: help:product.template,uom_id:0 -msgid "Default Unit of Measure used for all stock operation." -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_template -#: field:product.pricelist.item,product_tmpl_id:0 -#: field:product.product,product_tmpl_id:0 -#: view:product.template:0 -msgid "Product Template" -msgstr "" - -#. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: product -#: help:product.uom,rounding:0 -msgid "The computed quantity will be a multiple of this value. Use 1.0 for products that can not be split." -msgstr "" - -#. module: product -#: field:product.packaging,height:0 -msgid "Height" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_pc4_product_template -msgid "Customizable PC" -msgstr "" - -#. module: product -#: help:product.pricelist.version,date_end:0 -msgid "Ending date for this pricelist version to be valid." -msgstr "" - -#. module: product -#: field:pricelist.partnerinfo,suppinfo_id:0 -msgid "Partner Information" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -#: field:product.template,type:0 -msgid "Product Type" -msgstr "" - -#. module: product -#: model:product.category,name:product.product_category_7 -#: model:product.template,name:product.product_product_1_product_template -msgid "Onsite Intervention" -msgstr "" - -#. module: product -#: model:product.category,name:product.cat0 -msgid "All products" -msgstr "" - -#. module: product -#: wizard_button:product.price_list,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: product -#: help:product.packaging,qty:0 -msgid "The total number of products you can put by palet or box." -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_pricelist_item -msgid "Pricelist item" -msgstr "" - -#. module: product -#: model:ir.actions.wizard,name:product.report_wizard_price -#: field:product.pricelist.version,pricelist_id:0 -msgid "Price List" -msgstr "" - -#. module: product -#: model:product.pricelist,name:product.list0 -msgid "Public Pricelist" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_21_product_template -msgid "RAM on demand" -msgstr "" - -#. module: product -#: selection:product.ul,type:0 -#: model:product.uom.categ,name:product.product_uom_categ_unit -msgid "Unit" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_hdd2_product_template -msgid "HDD Seagate 7200.8 120GB" -msgstr "" - -#. module: product -#: wizard_field:product.price_list,init,qty2:0 -msgid "Quantity-2" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Information" -msgstr "" - -#. module: product -#: code:addons/product/report/product_pricelist.py:0 -#, python-format -msgid "%d units" -msgstr "" - -#. module: product -#: view:product.product:0 -msgid "Codes" -msgstr "" - -#. module: product -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: product -#: wizard_field:product.price_list,init,qty4:0 -msgid "Quantity-4" -msgstr "" - -#. module: product -#: wizard_field:product.price_list,init,qty5:0 -msgid "Quantity-5" -msgstr "" - -#. module: product -#: view:product.packaging:0 -#: view:product.product:0 -msgid "Other Info" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Delays" -msgstr "" - -#. module: product -#: field:product.pricelist.version,items_id:0 -msgid "Price List Items" -msgstr "" - -#. module: product -#: help:product.supplierinfo,product_code:0 -msgid "Code of the product for this partner, will be used when printing a request for quotation. Keep empty to use the internal one." -msgstr "" - -#. module: product -#: selection:product.template,state:0 -msgid "Obsolete" -msgstr "" - -#. module: product -#: selection:product.ul,type:0 -msgid "Pallet" -msgstr "" - -#. module: product -#: field:pricelist.partnerinfo,price:0 -msgid "Unit Price" -msgstr "" - -#. module: product -#: field:product.template,warranty:0 -msgid "Warranty (months)" -msgstr "" - -#. module: product -#: field:product.packaging,ul_qty:0 -msgid "Package by layer" -msgstr "" - -#. 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 "" - -#. module: product -#: model:process.node,note:product.process_node_supplier0 -msgid "Product suppliers, with their product name, price, etc." -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_price_type -msgid "Price type" -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_product -#: model:process.node,name:product.process_node_product0 -#: field:product.packaging,product_id:0 -#: field:product.pricelist.item,product_id:0 -#: view:product.product:0 -#: field:product.supplierinfo,product_id:0 -#: model:res.request.link,name:product.req_link_product -msgid "Product" -msgstr "" - -#. module: product -#: field:product.template,volume:0 -msgid "Volume" -msgstr "" - -#. module: product -#: field:pricelist.partnerinfo,name:0 -#: field:product.packaging,name:0 -#: view:product.product:0 -#: view:product.template:0 -#: field:product.template,description:0 -msgid "Description" -msgstr "" - -#. module: product -#: field:product.packaging,ean:0 -msgid "EAN" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Product Description" -msgstr "" - -#. module: product -#: view:product.pricelist.item:0 -msgid " ) + " -msgstr "" - -#. module: product -#: help:product.template,sale_delay:0 -msgid "This is the average time between the confirmation of the customer order and the delivery of the finished products. It's the time you promise to your customers." -msgstr "" - -#. module: product -#: model:ir.model,name:product.model_product_uom_categ -msgid "Product uom categ" -msgstr "" - -#. module: product -#: wizard_field:product.price_list,init,qty3:0 -msgid "Quantity-3" -msgstr "" - -#. module: product -#: model:product.ul,name:product.product_ul_box -msgid "Box 20x20x40" -msgstr "" - -#. module: product -#: selection:product.template,supply_method:0 -msgid "Produce" -msgstr "" - -#. module: product -#: selection:product.template,procure_method:0 -msgid "Make to Order" -msgstr "" - -#. module: product -#: field:product.pricelist.item,price_surcharge:0 -msgid "Price Surcharge" -msgstr "" - -#. module: product -#: view:product.pricelist.item:0 -msgid "Rounding Method" -msgstr "" - -#. module: product -#: field:product.product,variants:0 -msgid "Variants" -msgstr "" - -#. module: product -#: view:product.pricelist.item:0 -msgid "Price Computation" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_mb1_product_template -msgid "Mainboard ASUStek A7N8X" -msgstr "" - -#. module: product -#: field:product.template,loc_case:0 -msgid "Case" -msgstr "" - -#. module: product -#: field:product.pricelist.version,date_end:0 -msgid "End Date" -msgstr "" - -#. module: product -#: model:ir.actions.act_window,name:product.product_category_action_form -#: model:ir.ui.menu,name:product.menu_product_category_action_form -msgid "Products Categories" -msgstr "" - -#. module: product -#: field:product.product,packaging:0 -msgid "Logistical Units" -msgstr "" - -#. module: product -#: field:product.category,complete_name:0 -#: field:product.category,name:0 -#: field:product.pricelist.type,name:0 -#: field:product.pricelist.version,name:0 -#: field:product.template,name:0 -#: field:product.ul,name:0 -#: field:product.uom,name:0 -#: field:product.uom.categ,name:0 -msgid "Name" -msgstr "" - -#. module: product -#: help:product.template,uos_coeff:0 -msgid "Coefficient to convert UOM to UOS\n" -" uom = uos * coeff" -msgstr "" - -#. module: product -#: field:product.template,purchase_ok:0 -msgid "Can be Purchased" -msgstr "" - -#. module: product -#: field:product.template,uos_coeff:0 -msgid "UOM -> UOS Coeff" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_cpu2_product_template -msgid "High speed processor config" -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_pc2_product_template -msgid "Basic+ PC (assembly on order)" -msgstr "" - -#. module: product -#: field:product.template,cost_method:0 -msgid "Costing Method" -msgstr "" - -#. module: product -#: view:product.packaging:0 -#: view:product.product:0 -msgid "Palletization" -msgstr "" - -#. module: product -#: code:addons/product/pricelist.py:0 -#, python-format -msgid "Warning !" -msgstr "" - -#. module: product -#: view:product.product:0 -#: view:product.template:0 -msgid "Prices & Suppliers" -msgstr "" - -#. module: product -#: help:product.packaging,weight:0 -msgid "The weight of a full of products palet or box." -msgstr "" - -#. module: product -#: help:product.pricelist.item,price_round:0 -msgid "Sets the price so that it is a multiple of this value.\n" -"Rounding is applied after the discount and before the surcharge.\n" -"To have prices that end in 9.99, set rounding 10, surcharge -0.01" -msgstr "" - -#. module: product -#: selection:product.template,state:0 -msgid "End of Lifecycle" -msgstr "" - -#. module: product -#: model:ir.module.module,shortdesc:product.module_meta_information -msgid "Products & Pricelists" -msgstr "" - -#. module: product -#: help:product.uom,factor:0 -msgid "The coefficient for the formula:\n" -"1 (base unit) = coeff (this unit). Rate = 1 / Factor." -msgstr "" - -#. module: product -#: help:product.template,weight_net:0 -msgid "The net weight in Kg." -msgstr "" - -#. module: product -#: model:product.template,name:product.product_product_tow1_product_template -msgid "ATX Mid-size Tower" -msgstr "" - -#. module: product -#: field:product.supplierinfo,delay:0 -msgid "Delivery Delay" -msgstr "" - -#. module: product -#: model:ir.actions.act_window,name:product.product_pricelist_action -#: model:ir.ui.menu,name:product.menu_product_pricelist_action -#: field:product.pricelist,version_id:0 -msgid "Pricelist Versions" -msgstr "" - -#. module: product -#: field:product.packaging,weight_ul:0 -msgid "Empty Package Weight" -msgstr "" - -#. module: product -#: field:product.template,list_price:0 -msgid "Sale Price" -msgstr "" - -#. module: product -#: help:product.template,produce_delay:0 -msgid "Average time to produce this product. This is only for the production order and, if it is a multi-level bill of material, it's only for the level of this product. Different delays will be summed for all levels and purchase orders." -msgstr "" - -#. module: product -#: wizard_field:product.price_list,init,qty1:0 -msgid "Quantity-1" -msgstr "" - -#. module: product -#: field:product.packaging,length:0 -msgid "Length" -msgstr "" - -#. module: product -#: model:product.category,name:product.cat2 -msgid "Private" -msgstr "" - -#. module: product -#: help:product.supplierinfo,delay:0 -msgid "Delay in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning." -msgstr "" - -#. module: product -#: model:ir.actions.act_window,name:product.product_uom_form_action -#: model:ir.ui.menu,name:product.menu_product_uom_form_action -#: model:ir.ui.menu,name:product.next_id_16 -#: view:product.uom:0 -msgid "Units of Measure" -msgstr "" - -#. module: product -#: help:product.template,uom_po_id:0 -msgid "Default Unit of Measure used for purchase orders. It must in the same category than the default unit of measure." -msgstr "" - -#. module: product -#: constraint:product.product:0 -msgid "Error: Invalid ean code" -msgstr "" - -#. module: product -#: field:product.pricelist.item,min_quantity:0 -msgid "Min. Quantity" -msgstr "" - -#. module: product -#: help:product.pricelist.item,categ_id:0 -msgid "Set a category of product if this rule only apply to products of a category and his childs. Keep empty for all products" -msgstr "" - -#. module: product -#: model:ir.actions.report.xml,name:product.report_product_label -msgid "Products Labels" -msgstr "" - -#. module: product -#: help:product.template,volume:0 -msgid "The volume in m3." -msgstr "" - -#. module: product -#: model:product.ul,name:product.product_ul_big_box -msgid "Box 30x40x60" -msgstr "" - -#. module: product -#: model:product.uom,name:product.product_uom_kgm -msgid "KGM" -msgstr "" - -#. module: product -#: field:product.pricelist.item,price_discount:0 -msgid "Price Discount" -msgstr "" - diff --git a/addons/product_margin/i18n/tlh_TLH.po b/addons/product_margin/i18n/tlh_TLH.po deleted file mode 100644 index be73ca76a61..00000000000 --- a/addons/product_margin/i18n/tlh_TLH.po +++ /dev/null @@ -1,275 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * product_margin -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: product_margin -#: field:product.product,expected_margin_rate:0 -msgid "Expected Margin (%)" -msgstr "" - -#. module: product_margin -#: wizard_field:product.margins,init,from_date:0 -msgid "From" -msgstr "" - -#. module: product_margin -#: help:product.product,sale_expected:0 -msgid "Sum of Multification of Sale Catalog price and quantity of Customer Invoices" -msgstr "" - -#. module: product_margin -#: wizard_field:product.margins,init,to_date:0 -msgid "To" -msgstr "" - -#. module: product_margin -#: field:product.product,date_to:0 -msgid "To Date" -msgstr "" - -#. module: product_margin -#: field:product.product,date_from:0 -msgid "From Date" -msgstr "" - -#. module: product_margin -#: selection:product.margins,init,invoice_state:0 -#: selection:product.product,invoice_state:0 -msgid "Draft, Open and Paid" -msgstr "" - -#. module: product_margin -#: model:ir.ui.menu,name:product_margin.menu_product_reporting -msgid "Reporting" -msgstr "" - -#. module: product_margin -#: field:product.product,purchase_avg_price:0 -#: field:product.product,sale_avg_price:0 -msgid "Avg. Unit Price" -msgstr "" - -#. module: product_margin -#: model:ir.module.module,shortdesc:product_margin.module_meta_information -msgid "Margins in Product" -msgstr "" - -#. module: product_margin -#: help:product.product,total_cost:0 -msgid "Sum of Multification of Invoice price and quantity of Supplier Invoices " -msgstr "" - -#. module: product_margin -#: view:product.product:0 -msgid "Catalog Price" -msgstr "" - -#. module: product_margin -#: selection:product.margins,init,invoice_state:0 -#: selection:product.product,invoice_state:0 -msgid "Paid" -msgstr "" - -#. module: product_margin -#: help:product.product,sales_gap:0 -msgid "Excepted Sale - Turn Over" -msgstr "" - -#. module: product_margin -#: field:product.product,sale_expected:0 -msgid "Expected Sale" -msgstr "" - -#. module: product_margin -#: view:product.product:0 -msgid "Standard Price" -msgstr "" - -#. module: product_margin -#: help:product.product,purchase_num_invoiced:0 -msgid "Sum of Quantity in Supplier Invoices" -msgstr "" - -#. module: product_margin -#: help:product.product,normal_cost:0 -msgid "Sum of Multification of Cost price and quantity of Supplier Invoices" -msgstr "" - -#. module: product_margin -#: view:product.product:0 -#: field:product.product,turnover:0 -msgid "Turnover" -msgstr "" - -#. module: product_margin -#: field:product.product,purchase_num_invoiced:0 -#: field:product.product,sale_num_invoiced:0 -msgid "# Invoiced" -msgstr "" - -#. module: product_margin -#: view:product.product:0 -#: field:product.product,total_cost:0 -msgid "Total Cost" -msgstr "" - -#. module: product_margin -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: product_margin -#: help:product.product,expected_margin:0 -msgid "Excepted Sale - Normal Cost" -msgstr "" - -#. module: product_margin -#: field:product.product,expected_margin:0 -msgid "Expected Margin" -msgstr "" - -#. module: product_margin -#: help:product.product,total_margin:0 -msgid "Turnorder - Total Cost" -msgstr "" - -#. module: product_margin -#: view:product.product:0 -msgid "#Purchased" -msgstr "" - -#. module: product_margin -#: help:product.product,turnover:0 -msgid "Sum of Multification of Invoice price and quantity of Customer Invoices" -msgstr "" - -#. module: product_margin -#: help:product.product,expected_margin_rate:0 -msgid "Expected margin * 100 / Expected Sale" -msgstr "" - -#. module: product_margin -#: help:product.product,sale_avg_price:0 -msgid "Avg. Price in Customer Invoices)" -msgstr "" - -#. module: product_margin -#: wizard_view:product.margins,init:0 -msgid "Select " -msgstr "" - -#. module: product_margin -#: wizard_field:product.margins,init,invoice_state:0 -#: field:product.product,invoice_state:0 -msgid "Invoice State" -msgstr "" - -#. module: product_margin -#: help:product.product,purchase_gap:0 -msgid "Normal Cost - Total Cost" -msgstr "" - -#. module: product_margin -#: view:product.product:0 -#: field:product.product,sales_gap:0 -msgid "Sales Gap" -msgstr "" - -#. module: product_margin -#: field:product.product,normal_cost:0 -msgid "Normal Cost" -msgstr "" - -#. module: product_margin -#: view:product.product:0 -msgid "Purchases" -msgstr "" - -#. module: product_margin -#: help:product.product,purchase_avg_price:0 -msgid "Avg. Price in Supplier Invoices " -msgstr "" - -#. module: product_margin -#: field:product.product,total_margin:0 -msgid "Total Margin" -msgstr "" - -#. module: product_margin -#: help:product.product,total_margin_rate:0 -msgid "Total margin * 100 / Turnover" -msgstr "" - -#. module: product_margin -#: view:product.product:0 -msgid "Analysis Criteria" -msgstr "" - -#. module: product_margin -#: selection:product.margins,init,invoice_state:0 -#: selection:product.product,invoice_state:0 -msgid "Open and Paid" -msgstr "" - -#. module: product_margin -#: view:product.product:0 -msgid "Sales" -msgstr "" - -#. module: product_margin -#: code:addons/product_margin/wizard/wizard_product_margin.py:0 -#: model:ir.actions.wizard,name:product_margin.action_open_margin -#: model:ir.ui.menu,name:product_margin.menu_action_product_margin -#: view:product.product:0 -#, python-format -msgid "Product Margins" -msgstr "" - -#. module: product_margin -#: field:product.product,purchase_gap:0 -msgid "Purchase Gap" -msgstr "" - -#. module: product_margin -#: field:product.product,total_margin_rate:0 -msgid "Total Margin (%)" -msgstr "" - -#. module: product_margin -#: wizard_button:product.margins,init,open:0 -msgid "Open Margins" -msgstr "" - -#. module: product_margin -#: wizard_button:product.margins,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: product_margin -#: view:product.product:0 -msgid "Margins" -msgstr "" - -#. module: product_margin -#: help:product.product,sale_num_invoiced:0 -msgid "Sum of Quantity in Customer Invoices" -msgstr "" - -#. module: product_margin -#: wizard_view:product.margins,init:0 -msgid "View Stock of Products" -msgstr "" - diff --git a/addons/profile_accounting/i18n/tlh_TLH.po b/addons/profile_accounting/i18n/tlh_TLH.po deleted file mode 100644 index 0fccf008c8f..00000000000 --- a/addons/profile_accounting/i18n/tlh_TLH.po +++ /dev/null @@ -1,127 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * profile_accounting -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: profile_accounting -#: model:ir.actions.todo,note:profile_accounting.config_install_wizard -msgid "Install more modules. A few modules are proposed according to the Account Profile you selected. You will be able to install them based on our requirements." -msgstr "" - -#. module: profile_accounting -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: profile_accounting -#: view:profile.accounting.config.install_modules_wizard:0 -msgid "Services Management" -msgstr "" - -#. module: profile_accounting -#: help:profile.accounting.config.install_modules_wizard,board_document:0 -msgid "The Document Management System of Open ERP allows you to store, browse, automatically index, search and preview all kind of documents (internal documents, printed reports, calendar system). It opens an FTP access for the users to easily browse association's document." -msgstr "" - -#. module: profile_accounting -#: view:profile.accounting.config.install_modules_wizard:0 -msgid "Resources Management" -msgstr "" - -#. module: profile_accounting -#: field:profile.accounting.config.install_modules_wizard,account_payment:0 -msgid "Suppliers Payment Management" -msgstr "" - -#. module: profile_accounting -#: field:profile.accounting.config.install_modules_wizard,account_asset:0 -msgid "Asset Management" -msgstr "" - -#. module: profile_accounting -#: field:profile.accounting.config.install_modules_wizard,account_analytic_plans:0 -msgid "Multiple Analytic Plans" -msgstr "" - -#. module: profile_accounting -#: model:ir.actions.act_window,name:profile_accounting.action_config_install_module -msgid "Accounting Profile : Install Extra Modules" -msgstr "" - -#. module: profile_accounting -#: field:profile.accounting.config.install_modules_wizard,hr_timesheet_invoice:0 -msgid "Invoice on Analytic Entries" -msgstr "" - -#. module: profile_accounting -#: model:ir.module.module,description:profile_accounting.module_meta_information -msgid "Profile for Accounting" -msgstr "" - -#. module: profile_accounting -#: help:profile.accounting.config.install_modules_wizard,account_budget:0 -msgid "Helps you to manage financial and analytic budgets." -msgstr "" - -#. module: profile_accounting -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: profile_accounting -#: field:profile.accounting.config.install_modules_wizard,name:0 -msgid "Name" -msgstr "" - -#. module: profile_accounting -#: field:profile.accounting.config.install_modules_wizard,account_budget:0 -msgid "Budgets" -msgstr "" - -#. module: profile_accounting -#: view:profile.accounting.config.install_modules_wizard:0 -msgid "Install" -msgstr "" - -#. module: profile_accounting -#: view:profile.accounting.config.install_modules_wizard:0 -msgid "Install Extra Module" -msgstr "" - -#. module: profile_accounting -#: model:ir.module.module,shortdesc:profile_accounting.module_meta_information -msgid "Accounting only profile" -msgstr "" - -#. module: profile_accounting -#: field:profile.accounting.config.install_modules_wizard,account_analytic_analysis:0 -msgid "Analytic Accounting" -msgstr "" - -#. module: profile_accounting -#: field:profile.accounting.config.install_modules_wizard,board_document:0 -msgid "Document Management" -msgstr "" - -#. module: profile_accounting -#: model:ir.model,name:profile_accounting.model_profile_accounting_config_install_modules_wizard -msgid "profile.accounting.config.install_modules_wizard" -msgstr "" - -#. module: profile_accounting -#: view:profile.accounting.config.install_modules_wizard:0 -msgid "Cancel" -msgstr "" - diff --git a/addons/profile_association/i18n/tlh_TLH.po b/addons/profile_association/i18n/tlh_TLH.po deleted file mode 100644 index 7cba77d36a4..00000000000 --- a/addons/profile_association/i18n/tlh_TLH.po +++ /dev/null @@ -1,128 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * profile_association -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: profile_association -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: profile_association -#: view:profile.association.config.install_modules_wizard:0 -msgid "Relationship Management" -msgstr "" - -#. module: profile_association -#: help:profile.association.config.install_modules_wizard,project_gtd:0 -msgid "GTD is a methodology to efficiently organise yourself and your tasks. This module fully integrates GTD principle with OpenERP's project management." -msgstr "" - -#. module: profile_association -#: help:profile.association.config.install_modules_wizard,board_document:0 -msgid "The Document Management System of Open ERP allows you to store, browse, automatically index, search and preview all kind of documents (internal documents, printed reports, calendar system). It opens an FTP access for the users to easily browse association's document." -msgstr "" - -#. module: profile_association -#: view:profile.association.config.install_modules_wizard:0 -msgid "Resources Management" -msgstr "" - -#. module: profile_association -#: model:ir.model,name:profile_association.model_profile_association_config_install_modules_wizard -msgid "profile.association.config.install_modules_wizard" -msgstr "" - -#. module: profile_association -#: field:profile.association.config.install_modules_wizard,segmentation:0 -msgid "Segmentation" -msgstr "" - -#. module: profile_association -#: model:ir.module.module,shortdesc:profile_association.module_meta_information -msgid "Association profile" -msgstr "" - -#. module: profile_association -#: field:profile.association.config.install_modules_wizard,board_document:0 -msgid "Document Management" -msgstr "" - -#. module: profile_association -#: model:ir.actions.act_window,name:profile_association.action_config_install_module -msgid "Association Profile : Install Extra Modules" -msgstr "" - -#. module: profile_association -#: model:ir.module.module,description:profile_association.module_meta_information -msgid "Profile for Associates" -msgstr "" - -#. module: profile_association -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: profile_association -#: field:profile.association.config.install_modules_wizard,crm_configuration:0 -msgid "Partner Relation & Calendars" -msgstr "" - -#. module: profile_association -#: view:profile.association.config.install_modules_wizard:0 -msgid "Install" -msgstr "" - -#. module: profile_association -#: field:profile.association.config.install_modules_wizard,hr_expense:0 -msgid "Expenses Tracking" -msgstr "" - -#. module: profile_association -#: view:profile.association.config.install_modules_wizard:0 -msgid "Install Extra Module" -msgstr "" - -#. module: profile_association -#: view:profile.association.config.install_modules_wizard:0 -#: field:profile.association.config.install_modules_wizard,project:0 -msgid "Project Management" -msgstr "" - -#. module: profile_association -#: field:profile.association.config.install_modules_wizard,wiki:0 -msgid "Wiki" -msgstr "" - -#. module: profile_association -#: field:profile.association.config.install_modules_wizard,project_gtd:0 -msgid "Getting Things Done" -msgstr "" - -#. module: profile_association -#: help:profile.association.config.install_modules_wizard,hr_expense:0 -msgid "Tracks the personal expenses process, from the employee expense encoding, to the reimbursement of the employee up to the reinvoicing to the final customer." -msgstr "" - -#. module: profile_association -#: model:ir.actions.todo,note:profile_association.config_install_module -msgid "Install more modules. A few modules are proposed according to the association profile you selected. You will be able to install them based on our requirements." -msgstr "" - -#. module: profile_association -#: view:profile.association.config.install_modules_wizard:0 -msgid "Cancel" -msgstr "" - diff --git a/addons/profile_auction/i18n/tlh_TLH.po b/addons/profile_auction/i18n/tlh_TLH.po deleted file mode 100644 index 684111c2941..00000000000 --- a/addons/profile_auction/i18n/tlh_TLH.po +++ /dev/null @@ -1,22 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * profile_auction -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: profile_auction -#: model:ir.module.module,description:profile_auction.module_meta_information -msgid "Profile for Auction house" -msgstr "" - diff --git a/addons/profile_crm/i18n/tlh_TLH.po b/addons/profile_crm/i18n/tlh_TLH.po deleted file mode 100644 index 2995f93b1d0..00000000000 --- a/addons/profile_crm/i18n/tlh_TLH.po +++ /dev/null @@ -1,22 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * profile_crm -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: profile_crm -#: model:ir.module.module,description:profile_crm.module_meta_information -msgid "Profile for CRM" -msgstr "" - diff --git a/addons/profile_manufacturing/i18n/tlh_TLH.po b/addons/profile_manufacturing/i18n/tlh_TLH.po deleted file mode 100644 index ff904d975ea..00000000000 --- a/addons/profile_manufacturing/i18n/tlh_TLH.po +++ /dev/null @@ -1,193 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * profile_manufacturing -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,mrp_operation:0 -msgid "Manufacturing Operations" -msgstr "" - -#. module: profile_manufacturing -#: model:ir.module.module,description:profile_manufacturing.module_meta_information -msgid "Profile for manufacturing industries" -msgstr "" - -#. module: profile_manufacturing -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,mrp_jit:0 -msgid "Just in Time Scheduling" -msgstr "" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,sale_journal:0 -msgid "Manage by Journals" -msgstr "" - -#. module: profile_manufacturing -#: view:profile.manufacturing.config.install_modules_wizard:0 -msgid "Relationship Management" -msgstr "" - -#. module: profile_manufacturing -#: help:profile.manufacturing.config.install_modules_wizard,portal:0 -msgid "This module allows you to manage a Portal system." -msgstr "" - -#. module: profile_manufacturing -#: help:profile.manufacturing.config.install_modules_wizard,board_document:0 -msgid "The Document Management System of Open ERP allows you to store, browse, automatically index, search and preview all kind of documents (internal documents, printed reports, calendar system). It opens an FTP access for the users to easily browse association's document." -msgstr "" - -#. module: profile_manufacturing -#: help:profile.manufacturing.config.install_modules_wizard,sale_journal:0 -msgid "This module allows you to manage your sales, invoicing and picking by journals. You can define journals for trucks, salesman, departments, invoicing date delivery period, etc." -msgstr "" - -#. module: profile_manufacturing -#: model:ir.actions.act_window,name:profile_manufacturing.action_config_install_module -#: view:profile.manufacturing.config.install_modules_wizard:0 -msgid "Manufacturing Profile: Install Extra Modules" -msgstr "" - -#. module: profile_manufacturing -#: help:profile.manufacturing.config.install_modules_wizard,mrp_jit:0 -msgid "The JIT module allows you to not run the scheduler periodically. It's easier and faster for real time stock computation but, in counter-part, it manages less efficiently priorities in procurements." -msgstr "" - -#. module: profile_manufacturing -#: help:profile.manufacturing.config.install_modules_wizard,mrp_operation:0 -msgid "This module allows you to not only manage by production order but also by work order/operation. You will be able to planify, analyse the cost, check times, ... on all operations of each manufacturing order" -msgstr "" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,board_document:0 -msgid "Document Management" -msgstr "" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,portal:0 -msgid "Portal" -msgstr "" - -#. module: profile_manufacturing -#: view:profile.manufacturing.config.install_modules_wizard:0 -msgid "Stock & Manufacturing" -msgstr "" - -#. module: profile_manufacturing -#: help:profile.manufacturing.config.install_modules_wizard,mrp_repair:0 -msgid "Allow to manage product repairs. Handle the guarantee limit date and the invoicing of products and services." -msgstr "" - -#. module: profile_manufacturing -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: profile_manufacturing -#: model:ir.actions.todo,note:profile_manufacturing.config_install_module -msgid "Install more modules. A few modules are proposed according to the manufacturing profile you selected. You will be able to install them based on our requirements." -msgstr "" - -#. module: profile_manufacturing -#: help:profile.manufacturing.config.install_modules_wizard,mrp_subproduct:0 -msgid "This module allows you to add sub poducts in mrp bom." -msgstr "" - -#. module: profile_manufacturing -#: model:ir.module.module,shortdesc:profile_manufacturing.module_meta_information -msgid "Manufacturing industry profile" -msgstr "" - -#. module: profile_manufacturing -#: model:ir.model,name:profile_manufacturing.model_profile_manufacturing_config_install_modules_wizard -msgid "profile.manufacturing.config.install_modules_wizard" -msgstr "" - -#. module: profile_manufacturing -#: help:profile.manufacturing.config.install_modules_wizard,sale_crm:0 -msgid "This installs the customer relationship features like: leads and opportunities tracking, shared calendar, jobs tracking, bug tracker, and so on." -msgstr "" - -#. module: profile_manufacturing -#: view:profile.manufacturing.config.install_modules_wizard:0 -msgid "Install" -msgstr "" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,sale_crm:0 -msgid "CRM and Calendars" -msgstr "" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,mrp_repair:0 -msgid "Repair" -msgstr "" - -#. module: profile_manufacturing -#: help:profile.manufacturing.config.install_modules_wizard,sale_margin:0 -msgid "Display margins on the sale order form." -msgstr "" - -#. module: profile_manufacturing -#: help:profile.manufacturing.config.install_modules_wizard,point_of_sale:0 -msgid "This module allows you to manage a point of sale system. It offers a basic form for pos operations. You must also check our frontend point of sale for a perfect ergonomy with touchscreen materials and payment processing hardware." -msgstr "" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,mrp_subproduct:0 -msgid "Mrp Sub Product" -msgstr "" - -#. module: profile_manufacturing -#: view:profile.manufacturing.config.install_modules_wizard:0 -msgid "Sales Management" -msgstr "" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,warning:0 -msgid "Warning" -msgstr "" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,sale_margin:0 -msgid "Margins on Sales Order" -msgstr "" - -#. module: profile_manufacturing -#: help:profile.manufacturing.config.install_modules_wizard,stock_location:0 -msgid "Allows you to manage an advanced logistic with different locations. You can define, by product: default locations, path of locations for different operations, etc. This module is often used for: localisation of products, managing a manufacturing chain, a quality control location, product that you rent, etc." -msgstr "" - -#. module: profile_manufacturing -#: view:profile.manufacturing.config.install_modules_wizard:0 -msgid "Cancel" -msgstr "" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,point_of_sale:0 -msgid "Point of Sale" -msgstr "" - -#. module: profile_manufacturing -#: field:profile.manufacturing.config.install_modules_wizard,stock_location:0 -msgid "Advanced Locations" -msgstr "" - diff --git a/addons/profile_service/i18n/tlh_TLH.po b/addons/profile_service/i18n/tlh_TLH.po deleted file mode 100644 index a830bd6e47d..00000000000 --- a/addons/profile_service/i18n/tlh_TLH.po +++ /dev/null @@ -1,212 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * profile_service -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: profile_service -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: profile_service -#: view:profile.service.config.install_modules_wizard:0 -msgid "Services Management" -msgstr "" - -#. module: profile_service -#: view:profile.service.config.install_modules_wizard:0 -msgid "Relationship Management" -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,project_mrp:0 -msgid "Manages quotation and sales orders. It allows you to automatically create and invoice tasks on fixes prices from quotations." -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,project_gtd:0 -msgid "GTD is a methodology to efficiently organise yourself and your tasks. This module fully integrates GTD principle with OpenERP's project management." -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,board_document:0 -msgid "The Document Management System of Open ERP allows you to store, browse, automatically index, search and preview all kind of documents (internal documents, printed reports, calendar system). It opens an FTP access for the users to easily browse association's document." -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,account_budget_crossover:0 -msgid "Allows you to manage analytic budgets by journals. This module is used to manage budgets of your projects." -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,project_timesheet:0 -msgid "Timesheets" -msgstr "" - -#. module: profile_service -#: view:profile.service.config.install_modules_wizard:0 -msgid "Resources Management" -msgstr "" - -#. module: profile_service -#: model:ir.actions.act_window,name:profile_service.action_config_install_module -msgid "Service Profile : Install Extra Modules" -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,account_budget_crossover:0 -msgid "Analytic Budgets" -msgstr "" - -#. module: profile_service -#: model:ir.module.module,shortdesc:profile_service.module_meta_information -msgid "Service company profile" -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,hr_timesheet_invoice:0 -msgid "There are different invoicing methods in OpenERP: from sale orders, from shipping, ... Install this module if you plan to invoice your customers based on time spent on projects." -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,crm_configuration:0 -msgid "CRM & Calendars" -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,board_document:0 -msgid "Document Management" -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,portal:0 -msgid "Portal" -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,hr_holidays:0 -msgid "Tracks the full holidays management process, from the employee's request to the global planning." -msgstr "" - -#. module: profile_service -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,scrum:0 -msgid "Scrum is an 'agile development methodology', mainly used in IT projects. It helps you to manage teams, long term roadmaps, sprints, and so on." -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,portal:0 -msgid "This module allows you to manage a Portal system." -msgstr "" - -#. module: profile_service -#: view:profile.service.config.install_modules_wizard:0 -msgid "Portal Management" -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,hr_holidays:0 -msgid "Holidays Management" -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,crm_configuration:0 -msgid "This installs the customer relationship features like: leads and opportunities tracking, shared calendar, jobs tracking, bug tracker, and so on." -msgstr "" - -#. module: profile_service -#: view:profile.service.config.install_modules_wizard:0 -msgid "Install" -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,hr_expense:0 -msgid "Expenses Tracking" -msgstr "" - -#. module: profile_service -#: model:ir.model,name:profile_service.model_profile_service_config_install_modules_wizard -msgid "profile.service.config.install_modules_wizard" -msgstr "" - -#. module: profile_service -#: view:profile.service.config.install_modules_wizard:0 -msgid "Install Extra Module" -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,project_timesheet:0 -msgid "Timesheets allows you to track time and costs spent on different projects, represented by analytic accounts." -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,wiki:0 -msgid "Wiki" -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,project_gtd:0 -msgid "Getting Things Done" -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,base_contact:0 -msgid "Advanced Contacts Management" -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,hr_timesheet_invoice:0 -msgid "Invoice on Timesheets" -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,wiki:0 -msgid "An integrated wiki content management system. This is really usefull to manage FAQ, quality manuals, etc." -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,hr_expense:0 -msgid "Tracks the personal expenses process, from the employee expense encoding, to the reimbursement of the employee up to the reinvoicing to the final customer." -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,scrum:0 -msgid "Scrum Methodology" -msgstr "" - -#. module: profile_service -#: field:profile.service.config.install_modules_wizard,project_mrp:0 -msgid "Sales Management" -msgstr "" - -#. module: profile_service -#: model:ir.module.module,description:profile_service.module_meta_information -msgid "Profile for service companies" -msgstr "" - -#. module: profile_service -#: view:profile.service.config.install_modules_wizard:0 -msgid "Cancel" -msgstr "" - -#. module: profile_service -#: help:profile.service.config.install_modules_wizard,base_contact:0 -msgid "Allows you to manage partners (enterprises), addresses of partners and contacts of these partners (employee/people). Install this if you plan to manage your relationships with partners and contacts, with contacts having different jobs in different companies." -msgstr "" - diff --git a/addons/project/i18n/tlh_TLH.po b/addons/project/i18n/tlh_TLH.po deleted file mode 100644 index 9ca4658dac7..00000000000 --- a/addons/project/i18n/tlh_TLH.po +++ /dev/null @@ -1,1132 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * project -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: project -#: model:ir.actions.act_window,name:project.act_res_users_2_project_task_opened -msgid "Assigned tasks" -msgstr "" - -#. module: project -#: model:process.process,name:project.process_process_tasksprocess0 -msgid "Tasks Process" -msgstr "" - -#. module: project -#: help:project.task.delegate,init,name:0 -msgid "New title of the task delegated to the user." -msgstr "" - -#. module: project -#: code:addons/project/wizard/close_task.py:0 -#, python-format -msgid "Couldn't send mail because the contact for this task (%s) has no email address!" -msgstr "" - -#. module: project -#: view:config.compute.remaining:0 -msgid "Change Remaining Hours" -msgstr "" - -#. module: project -#: model:ir.actions.wizard,name:project.wizard_close_task -msgid "Close Task" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Project Tasks" -msgstr "" - -#. module: project -#: code:addons/project/project.py:0 -#, python-format -msgid "Operation Not Permitted !" -msgstr "" - -#. module: project -#: model:process.transition,name:project.process_transition_opendonetask0 -msgid "Open Done Task" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Delegations" -msgstr "" - -#. module: project -#: wizard_field:project.task.delegate,init,planned_hours_me:0 -msgid "Hours to Validate" -msgstr "" - -#. module: project -#: field:project.project,progress_rate:0 -msgid "Progress" -msgstr "" - -#. module: project -#: help:config.compute.remaining,remaining_hours:0 -#: help:project.task,remaining_hours:0 -msgid "Total remaining time, can be re-estimated periodically by the assignee of the task." -msgstr "" - -#. module: project -#: field:project.project,child_id:0 -msgid "Subproject" -msgstr "" - -#. module: project -#: field:project.project,members:0 -msgid "Project Members" -msgstr "" - -#. module: project -#: model:process.node,name:project.process_node_taskbydelegate0 -msgid "Task by delegate" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.open_view_my_project_my_run -#: model:ir.ui.menu,name:project.menu_open_view_my_project_my_run -msgid "My Running Projects" -msgstr "" - -#. module: project -#: field:project.task,child_ids:0 -msgid "Delegated Tasks" -msgstr "" - -#. module: project -#: help:project.project,warn_header:0 -msgid "Header added at the beginning of the email for the warning message sent to the customer when a task is closed." -msgstr "" - -#. module: project -#: field:project.task,priority:0 -msgid "Importance" -msgstr "" - -#. module: project -#: view:config.compute.remaining:0 -msgid "Update" -msgstr "" - -#. module: project -#: help:project.task.delegate,init,user_id:0 -msgid "User you want to delegate this task to." -msgstr "" - -#. module: project -#: help:project.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." -msgstr "" - -#. module: project -#: model:process.transition.action,name:project.process_transition_action_openpendingtask0 -msgid "Set pending" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.action_view_task7 -#: model:ir.ui.menu,name:project.menu_action_view_task7 -msgid "Unassigned Tasks" -msgstr "" - -#. module: project -#: model:process.node,note:project.process_node_drafttask0 -msgid "Define the Requirements and Set Planned Hours." -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.open_task_type_form -#: model:ir.ui.menu,name:project.menu_task_types -msgid "Task Types" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "New Project Based on Template" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.dblc_proj -msgid "Project's tasks" -msgstr "" - -#. module: project -#: selection:project.task,priority:0 -msgid "Very urgent" -msgstr "" - -#. module: project -#: wizard_button:project.task.delegate,init,valid:0 -msgid "Validate" -msgstr "" - -#. module: project -#: model:ir.module.module,description:project.module_meta_information -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: project -#: model:ir.actions.act_window,name:project.action_view_task5_prog_prog -#: model:ir.ui.menu,name:project.menu_tasks_yours_prog_prog -msgid "My Tasks in Progress" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "Set as Template" -msgstr "" - -#. module: project -#: model:process.node,name:project.process_node_drafttask0 -msgid "Draft task" -msgstr "" - -#. module: project -#: model:ir.model,name:project.model_project_task -#: field:project.task.work,task_id:0 -msgid "Task" -msgstr "" - -#. module: project -#: help:project.task.delegate,init,planned_hours_me:0 -msgid "Estimated time for you to validate the work done by the user to whom you delegate this task." -msgstr "" - -#. module: project -#: view:project.project:0 -#: field:project.project,notes:0 -#: view:project.task:0 -#: field:project.task,notes:0 -msgid "Notes" -msgstr "" - -#. module: project -#: selection:res.company,project_time_mode:0 -msgid "Days" -msgstr "" - -#. module: project -#: model:project.task.type,name:project.project_tt_analysis -msgid "Analysis" -msgstr "" - -#. module: project -#: model:ir.model,name:project.model_project_project -#: view:project.project:0 -#: field:project.task,project_id:0 -#: model:res.request.link,name:project.req_link_project -msgid "Project" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Start Task" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.action_view_task5_prog_draft -#: model:ir.ui.menu,name:project.menu_tasks_yours_prog_draft -msgid "My Draft Tasks" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "Automatic variables for headers and footer. Use exactly the same notation." -msgstr "" - -#. module: project -#: selection:project.project,state:0 -#: selection:project.task,state:0 -msgid "Cancelled" -msgstr "" - -#. module: project -#: view:project.project:0 -#: field:project.project,warn_header:0 -msgid "Mail Header" -msgstr "" - -#. module: project -#: model:process.node,name:project.process_node_donetask0 -msgid "Done task" -msgstr "" - -#. module: project -#: model:process.node,note:project.process_node_donetask0 -msgid "Task is Completed" -msgstr "" - -#. module: project -#: model:process.transition,note:project.process_transition_delegate0 -msgid "Delegates tasks to the other user" -msgstr "" - -#. module: project -#: code:addons/project/project.py:0 -#, python-format -msgid "A new project has been created !\nWe suggest you to close this one and work on this new project." -msgstr "" - -#. module: project -#: help:project.task,effective_hours:0 -msgid "Computed using the sum of the task work done." -msgstr "" - -#. module: project -#: help:project.project,warn_customer:0 -msgid "If you check this, the user will have a popup when closing a task that propose a message to send by email to the customer." -msgstr "" - -#. module: project -#: help:project.task.delegate,init,include_info:0 -msgid "Reinclude the description of the task in the task of the user." -msgstr "" - -#. module: project -#: field:project.project,category_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: project -#: field:project.task.work,user_id:0 -msgid "Done by" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.act_project_project_2_project_task_all -#: model:ir.actions.act_window,name:project.action_view_task -#: model:ir.ui.menu,name:project.menu_action_view_task -msgid "All Tasks" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Planning" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Extra Info" -msgstr "" - -#. module: project -#: field:project.project,partner_id:0 -#: field:project.task,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: project -#: field:project.task,planned_hours:0 -#: wizard_field:project.task.delegate,init,planned_hours:0 -msgid "Planned Hours" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "Task: %(name)s" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "Reset as Project" -msgstr "" - -#. module: project -#: selection:project.project,state:0 -msgid "Template" -msgstr "" - -#. module: project -#: wizard_button:project.task.close,mail_ask,mail_send:0 -msgid "Send Message" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "My projects" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.open_view_project_all -#: model:ir.ui.menu,name:project.menu_open_view_project_all -msgid "All projects" -msgstr "" - -#. module: project -#: model:process.transition,note:project.process_transition_draftopentask0 -msgid "From draft state, it will come into the open state." -msgstr "" - -#. module: project -#: wizard_view:project.task.delegate,init:0 -msgid "Delegated Task" -msgstr "" - -#. module: project -#: help:project.project,progress_rate:0 -msgid "Percent of tasks closed according to the total of tasks todo." -msgstr "" - -#. module: project -#: help:project.project,notes:0 -msgid "Internal description of the project." -msgstr "" - -#. module: project -#: field:project.project,parent_id:0 -msgid "Parent Project" -msgstr "" - -#. module: project -#: help:project.task,total_hours:0 -msgid "Computed as: Time Spent + Remaining Time." -msgstr "" - -#. module: project -#: field:project.task,type:0 -#: field:project.task.type,name:0 -msgid "Type" -msgstr "" - -#. module: project -#: selection:res.company,project_time_mode:0 -msgid "Weeks" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.action_view_task5_prog -#: model:ir.ui.menu,name:project.menu_tasks_yours_prog -msgid "My Current Tasks" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.open_view_project -#: model:ir.ui.menu,name:project.menu_open_view_project -msgid "New Project" -msgstr "" - -#. module: project -#: selection:project.task,priority:0 -msgid "Medium" -msgstr "" - -#. module: project -#: view:config.compute.remaining:0 -#: field:config.compute.remaining,remaining_hours:0 -#: field:project.task,remaining_hours:0 -msgid "Remaining Hours" -msgstr "" - -#. module: project -#: model:ir.model,name:project.model_project_task_type -msgid "Project task type" -msgstr "" - -#. module: project -#: field:project.project,planned_hours:0 -msgid "Planned Time" -msgstr "" - -#. module: project -#: model:ir.model,name:project.model_project_task_work -#: view:project.task.work:0 -msgid "Task Work" -msgstr "" - -#. module: project -#: selection:res.company,project_time_mode:0 -msgid "Hours" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.action_view_task5_pending -#: model:ir.ui.menu,name:project.menu_tasks_yours_pending -msgid "My Pending Tasks" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.act_project_project_2_project_task_opened -#: model:ir.actions.act_window,name:project.action_view_task6_prog -#: model:ir.ui.menu,name:project.menu_action_view_task6_prog -msgid "Tasks in Progress" -msgstr "" - -#. module: project -#: code:addons/project/project.py:0 -#, python-format -msgid "Operation Done" -msgstr "" - -#. module: project -#: wizard_field:project.task.delegate,init,name:0 -msgid "Delegated Title" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.open_view_my_project -#: model:ir.ui.menu,name:project.menu_open_view_my_project -msgid "My Projects" -msgstr "" - -#. module: project -#: help:project.task.delegate,init,planned_hours:0 -msgid "Estimated time to close this task by the delegated user." -msgstr "" - -#. module: project -#: model:ir.ui.menu,name:project.menu_definitions -#: view:res.company:0 -msgid "Configuration" -msgstr "" - -#. module: project -#: field:project.project,date_start:0 -#: field:project.task,date_start:0 -msgid "Starting Date" -msgstr "" - -#. module: project -#: model:ir.ui.menu,name:project.menu_all_project -#: view:project.project:0 -msgid "Projects" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Dates" -msgstr "" - -#. module: project -#: field:project.task,history:0 -msgid "Task Details" -msgstr "" - -#. module: project -#: model:process.node,name:project.process_node_triggerinvoice0 -msgid "Trigger Invoice" -msgstr "" - -#. module: project -#: model:process.transition,name:project.process_transition_draftopentask0 -msgid "Draft Open task" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "User: %(user_id)s" -msgstr "" - -#. module: project -#: field:project.task,delay_hours:0 -msgid "Delay Hours" -msgstr "" - -#. module: project -#: field:project.project,contact_id:0 -msgid "Contact" -msgstr "" - -#. module: project -#: model:process.transition,name:project.process_transition_delegate0 -#: view:project.task:0 -msgid "Delegate" -msgstr "" - -#. module: project -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: project -#: model:ir.module.module,shortdesc:project.module_meta_information -#: model:ir.ui.menu,name:project.menu_main -#: view:res.company:0 -msgid "Project Management" -msgstr "" - -#. module: project -#: field:project.project,effective_hours:0 -#: field:project.task.work,hours:0 -msgid "Time Spent" -msgstr "" - -#. module: project -#: model:ir.ui.menu,name:project.menu_tasks -#: view:project.task:0 -msgid "Tasks" -msgstr "" - -#. module: project -#: view:project.task.type:0 -msgid "Task type" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.action_view_task_new -#: model:ir.ui.menu,name:project.menu_action_view_task_new -msgid "New Task" -msgstr "" - -#. module: project -#: help:project.project,timesheet_id:0 -msgid "Timetable working hours to adjust the gantt diagram report" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "Project's members" -msgstr "" - -#. module: project -#: model:process.transition,note:project.process_transition_taskinvoice0 -msgid "After task is completed, Create its invoice." -msgstr "" - -#. module: project -#: help:project.task,progress:0 -msgid "Computed as: Time Spent / Total Time." -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.action_view_task4 -#: model:ir.ui.menu,name:project.menu_action_view_task4 -msgid "My Tasks" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "Status: %(state)s" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Planned" -msgstr "" - -#. module: project -#: help:project.project,total_hours:0 -msgid "Sum of total hours of all tasks related to this project." -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Delegated tasks" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Information" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Review" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "Administration" -msgstr "" - -#. module: project -#: wizard_field:project.task.close,mail_ask,email:0 -msgid "E-Mails" -msgstr "" - -#. module: project -#: model:process.node,note:project.process_node_triggerinvoice0 -msgid "Trigger invoices from sale order lines" -msgstr "" - -#. module: project -#: model:process.transition.action,name:project.process_transition_action_opendrafttask0 -#: view:project.task:0 -#: selection:project.task,state:0 -msgid "Draft" -msgstr "" - -#. module: project -#: selection:project.task,priority:0 -msgid "Low" -msgstr "" - -#. module: project -#: field:project.project,manager:0 -msgid "Project Manager" -msgstr "" - -#. module: project -#: view:project.project:0 -#: selection:project.project,state:0 -#: view:project.task:0 -#: selection:project.task,state:0 -#: selection:project.task.delegate,init,state:0 -msgid "Pending" -msgstr "" - -#. module: project -#: field:project.task,state:0 -msgid "Status" -msgstr "" - -#. module: project -#: help:project.task.delegate,init,state:0 -msgid "New state of your own task. Pending will be reopened automatically when the delegated task is closed." -msgstr "" - -#. module: project -#: field:res.company,project_time_mode:0 -msgid "Project Time Unit" -msgstr "" - -#. module: project -#: field:project.project,name:0 -msgid "Project Name" -msgstr "" - -#. module: project -#: field:project.project,total_hours:0 -msgid "Total Time" -msgstr "" - -#. module: project -#: wizard_field:project.task.delegate,init,include_info:0 -msgid "Copy Description" -msgstr "" - -#. module: project -#: field:project.project,active:0 -#: field:project.task,active:0 -msgid "Active" -msgstr "" - -#. module: project -#: model:project.task.type,name:project.project_tt_bug -msgid "Bug" -msgstr "" - -#. module: project -#: model:project.task.type,name:project.project_tt_quote -msgid "Quotation" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Task edition" -msgstr "" - -#. module: project -#: help:project.task,delay_hours:0 -msgid "Computed as: Total Time - Estimated Time. It gives the difference of the time estimated by the project manager and the real time to close the task." -msgstr "" - -#. module: project -#: model:process.node,name:project.process_node_opentask0 -msgid "Open task" -msgstr "" - -#. module: project -#: field:project.project,timesheet_id:0 -msgid "Working Time" -msgstr "" - -#. module: project -#: selection:res.company,project_time_mode:0 -msgid "Months" -msgstr "" - -#. module: project -#: model:process.transition,note:project.process_transition_opendonetask0 -msgid "When task is completed, it will come into the done state." -msgstr "" - -#. module: project -#: field:project.task.work,date:0 -msgid "Date" -msgstr "" - -#. module: project -#: help:res.company,project_time_mode:0 -msgid "This will set the unit of measure used in projects and tasks.\n" -"If you use the timesheet linked to projects (project_timesheet module), don't forget to setup the right unit of measure in your employees." -msgstr "" - -#. module: project -#: code:addons/project/wizard/close_task.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.act_res_users_2_project_project -msgid "User's projects" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "Reactivate Project" -msgstr "" - -#. module: project -#: selection:project.task,priority:0 -msgid "Urgent" -msgstr "" - -#. module: project -#: code:addons/project/wizard/close_task.py:0 -#, python-format -msgid "Couldn't send mail because your email address is not configured!" -msgstr "" - -#. module: project -#: wizard_view:project.task.delegate,init:0 -msgid "Delegate this task to a user" -msgstr "" - -#. module: project -#: field:project.task,date_close:0 -msgid "Date Closed" -msgstr "" - -#. module: project -#: field:project.task,user_id:0 -msgid "Assigned to" -msgstr "" - -#. module: project -#: help:project.task,planned_hours:0 -msgid "Estimated time to do the task, usually set by the project manager when the task is in draft state." -msgstr "" - -#. module: project -#: help:project.project,effective_hours:0 -msgid "Sum of spent hours of all tasks related to this project." -msgstr "" - -#. 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 "" - -#. module: project -#: help:project.project,planned_hours:0 -msgid "Sum of planned hours of all tasks related to this project." -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.act_res_users_2_project_task_work_month -msgid "Month works" -msgstr "" - -#. module: project -#: model:ir.actions.report.xml,name:project.report_project_project_gantt -#: model:ir.actions.report.xml,name:project.report_project_task_gantt -msgid "Gantt Representation" -msgstr "" - -#. module: project -#: field:project.project,warn_customer:0 -msgid "Warn Partner" -msgstr "" - -#. module: project -#: field:project.project,state:0 -msgid "State" -msgstr "" - -#. module: project -#: field:project.task,name:0 -msgid "Task summary" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "Date Start: %(date_start)s" -msgstr "" - -#. module: project -#: help:project.project,category_id:0 -msgid "Link this project to an analytic account if you need financial management on projects. It enables you to connect projects with budgets, planning, cost and revenue analysis, timesheets on projects, etc." -msgstr "" - -#. module: project -#: view:project.project:0 -#: selection:project.project,state:0 -#: view:project.task:0 -#: selection:project.task,state:0 -#: selection:project.task.delegate,init,state:0 -msgid "Done" -msgstr "" - -#. module: project -#: view:config.compute.remaining:0 -#: model:process.transition.action,name:project.process_transition_action_draftcanceltask0 -#: model:process.transition.action,name:project.process_transition_action_opencanceltask0 -#: view:project.project:0 -#: view:project.task:0 -#: wizard_button:project.task.close,mail_ask,end:0 -#: wizard_button:project.task.delegate,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.act_project_project_2_project_task_new -msgid "Create a Task" -msgstr "" - -#. module: project -#: model:process.transition.action,name:project.process_transition_action_draftopentask0 -msgid "Open" -msgstr "" - -#. module: project -#: code:addons/project/project.py:0 -#, python-format -msgid "You can not delete a project with tasks. I suggest you to deactivate it." -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "ID: %(task_id)s" -msgstr "" - -#. module: project -#: selection:project.task,state:0 -msgid "In Progress" -msgstr "" - -#. module: project -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Reactivate" -msgstr "" - -#. module: project -#: field:project.task,parent_id:0 -msgid "Parent Task" -msgstr "" - -#. module: project -#: view:project.task:0 -msgid "Delay" -msgstr "" - -#. module: project -#: selection:project.task,priority:0 -msgid "Very Low" -msgstr "" - -#. module: project -#: wizard_view:project.task.close,mail_ask:0 -msgid "Send mail to customer" -msgstr "" - -#. module: project -#: field:project.project,warn_manager:0 -msgid "Warn Manager" -msgstr "" - -#. module: project -#: model:ir.model,name:project.model_config_compute_remaining -msgid "config.compute.remaining" -msgstr "" - -#. module: project -#: wizard_button:project.task.close,mail_ask,close:0 -msgid "Quiet close" -msgstr "" - -#. module: project -#: help:project.task.delegate,init,prefix:0 -msgid "New title of your own task to validate the work done." -msgstr "" - -#. module: project -#: field:project.task,progress:0 -msgid "Progress (%)" -msgstr "" - -#. module: project -#: field:project.task,description:0 -#: wizard_field:project.task.close,mail_ask,description:0 -#: field:project.task.type,description:0 -msgid "Description" -msgstr "" - -#. module: project -#: model:process.transition,name:project.process_transition_taskinvoice0 -msgid "Task invoice" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.open_view_my_project_open -#: model:ir.ui.menu,name:project.menu_open_view_my_project_open -msgid "Projects Structure" -msgstr "" - -#. module: project -#: wizard_view:project.task.delegate,init:0 -msgid "Validation Task" -msgstr "" - -#. module: project -#: field:project.task,work_ids:0 -msgid "Work done" -msgstr "" - -#. module: project -#: selection:project.project,state:0 -msgid "Running" -msgstr "" - -#. 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 "" - -#. module: project -#: model:ir.actions.wizard,name:project.wizard_delegate_task -msgid "Delegate Task" -msgstr "" - -#. module: project -#: field:project.project,tasks:0 -msgid "Project tasks" -msgstr "" - -#. module: project -#: help:project.project,warn_manager:0 -msgid "If you check this field, the project manager will receive a request each time a task is completed by his team." -msgstr "" - -#. module: project -#: model:project.task.type,name:project.project_tt_feature -msgid "New Feature" -msgstr "" - -#. module: project -#: model:process.node,note:project.process_node_opentask0 -msgid "Encode your working hours." -msgstr "" - -#. module: project -#: wizard_field:project.task.delegate,init,prefix:0 -msgid "Your Task Title" -msgstr "" - -#. module: project -#: model:res.request.link,name:project.req_link_task -msgid "Project task" -msgstr "" - -#. module: project -#: field:project.task,effective_hours:0 -msgid "Hours Spent" -msgstr "" - -#. module: project -#: field:project.task,total_hours:0 -msgid "Total Hours" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.open_view_template_project -#: model:ir.ui.menu,name:project.menu_template_project -msgid "Template of Projects" -msgstr "" - -#. module: project -#: field:project.project,priority:0 -#: field:project.task,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: project -#: help:project.project,warn_footer:0 -msgid "Footer added at the beginning of the email for the warning message sent to the customer when a task is closed." -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "Partner Info" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.action_config_compute_remaining -msgid "Compute Remaining Hours" -msgstr "" - -#. module: project -#: wizard_field:project.task.delegate,init,state:0 -msgid "Validation State" -msgstr "" - -#. module: project -#: constraint:project.project:0 -msgid "Error ! You can not create recursive projects." -msgstr "" - -#. module: project -#: field:project.task,date_deadline:0 -msgid "Deadline" -msgstr "" - -#. module: project -#: wizard_field:project.task.delegate,init,user_id:0 -msgid "Assign To" -msgstr "" - -#. module: project -#: field:project.task.work,name:0 -msgid "Work summary" -msgstr "" - -#. module: project -#: view:project.project:0 -msgid "Date Stop: %(date_stop)s" -msgstr "" - -#. module: project -#: field:project.project,date_end:0 -msgid "Expected End" -msgstr "" - -#. module: project -#: model:process.node,note:project.process_node_taskbydelegate0 -msgid "Delegate your task to the other user" -msgstr "" - -#. module: project -#: view:project.project:0 -#: field:project.project,warn_footer:0 -msgid "Mail Footer" -msgstr "" - -#. module: project -#: model:ir.actions.act_window,name:project.open_view_project_open -#: model:ir.ui.menu,name:project.menu_open_view_project_open -msgid "Running projects" -msgstr "" - diff --git a/addons/project_gtd/i18n/tlh_TLH.po b/addons/project_gtd/i18n/tlh_TLH.po deleted file mode 100644 index 88612bacd2a..00000000000 --- a/addons/project_gtd/i18n/tlh_TLH.po +++ /dev/null @@ -1,313 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * project_gtd -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: project_gtd -#: view:project.gtd.timebox:0 -msgid "Visible Columns" -msgstr "" - -#. module: project_gtd -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: project_gtd -#: model:ir.model,name:project_gtd.model_project_gtd_timebox -msgid "project.gtd.timebox" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks_my_deadline_open -msgid "My Deadlines" -msgstr "" - -#. module: project_gtd -#: selection:project.gtd.timebox,type:0 -msgid "Monthly" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,parent_id:0 -msgid "Parent Timebox" -msgstr "" - -#. module: project_gtd -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: project_gtd -#: wizard_field:project.gtd.timebox.fill,init,task_ids:0 -msgid "Tasks selection" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,col_priority:0 -msgid "Priority" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks_my_inbox -#: model:ir.ui.menu,name:project_gtd.menu_open_time_myinbox -msgid "My Inbox" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.context,project_default_id:0 -msgid "Default Project" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,context4_id:0 -msgid "Context 4" -msgstr "" - -#. module: project_gtd -#: wizard_field:project.gtd.timebox.fill,init,timebox_to_id:0 -msgid "Set to Timebox" -msgstr "" - -#. module: project_gtd -#: selection:project.gtd.timebox,type:0 -msgid "Other" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,col_effective_hours:0 -msgid "Effective Hours" -msgstr "" - -#. module: project_gtd -#: view:project.gtd.timebox:0 -#: field:project.gtd.timebox,name:0 -#: field:project.task,timebox_id:0 -msgid "Timebox" -msgstr "" - -#. module: project_gtd -#: model:ir.module.module,shortdesc:project_gtd.module_meta_information -msgid "Getting Things Done - Time Management Module" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree_my -#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_my_contexts -msgid "My Contexts" -msgstr "" - -#. module: project_gtd -#: wizard_view:project.gtd.timebox.fill,init:0 -msgid "Timebox tasks selection" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,type:0 -msgid "Type" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.open_gtd_task_inbox -msgid "Inbox Tasks" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.wizard,name:project_gtd.open_gtd_timebox_empty -msgid "Empty Timebox" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks_my_pending -msgid "My Pending Tasks" -msgstr "" - -#. module: project_gtd -#: view:project.gtd.timebox:0 -msgid "Timebox Definition" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,user_id:0 -msgid "User" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.wizard,name:project_gtd.open_gtd_timebox_daily -#: model:ir.ui.menu,name:project_gtd.menu_open_time_daily_inbox -msgid "My Daily Timebox" -msgstr "" - -#. module: project_gtd -#: model:ir.model,name:project_gtd.model_project_gtd_context -msgid "project.gtd.context" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,context1_id:0 -msgid "Context 1" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,context2_id:0 -msgid "Context 2" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,context3_id:0 -msgid "Context 3" -msgstr "" - -#. module: project_gtd -#: wizard_button:project.gtd.timebox.fill,init,process:0 -msgid "Add to Timebox" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,context5_id:0 -msgid "Context 5" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,context6_id:0 -msgid "Context 6" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks -msgid "Timebox Tasks" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree -#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_contexts -#: view:project.gtd.timebox:0 -msgid "Contexts" -msgstr "" - -#. module: project_gtd -#: selection:project.gtd.timebox,type:0 -msgid "Daily" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.wizard,name:project_gtd.open_gtd_timebox_fill -msgid "Plannify Timebox" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,col_project:0 -msgid "Project" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.open_gtd_timebox_all -#: model:ir.actions.act_window,name:project_gtd.open_gtd_timebox_tree_my -#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_my_timeboxes -msgid "My Timeboxes" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.open_gtd_timebox_tree -#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_timeboxes -#: view:project.gtd.timebox:0 -msgid "Timeboxes" -msgstr "" - -#. module: project_gtd -#: view:project.gtd.context:0 -#: field:project.gtd.context,name:0 -#: field:project.task,context_id:0 -msgid "Context" -msgstr "" - -#. module: project_gtd -#: model:ir.actions.act_window,name:project_gtd.act_timebox_tasks_my_open -msgid "My Open Tasks" -msgstr "" - -#. module: project_gtd -#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time -#: model:ir.ui.menu,name:project_gtd.menu_open_time -msgid "Time Management" -msgstr "" - -#. module: project_gtd -#: view:project.task:0 -msgid "Getting Things Done" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,task1_ids:0 -#: field:project.gtd.timebox,task2_ids:0 -#: field:project.gtd.timebox,task3_ids:0 -#: field:project.gtd.timebox,task4_ids:0 -#: field:project.gtd.timebox,task5_ids:0 -#: field:project.gtd.timebox,task6_ids:0 -#: field:project.gtd.timebox,task_ids:0 -#: view:project.task:0 -msgid "Tasks" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.context,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,child_ids:0 -msgid "Child Timeboxes" -msgstr "" - -#. module: project_gtd -#: model:ir.ui.menu,name:project_gtd.menu_open_time_allinbox -msgid "All My Timeboxes" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,col_deadline:0 -msgid "Deadline" -msgstr "" - -#. module: project_gtd -#: view:project.task:0 -msgid "Est. Hours" -msgstr "" - -#. module: project_gtd -#: wizard_field:project.gtd.timebox.fill,init,timebox_id:0 -msgid "Get from Timebox" -msgstr "" - -#. module: project_gtd -#: wizard_button:project.gtd.timebox.fill,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,col_date_start:0 -msgid "Date Start" -msgstr "" - -#. module: project_gtd -#: field:project.gtd.timebox,col_planned_hours:0 -msgid "Planned Hours" -msgstr "" - -#. module: project_gtd -#: selection:project.gtd.timebox,type:0 -msgid "Weekly" -msgstr "" - diff --git a/addons/project_mrp/i18n/tlh_TLH.po b/addons/project_mrp/i18n/tlh_TLH.po deleted file mode 100644 index 28658f08d6f..00000000000 --- a/addons/project_mrp/i18n/tlh_TLH.po +++ /dev/null @@ -1,83 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * project_mrp -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: project_mrp -#: model:process.node,note:project_mrp.process_node_procuretasktask0 -msgid "For each product, on type service and on order" -msgstr "" - -#. module: project_mrp -#: model:process.node,name:project_mrp.process_node_mrptask0 -#: model:process.node,name:project_mrp.process_node_procuretasktask0 -msgid "Task" -msgstr "" - -#. module: project_mrp -#: model:process.transition,note:project_mrp.process_transition_ordertask0 -msgid "If procure method is Make to order and supply method is produce" -msgstr "" - -#. module: project_mrp -#: model:process.transition,note:project_mrp.process_transition_procuretask0 -msgid "if product type is 'service' then it creates the task." -msgstr "" - -#. module: project_mrp -#: field:project.task,procurement_id:0 -msgid "Procurement" -msgstr "" - -#. module: project_mrp -#: model:process.transition,note:project_mrp.process_transition_createtask0 -msgid "Product type is service, then its creates the task." -msgstr "" - -#. module: project_mrp -#: model:ir.module.module,shortdesc:project_mrp.module_meta_information -msgid "Project Management - MRP and Sale Integration" -msgstr "" - -#. module: project_mrp -#: model:process.transition,name:project_mrp.process_transition_procuretask0 -msgid "Procure Task" -msgstr "" - -#. module: project_mrp -#: model:process.node,note:project_mrp.process_node_mrptask0 -msgid "A task is created to provide the service." -msgstr "" - -#. module: project_mrp -#: model:process.transition,name:project_mrp.process_transition_ordertask0 -msgid "Order Task" -msgstr "" - -#. module: project_mrp -#: model:process.node,name:project_mrp.process_node_saleordertask0 -msgid "Sale Order Task" -msgstr "" - -#. module: project_mrp -#: model:process.transition,name:project_mrp.process_transition_createtask0 -msgid "Create Task" -msgstr "" - -#. module: project_mrp -#: model:process.node,note:project_mrp.process_node_saleordertask0 -msgid "In case you sell services on sale order" -msgstr "" - diff --git a/addons/project_retro_planning/i18n/tlh_TLH.po b/addons/project_retro_planning/i18n/tlh_TLH.po deleted file mode 100644 index 0b6e8d98738..00000000000 --- a/addons/project_retro_planning/i18n/tlh_TLH.po +++ /dev/null @@ -1,22 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * project_retro_planning -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: project_retro_planning -#: model:ir.module.module,shortdesc:project_retro_planning.module_meta_information -msgid "Project Retro planning" -msgstr "" - diff --git a/addons/project_timesheet/i18n/tlh_TLH.po b/addons/project_timesheet/i18n/tlh_TLH.po deleted file mode 100644 index 1d85518a04a..00000000000 --- a/addons/project_timesheet/i18n/tlh_TLH.po +++ /dev/null @@ -1,51 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * project_timesheet -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: project_timesheet -#: field:project.task.work,hr_analytic_timesheet_id:0 -msgid "Related Timeline Id" -msgstr "" - -#. module: project_timesheet -#: model:ir.module.module,shortdesc:project_timesheet.module_meta_information -msgid "Project Timesheet" -msgstr "" - -#. module: project_timesheet -#: code:addons/project_timesheet/project_timesheet.py:0 -#, python-format -msgid "No employee defined for this user. You must create one." -msgstr "" - -#. module: project_timesheet -#: code:addons/project_timesheet/project_timesheet.py:0 -#, python-format -msgid "No product defined on the related employee.\nFill in the timesheet tab of the employee form." -msgstr "" - -#. module: project_timesheet -#: code:addons/project_timesheet/project_timesheet.py:0 -#, python-format -msgid "No journal defined on the related employee.\nFill in the timesheet tab of the employee form." -msgstr "" - -#. module: project_timesheet -#: code:addons/project_timesheet/project_timesheet.py:0 -#, python-format -msgid "Bad Configuration !" -msgstr "" - diff --git a/addons/purchase/i18n/tlh_TLH.po b/addons/purchase/i18n/tlh_TLH.po deleted file mode 100644 index 16ca688f1e6..00000000000 --- a/addons/purchase/i18n/tlh_TLH.po +++ /dev/null @@ -1,907 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * purchase -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: purchase -#: field:purchase.order,invoiced:0 -msgid "Invoiced & Paid" -msgstr "" - -#. module: purchase -#: model:process.node,note:purchase.process_node_invoiceafterpacking0 -msgid "Supplier Invoice pre-generated on receptions for control" -msgstr "" - -#. module: purchase -#: field:purchase.order,location_id:0 -msgid "Destination" -msgstr "" - -#. module: purchase -#: selection:purchase.order,invoice_method:0 -msgid "From Picking" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "Validated By" -msgstr "" - -#. module: purchase -#: field:purchase.order,partner_id:0 -msgid "Supplier" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Delivery" -msgstr "" - -#. module: purchase -#: wizard_view:purchase.order.merge,init:0 -msgid "Please note that orders will only be merged if they are to the same partner and going to the same location, and lines will only be merged if they are exactly the same except for the quantity and unit." -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "No Pricelist !" -msgstr "" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.act_purchase_order_2_stock_picking -msgid "Packing" -msgstr "" - -#. module: purchase -#: model:process.node,name:purchase.process_node_confirmpurchaseorder0 -msgid "Confirmed Purchase" -msgstr "" - -#. module: purchase -#: selection:purchase.order,state:0 -msgid "Invoice Exception" -msgstr "" - -#. module: purchase -#: model:product.pricelist,name:purchase.list0 -msgid "Default Purchase Pricelist" -msgstr "" - -#. module: purchase -#: model:process.transition.action,name:purchase.process_transition_action_invoicefrompurchaseorder0 -msgid "Create invoice" -msgstr "" - -#. module: purchase -#: help:res.partner,property_product_pricelist_purchase:0 -msgid "This pricelist will be used, instead of the default one, for purchases from the current partner" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "Fax :" -msgstr "" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_productrecept0 -msgid "Create invoice from product recept" -msgstr "" - -#. module: purchase -#: help:purchase.order,pricelist_id:0 -msgid "The pricelist sets the currency used for this purchase order. It also computes the supplier price for the selected products/quantities." -msgstr "" - -#. module: purchase -#: model:process.process,name:purchase.process_process_purchaseprocess0 -msgid "Purchase Process" -msgstr "" - -#. module: purchase -#: field:purchase.order.line,product_qty:0 -msgid "Quantity" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Approve Purchase" -msgstr "" - -#. module: purchase -#: selection:purchase.order,state:0 -msgid "Approved" -msgstr "" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.purchase_form_action4 -#: model:ir.ui.menu,name:purchase.menu_purchase_form_action4 -msgid "Purchase Orders in Progress" -msgstr "" - -#. module: purchase -#: field:purchase.order,amount_untaxed:0 -msgid "Untaxed Amount" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -#: field:purchase.order,notes:0 -#: view:purchase.order.line:0 -#: field:purchase.order.line,notes:0 -msgid "Notes" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "N°" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -#: field:purchase.order,amount_tax:0 -#: field:purchase.order.line,taxes_id:0 -msgid "Taxes" -msgstr "" - -#. module: purchase -#: model:ir.actions.report.xml,name:purchase.report_purchase_order -#: model:process.node,name:purchase.process_node_purchaseorder0 -#: view:purchase.order:0 -#: model:res.request.link,name:purchase.req_link_purchase_order -#: field:stock.picking,purchase_id:0 -msgid "Purchase Order" -msgstr "" - -#. module: purchase -#: field:purchase.order,name:0 -msgid "Order Reference" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "Net Total :" -msgstr "" - -#. module: purchase -#: selection:purchase.order,state:0 -msgid "Cancelled" -msgstr "" - -#. module: purchase -#: help:purchase.order,state:0 -msgid "The state of the purchase order or the quotation request. A quotation is a purchase order in a 'Draft' state. Then the order has to be confirmed by the user, the state switch to 'Confirmed'. Then the supplier must confirm the order to change the state to 'Approved'. When the purchase order is paid and received, the state becomes 'Done'. If a cancel action occurs in the invoice or in the reception of goods, the state becomes in exception." -msgstr "" - -#. module: purchase -#: field:purchase.order,origin:0 -msgid "Origin" -msgstr "" - -#. module: purchase -#: model:process.node,name:purchase.process_node_packinglist0 -msgid "Incoming Products" -msgstr "" - -#. module: purchase -#: model:process.node,note:purchase.process_node_confirmpurchaseorder0 -msgid "Purchase order is confirmed by the user." -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Manually Corrected" -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "You must first cancel all invoices attached to this purchase order." -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Reference" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "TVA :" -msgstr "" - -#. module: purchase -#: rml:purchase.quotation:0 -msgid "Tel.:" -msgstr "" - -#. module: purchase -#: field:purchase.order.line,account_analytic_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: purchase -#: model:ir.model,name:purchase.model_purchase_order_line -msgid "Purchase Order lines" -msgstr "" - -#. module: purchase -#: field:purchase.order,validator:0 -msgid "Validated by" -msgstr "" - -#. module: purchase -#: help:purchase.order,invoice_method:0 -msgid "From Order: a draft invoice will be pre-generated based on the purchase order. The accountant will just have to validate this invoice for control.\n" -"From Picking: a draft invoice will be pre-genearted based on validated receptions.\n" -"Manual: no invoice will be pre-generated. The accountant will have to encode manually." -msgstr "" - -#. module: purchase -#: model:process.node,note:purchase.process_node_packinginvoice0 -msgid "Invoice based on deliveries" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "Net Price" -msgstr "" - -#. module: purchase -#: view:purchase.order.line:0 -msgid "Order Line" -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "You have to select a pricelist in the purchase form !\nPlease set one before choosing a product." -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "Wrong Product UOM !" -msgstr "" - -#. module: purchase -#: selection:purchase.order,state:0 -msgid "Confirmed" -msgstr "" - -#. module: purchase -#: model:process.node,name:purchase.process_node_productrecept0 -msgid "Product Receipt" -msgstr "" - -#. module: purchase -#: model:process.transition.action,name:purchase.process_transition_action_confirmpurchaseorder0 -msgid "Confirm" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Invoice Control" -msgstr "" - -#. module: purchase -#: model:process.node,name:purchase.process_node_draftpurchaseorder0 -#: model:process.node,name:purchase.process_node_draftpurchaseorder1 -msgid "RFQ" -msgstr "" - -#. module: purchase -#: selection:purchase.order,state:0 -msgid "Waiting" -msgstr "" - -#. module: purchase -#: field:purchase.order,picking_ids:0 -msgid "Picking List" -msgstr "" - -#. module: purchase -#: field:purchase.order,warehouse_id:0 -msgid "Warehouse" -msgstr "" - -#. module: purchase -#: field:purchase.order,order_line:0 -msgid "Order Lines" -msgstr "" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_confirmingpurchaseorder1 -msgid "Confirm Purchase order from Request for quotation without origin" -msgstr "" - -#. module: purchase -#: rml:purchase.quotation:0 -msgid "Fax:" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Untaxed amount" -msgstr "" - -#. module: purchase -#: rml:purchase.quotation:0 -msgid "Expected Date" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "Shipping address :" -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: purchase -#: field:purchase.order,minimum_planned_date:0 -msgid "Planned Date" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Approved by Supplier" -msgstr "" - -#. module: purchase -#: selection:purchase.order,invoice_method:0 -msgid "From Order" -msgstr "" - -#. module: purchase -#: model:ir.actions.wizard,name:purchase.purchase_order_merge -msgid "Merge purchases" -msgstr "" - -#. module: purchase -#: field:purchase.order.line,move_dest_id:0 -msgid "Reservation Destination" -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: purchase -#: selection:purchase.order,state:0 -msgid "Done" -msgstr "" - -#. module: purchase -#: field:purchase.order,pricelist_id:0 -msgid "Pricelist" -msgstr "" - -#. module: purchase -#: model:process.node,note:purchase.process_node_purchaseorder0 -msgid "When controlling invoice from orders" -msgstr "" - -#. module: purchase -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: purchase -#: model:process.node,note:purchase.process_node_invoicecontrol0 -msgid "Pre-generated supplier invoice to control based on order" -msgstr "" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_invoicefrompurchase0 -msgid "Invoice from Purchase" -msgstr "" - -#. module: purchase -#: model:process.node,note:purchase.process_node_packinglist0 -msgid "Packing is created for the products reception control." -msgstr "" - -#. module: purchase -#: selection:purchase.order,invoice_method:0 -msgid "Manual" -msgstr "" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_confirmingpurchaseorder1 -msgid "Confirming Purchase" -msgstr "" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_approvingpurchaseorder0 -msgid "Approve Purchase order after Confirming" -msgstr "" - -#. module: purchase -#: selection:purchase.order,state:0 -msgid "Shipping Exception" -msgstr "" - -#. module: purchase -#: model:process.node,note:purchase.process_node_draftpurchaseorder1 -msgid "Encoded manually by the user." -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -#: rml:purchase.quotation:0 -msgid "Qty" -msgstr "" - -#. module: purchase -#: help:purchase.order,minimum_planned_date:0 -msgid "This is computed as the minimum scheduled date of all purchase order lines' products." -msgstr "" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.act_res_partner_2_purchase_order -msgid "Purchase orders" -msgstr "" - -#. module: purchase -#: help:purchase.order,dest_address_id:0 -msgid "Put an address if you want to deliver directly from the supplier to the customer.In this case, it will remove the warehouse link and set the customer location." -msgstr "" - -#. module: purchase -#: rml:purchase.quotation:0 -msgid "Request for Quotation :" -msgstr "" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_confirmingpurchaseorder0 -msgid "Confirm Purchase order from Request for quotation" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Confirm Purchase Order" -msgstr "" - -#. module: purchase -#: help:purchase.order,picking_ids:0 -msgid "This is the list of picking list that have been generated for this purchase" -msgstr "" - -#. module: purchase -#: model:ir.module.module,shortdesc:purchase.module_meta_information -#: model:ir.ui.menu,name:purchase.menu_purchase_root -msgid "Purchase Management" -msgstr "" - -#. module: purchase -#: field:purchase.order,partner_ref:0 -msgid "Partner Ref." -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "Taxes :" -msgstr "" - -#. module: purchase -#: field:purchase.order,invoiced_rate:0 -msgid "Invoiced" -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "You have to select a product UOM in the same category than the purchase UOM of the product" -msgstr "" - -#. module: purchase -#: field:purchase.order,dest_address_id:0 -msgid "Destination Address" -msgstr "" - -#. module: purchase -#: view:purchase.order.line:0 -#: field:stock.move,purchase_line_id:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "You have to select a partner in the purchase form !\nPlease set one partner before choosing a product." -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Calendar View" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Set to Draft" -msgstr "" - -#. module: purchase -#: model:process.node,note:purchase.process_node_approvepurchaseorder0 -msgid "Purchase order is approved by supplier." -msgstr "" - -#. module: purchase -#: model:process.node,name:purchase.process_node_invoiceafterpacking0 -#: model:process.node,name:purchase.process_node_invoicecontrol0 -msgid "Draft Invoice" -msgstr "" - -#. module: purchase -#: model:ir.model,name:purchase.model_purchase_order -msgid "Purchase order" -msgstr "" - -#. module: purchase -#: model:process.node,note:purchase.process_node_draftpurchaseorder0 -msgid "Request for quotation is proposed by the system." -msgstr "" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_packinginvoice0 -msgid "Packing Invoice" -msgstr "" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_invoicefrompackinglist0 -msgid "Creates invoice from packin list" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Delivery & Invoices" -msgstr "" - -#. module: purchase -#: help:purchase.order,origin:0 -msgid "Reference of the document that generated this purchase order request." -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "There is no expense account defined for this product: \"%s\" (id:%d)" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "Tél. :" -msgstr "" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_purchaseinvoice0 -msgid "After Purchase order , Create invoice." -msgstr "" - -#. module: purchase -#: field:purchase.order.line,date_planned:0 -msgid "Scheduled date" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "Our Order Reference" -msgstr "" - -#. module: purchase -#: rml:purchase.quotation:0 -msgid "TVA:" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Compute" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Cancel Purchase Order" -msgstr "" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_createpackinglist0 -msgid "Create Packing list" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "Total :" -msgstr "" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_createpackinglist0 -msgid "When purchase order is approved , it creates its packing list." -msgstr "" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_invoicefrompackinglist0 -msgid "Invoice from Packing list" -msgstr "" - -#. module: purchase -#: field:purchase.order,state:0 -msgid "Order Status" -msgstr "" - -#. module: purchase -#: field:purchase.order.line,price_subtotal:0 -msgid "Subtotal" -msgstr "" - -#. module: purchase -#: model:product.pricelist.version,name:purchase.ver0 -msgid "Default Purchase Pricelist Version" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -#: field:purchase.order.line,price_unit:0 -msgid "Unit Price" -msgstr "" - -#. module: purchase -#: field:purchase.order,fiscal_position:0 -msgid "Fiscal Position" -msgstr "" - -#. module: purchase -#: field:purchase.order,invoice_id:0 -msgid "Invoice" -msgstr "" - -#. module: purchase -#: model:process.transition.action,name:purchase.process_transition_action_approvingcancelpurchaseorder0 -#: model:process.transition.action,name:purchase.process_transition_action_cancelpurchaseorder0 -#: wizard_button:purchase.order.merge,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: purchase -#: view:res.partner:0 -msgid "Purchases Properties" -msgstr "" - -#. module: purchase -#: field:purchase.order.line,order_id:0 -msgid "Order Ref" -msgstr "" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.purchase_form_action -#: model:ir.ui.menu,name:purchase.menu_purchase_form_action -msgid "Purchase Orders" -msgstr "" - -#. module: purchase -#: wizard_view:purchase.order.merge,init:0 -#: wizard_button:purchase.order.merge,init,merge:0 -msgid "Merge orders" -msgstr "" - -#. module: purchase -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.purchase_form_action_new -#: model:ir.ui.menu,name:purchase.menu_purchase_form_action_new -msgid "New Purchase Order" -msgstr "" - -#. module: purchase -#: field:purchase.order,shipped:0 -#: field:purchase.order,shipped_rate:0 -msgid "Received" -msgstr "" - -#. module: purchase -#: model:ir.actions.report.xml,name:purchase.report_purchase_quotation -#: selection:purchase.order,state:0 -msgid "Request for Quotation" -msgstr "" - -#. module: purchase -#: model:process.node,name:purchase.process_node_packinginvoice0 -msgid "Out Packing" -msgstr "" - -#. module: purchase -#: model:process.node,note:purchase.process_node_productrecept0 -msgid "Control invoices on receptions" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "Date Req." -msgstr "" - -#. module: purchase -#: field:purchase.order,date_approve:0 -msgid "Date Approved" -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "Could not cancel this purchase order !" -msgstr "" - -#. module: purchase -#: 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: purchase -#: field:purchase.order.line,product_id:0 -msgid "Product" -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "No Partner!" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -#: field:purchase.order.line,name:0 -#: rml:purchase.quotation:0 -msgid "Description" -msgstr "" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_productrecept0 -msgid "Product recept invoice" -msgstr "" - -#. module: purchase -#: rml:purchase.quotation:0 -msgid "Expected Delivery address:" -msgstr "" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.purchase_form_action3 -#: model:ir.ui.menu,name:purchase.menu_purchase_form_action3 -msgid "Purchase Order Waiting Approval" -msgstr "" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_confirmingpurchaseorder0 -msgid "Confirming Purchase Order" -msgstr "" - -#. module: purchase -#: field:purchase.order.line,product_uom:0 -msgid "Product UOM" -msgstr "" - -#. module: purchase -#: rml:purchase.quotation:0 -msgid "Regards," -msgstr "" - -#. module: purchase -#: field:purchase.order.line,move_id:0 -msgid "Reservation" -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "Could not cancel purchase order !" -msgstr "" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_purchaseinvoice0 -msgid "Purchase Invoice" -msgstr "" - -#. module: purchase -#: code:addons/purchase/purchase.py:0 -#, python-format -msgid "You must first cancel all packing attached to this purchase order." -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -msgid "Your Order Reference" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Total amount" -msgstr "" - -#. module: purchase -#: rml:purchase.order:0 -#: field:purchase.order,date_order:0 -msgid "Date Ordered" -msgstr "" - -#. module: purchase -#: view:purchase.order:0 -msgid "Purchase Control" -msgstr "" - -#. module: purchase -#: model:ir.actions.act_window,name:purchase.purchase_form_action2 -#: model:ir.ui.menu,name:purchase.menu_purchase_order_draft -msgid "Request For Quotations" -msgstr "" - -#. module: purchase -#: model:product.pricelist.type,name:purchase.pricelist_type_purchase -#: field:res.partner,property_product_pricelist_purchase:0 -msgid "Purchase Pricelist" -msgstr "" - -#. module: purchase -#: field:purchase.order,invoice_method:0 -msgid "Invoicing Control" -msgstr "" - -#. module: purchase -#: model:process.transition.action,name:purchase.process_transition_action_approvingpurchaseorder0 -msgid "Approve" -msgstr "" - -#. module: purchase -#: model:process.node,name:purchase.process_node_approvepurchaseorder0 -msgid "Approved Purchase" -msgstr "" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_packinginvoice0 -msgid "From Packing list, Create invoice." -msgstr "" - -#. module: purchase -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - -#. module: purchase -#: wizard_view:purchase.order.merge,init:0 -msgid "Are you sure you want to merge these orders ?" -msgstr "" - -#. module: purchase -#: model:process.transition,name:purchase.process_transition_approvingpurchaseorder0 -msgid "Approving Purchase Order" -msgstr "" - -#. module: purchase -#: model:process.transition,note:purchase.process_transition_invoicefrompurchase0 -msgid "After approved purchase order , it comes into the supplier invoice" -msgstr "" - -#. module: purchase -#: field:purchase.order,amount_total:0 -msgid "Total" -msgstr "" - diff --git a/addons/purchase_analytic_plans/i18n/tlh_TLH.po b/addons/purchase_analytic_plans/i18n/tlh_TLH.po deleted file mode 100644 index 54267168ccb..00000000000 --- a/addons/purchase_analytic_plans/i18n/tlh_TLH.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * purchase_analytic_plans -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: purchase_analytic_plans -#: field:purchase.order.line,analytics_id:0 -msgid "Analytic Distribution" -msgstr "" - -#. module: purchase_analytic_plans -#: model:ir.module.module,shortdesc:purchase_analytic_plans.module_meta_information -msgid "Purchase Analytic Distribution Management" -msgstr "" - -#. module: purchase_analytic_plans -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - diff --git a/addons/report_account/i18n/tlh_TLH.po b/addons/report_account/i18n/tlh_TLH.po deleted file mode 100644 index 2134636e951..00000000000 --- a/addons/report_account/i18n/tlh_TLH.po +++ /dev/null @@ -1,73 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_account -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_account -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_account -#: model:ir.actions.act_window,name:report_account.action_account_receivable_graph -#: model:ir.ui.menu,name:report_account.menu_account_receivable_graph -msgid "Balance by Type of Account" -msgstr "" - -#. module: report_account -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_account -#: model:ir.model,name:report_account.model_report_account_receivable -msgid "Receivable accounts" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,credit:0 -msgid "Credit" -msgstr "" - -#. module: report_account -#: view:report.account.receivable:0 -msgid "Accounts by type" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,name:0 -msgid "Week of Year" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,type:0 -msgid "Account Type" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,debit:0 -msgid "Debit" -msgstr "" - -#. module: report_account -#: field:report.account.receivable,balance:0 -msgid "Balance" -msgstr "" - -#. module: report_account -#: model:ir.module.module,shortdesc:report_account.module_meta_information -msgid "Account Reporting - Reporting" -msgstr "" - diff --git a/addons/report_analytic/i18n/tlh_TLH.po b/addons/report_analytic/i18n/tlh_TLH.po deleted file mode 100644 index 5a515007fc2..00000000000 --- a/addons/report_analytic/i18n/tlh_TLH.po +++ /dev/null @@ -1,79 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_analytic -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_analytic -#: model:ir.model,name:report_analytic.model_report_analytic_account_close -msgid "Analytic account to close" -msgstr "" - -#. module: report_analytic -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_analytic -#: field:report.analytic.account.close,quantity_max:0 -msgid "Max. Quantity" -msgstr "" - -#. module: report_analytic -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_analytic -#: field:report.analytic.account.close,name:0 -msgid "Analytic account" -msgstr "" - -#. module: report_analytic -#: field:report.analytic.account.close,state:0 -msgid "State" -msgstr "" - -#. module: report_analytic -#: field:report.analytic.account.close,date_deadline:0 -msgid "Deadline" -msgstr "" - -#. module: report_analytic -#: model:ir.module.module,shortdesc:report_analytic.module_meta_information -msgid "Analytic Account Reporting" -msgstr "" - -#. module: report_analytic -#: field:report.analytic.account.close,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: report_analytic -#: field:report.analytic.account.close,balance:0 -msgid "Balance" -msgstr "" - -#. module: report_analytic -#: model:ir.actions.act_window,name:report_analytic.action_analytic_account_tree -#: model:ir.ui.menu,name:report_analytic.menu_action_analytic_account_tree -#: view:report.analytic.account.close:0 -msgid "Expired analytic accounts" -msgstr "" - -#. module: report_analytic -#: field:report.analytic.account.close,quantity:0 -msgid "Quantity" -msgstr "" - diff --git a/addons/report_analytic_line/i18n/tlh_TLH.po b/addons/report_analytic_line/i18n/tlh_TLH.po deleted file mode 100644 index 83adff7a5a2..00000000000 --- a/addons/report_analytic_line/i18n/tlh_TLH.po +++ /dev/null @@ -1,84 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_analytic_line -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_analytic_line -#: model:ir.actions.act_window,name:report_analytic_line.act_acc_analytic_acc_2_report_acc_analytic_line_to_invoice -msgid "Lines to Invoice" -msgstr "" - -#. module: report_analytic_line -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_analytic_line -#: field:report.account.analytic.line.to.invoice,product_id:0 -msgid "Product" -msgstr "" - -#. module: report_analytic_line -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_analytic_line -#: model:ir.actions.act_window,name:report_analytic_line.action_account_analytic_line_to_invoice -#: model:ir.ui.menu,name:report_analytic_line.account_analytic_lines_to_invoice_report -#: view:report.account.analytic.line.to.invoice:0 -msgid "Analytic Lines to Invoice" -msgstr "" - -#. module: report_analytic_line -#: field:report.account.analytic.line.to.invoice,sale_price:0 -msgid "Sale price" -msgstr "" - -#. module: report_analytic_line -#: model:ir.module.module,shortdesc:report_analytic_line.module_meta_information -msgid "Analytic lines - Reporting" -msgstr "" - -#. module: report_analytic_line -#: field:report.account.analytic.line.to.invoice,name:0 -msgid "Month" -msgstr "" - -#. module: report_analytic_line -#: field:report.account.analytic.line.to.invoice,account_id:0 -msgid "Analytic account" -msgstr "" - -#. module: report_analytic_line -#: field:report.account.analytic.line.to.invoice,amount:0 -msgid "Amount" -msgstr "" - -#. module: report_analytic_line -#: model:ir.model,name:report_analytic_line.model_report_account_analytic_line_to_invoice -msgid "Analytic lines to invoice report" -msgstr "" - -#. module: report_analytic_line -#: field:report.account.analytic.line.to.invoice,unit_amount:0 -msgid "Units" -msgstr "" - -#. module: report_analytic_line -#: field:report.account.analytic.line.to.invoice,product_uom_id:0 -msgid "UoM" -msgstr "" - diff --git a/addons/report_analytic_planning/i18n/tlh_TLH.po b/addons/report_analytic_planning/i18n/tlh_TLH.po deleted file mode 100644 index e909d667f74..00000000000 --- a/addons/report_analytic_planning/i18n/tlh_TLH.po +++ /dev/null @@ -1,338 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_analytic_planning -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "To:" -msgstr "" - -#. module: report_analytic_planning -#: view:report_account_analytic.planning:0 -msgid "Planning by Account" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "Summary by project" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning.line,amount_unit:0 -msgid "Qty UoM" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning,user_id:0 -msgid "Responsible" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.model,name:report_analytic_planning.model_report_account_analytic_planning_stat -msgid "Planning stat" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning,state:0 -msgid "Status" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning.line,account_id:0 -msgid "Analytic account" -msgstr "" - -#. module: report_analytic_planning -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_stat_form -#: model:ir.ui.menu,name:report_analytic_planning.menu_report_account_analytic_planning_stat -msgid "Planning Statistics" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.model,name:report_analytic_planning.model_report_account_analytic_planning_stat_account -msgid "Planning account stat" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.model,name:report_analytic_planning.model_report_account_analytic_planning_line -#: view:report_account_analytic.planning:0 -msgid "Planning Line" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "Real" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_stat_my_form -#: model:ir.ui.menu,name:report_analytic_planning.menu_report_account_analytic_planning_stat_my -msgid "My Planning Statistics" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.module.module,description:report_analytic_planning.module_meta_information -msgid "Planning on analytic accounts." -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning,name:0 -msgid "Planning Name" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "Quantities" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "HR Planning" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning.stat,sum_amount_real:0 -#: field:report_account_analytic.planning.stat.account,sum_amount_real:0 -#: field:report_account_analytic.planning.stat.user,sum_amount_real:0 -msgid "Timesheet" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning.stat,sum_amount:0 -msgid "Planned hours" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "Responsible:" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning.line,amount:0 -msgid "Quantity" -msgstr "" - -#. module: report_analytic_planning -#: view:report_account_analytic.planning:0 -msgid "Quantities by Account" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "From:" -msgstr "" - -#. module: report_analytic_planning -#: view:report_account_analytic.planning:0 -msgid "Time by Account" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning,date_to:0 -msgid "End Date" -msgstr "" - -#. module: report_analytic_planning -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_analytic_planning -#: view:report_account_analytic.planning:0 -msgid "Time by User" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_stat_my_manager_form -#: model:ir.ui.menu,name:report_analytic_planning.menu_report_account_analytic_planning_stat_my_manager -msgid "Planning Statistics of My Projects" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_form_current -#: model:ir.ui.menu,name:report_analytic_planning.menu_report_account_analytic_planning_current -msgid "Current Planning" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "Summary by user" -msgstr "" - -#. module: report_analytic_planning -#: view:report_account_analytic.planning:0 -msgid "Analysis" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning.line,user_id:0 -#: rml:report_account_analytic.planning.print:0 -#: field:report_account_analytic.planning.stat,user_id:0 -#: field:report_account_analytic.planning.stat.user,user_id:0 -msgid "User" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "Project" -msgstr "" - -#. module: report_analytic_planning -#: view:report_account_analytic.planning:0 -msgid "Total Timesheet" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "Details of user's time by projects" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.model,name:report_analytic_planning.model_report_account_analytic_planning_stat_user -msgid "Planning user stat" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -#: field:report_account_analytic.planning.stat.account,quantity:0 -#: field:report_account_analytic.planning.stat.user,quantity:0 -msgid "Planned" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning,stat_ids:0 -msgid "Planning analysis" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "[" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning,line_ids:0 -msgid "Planning lines" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.module.module,shortdesc:report_analytic_planning.module_meta_information -msgid "Analytic planning - Reporting" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -msgid "]" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_form_my -#: model:ir.ui.menu,name:report_analytic_planning.menu_report_account_analytic_planning_my2 -msgid "My Planning" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning,stat_user_ids:0 -msgid "Planning by user" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning.line,note:0 -msgid "Note" -msgstr "" - -#. module: report_analytic_planning -#: rml:report_account_analytic.planning.print:0 -#: field:report_account_analytic.planning.stat,sum_amount_tasks:0 -msgid "Tasks" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning,stat_account_ids:0 -msgid "Planning by account" -msgstr "" - -#. module: report_analytic_planning -#: view:report_account_analytic.planning:0 -msgid "Quantities by User" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_form_current_my -#: model:ir.ui.menu,name:report_analytic_planning.menu_report_account_analytic_planning_current_my -msgid "My Current Planning" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning.stat.account,account_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning.stat,manager_id:0 -msgid "Manager" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_form -#: model:ir.actions.report.xml,name:report_analytic_planning.report_planning -#: model:ir.model,name:report_analytic_planning.model_report_account_analytic_planning -#: model:ir.ui.menu,name:report_analytic_planning.menu_report_account_analytic_planning -#: model:ir.ui.menu,name:report_analytic_planning.next_id_85 -#: model:ir.ui.menu,name:report_analytic_planning.planning_main -#: view:report_account_analytic.planning:0 -#: field:report_account_analytic.planning.line,planning_id:0 -#: field:report_account_analytic.planning.stat,planning_id:0 -#: field:report_account_analytic.planning.stat.account,planning_id:0 -#: field:report_account_analytic.planning.stat.user,planning_id:0 -msgid "Planning" -msgstr "" - -#. module: report_analytic_planning -#: selection:report_account_analytic.planning,state:0 -msgid "Done" -msgstr "" - -#. module: report_analytic_planning -#: view:report_account_analytic.planning:0 -msgid "Total Planned" -msgstr "" - -#. module: report_analytic_planning -#: field:report_account_analytic.planning,date_from:0 -msgid "Start Date" -msgstr "" - -#. module: report_analytic_planning -#: view:report_account_analytic.planning.stat:0 -msgid "Planning statistics" -msgstr "" - -#. module: report_analytic_planning -#: selection:report_account_analytic.planning,state:0 -msgid "Open" -msgstr "" - -#. module: report_analytic_planning -#: model:ir.actions.act_window,name:report_analytic_planning.action_account_analytic_planning_form_new -#: model:ir.ui.menu,name:report_analytic_planning.menu_report_account_analytic_planning_new -msgid "New Planning" -msgstr "" - diff --git a/addons/report_crm/i18n/tlh_TLH.po b/addons/report_crm/i18n/tlh_TLH.po deleted file mode 100644 index 1a530d67382..00000000000 --- a/addons/report_crm/i18n/tlh_TLH.po +++ /dev/null @@ -1,214 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_crm -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_crm -#: field:report.crm.case.categ,categ_id:0 -msgid "Category" -msgstr "" - -#. module: report_crm -#: field:report.crm.case.categ,probability:0 -#: field:report.crm.case.user,probability:0 -msgid "Avg. Probability" -msgstr "" - -#. module: report_crm -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_crm -#: model:ir.model,name:report_crm.model_report_crm_case_categ -msgid "Cases by section and category" -msgstr "" - -#. module: report_crm -#: field:report.crm.case.categ,section_id:0 -#: field:report.crm.case.user,section_id:0 -msgid "Section" -msgstr "" - -#. module: report_crm -#: field:report.crm.case.user,nbr:0 -msgid "# of Cases" -msgstr "" - -#. module: report_crm -#: model:ir.module.module,shortdesc:report_crm.module_meta_information -msgid "CRM Management - Reporting" -msgstr "" - -#. module: report_crm -#: field:report.crm.case.categ,delay_close:0 -msgid "Delay Close" -msgstr "" - -#. module: report_crm -#: selection:report.crm.case.categ,state:0 -#: selection:report.crm.case.user,state:0 -msgid "Draft" -msgstr "" - -#. module: report_crm -#: selection:report.crm.case.categ,state:0 -#: selection:report.crm.case.user,state:0 -msgid "Closed" -msgstr "" - -#. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_categ_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_categ_tree_month -msgid "Cases by categories and section (this month)" -msgstr "" - -#. module: report_crm -#: model:ir.ui.menu,name:report_crm.next_id_66 -msgid "All Months" -msgstr "" - -#. module: report_crm -#: field:report.crm.case.categ,amount_revenue_prob:0 -#: field:report.crm.case.user,amount_revenue_prob:0 -msgid "Est. Rev*Prob." -msgstr "" - -#. module: report_crm -#: selection:report.crm.case.categ,state:0 -#: selection:report.crm.case.user,state:0 -msgid "Pending" -msgstr "" - -#. module: report_crm -#: field:report.crm.case.categ,state:0 -#: field:report.crm.case.user,state:0 -msgid "Status" -msgstr "" - -#. module: report_crm -#: field:report.crm.case.user,delay_close:0 -msgid "Delay to close" -msgstr "" - -#. module: report_crm -#: model:ir.actions.act_window,name:report_crm.act_crm_case_section_2_report_crm_case_user -msgid "Monthly cases by user" -msgstr "" - -#. module: report_crm -#: model:ir.ui.menu,name:report_crm.next_id_64 -msgid "Reporting" -msgstr "" - -#. module: report_crm -#: field:report.crm.case.categ,amount_costs:0 -#: field:report.crm.case.user,amount_costs:0 -msgid "Est.Cost" -msgstr "" - -#. module: report_crm -#: field:report.crm.case.user,user_id:0 -msgid "User" -msgstr "" - -#. module: report_crm -#: model:ir.actions.act_window,name:report_crm.act_crm_case_section_2_report_crm_case_categ -msgid "Monthly cases by section" -msgstr "" - -#. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree -#: view:report.crm.case.categ:0 -#: view:report.crm.case.user:0 -msgid "Cases by User and Section" -msgstr "" - -#. module: report_crm -#: model:ir.ui.menu,name:report_crm.next_id_65 -msgid "This Month" -msgstr "" - -#. module: report_crm -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_crm -#: model:ir.actions.act_window,name:report_crm.act_crm_case_categ_2_report_crm_case_categ -#: model:ir.actions.act_window,name:report_crm.act_res_users_2_report_crm_case_user -msgid "Monthly cases" -msgstr "" - -#. module: report_crm -#: field:report.crm.case.categ,amount_revenue:0 -#: field:report.crm.case.user,amount_revenue:0 -msgid "Est.Revenue" -msgstr "" - -#. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month -msgid "Cases by user and section (this month)" -msgstr "" - -#. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_categ_tree -#: model:ir.ui.menu,name:report_crm.menu_crm_case_categ_tree -msgid "Cases by Categories and Section" -msgstr "" - -#. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_my -msgid "My cases by section" -msgstr "" - -#. module: report_crm -#: field:report.crm.case.categ,name:0 -#: field:report.crm.case.user,name:0 -msgid "Month" -msgstr "" - -#. module: report_crm -#: selection:report.crm.case.categ,state:0 -#: selection:report.crm.case.user,state:0 -msgid "Canceled" -msgstr "" - -#. module: report_crm -#: model:ir.actions.act_window,name:report_crm.action_report_crm_case_user_tree_month_my -#: model:ir.ui.menu,name:report_crm.menu_crm_case_user_tree_month_my -msgid "My cases by section (this month)" -msgstr "" - -#. module: report_crm -#: model:ir.model,name:report_crm.model_report_crm_case_user -msgid "Cases by user and section" -msgstr "" - -#. module: report_crm -#: model:ir.module.module,description:report_crm.module_meta_information -msgid "A module that adds new reports based on CRM cases.\n" -" Case By section, Case By category" -msgstr "" - -#. module: report_crm -#: selection:report.crm.case.categ,state:0 -#: selection:report.crm.case.user,state:0 -msgid "Open" -msgstr "" - diff --git a/addons/report_document/i18n/tlh_TLH.po b/addons/report_document/i18n/tlh_TLH.po deleted file mode 100644 index 6af2449159c..00000000000 --- a/addons/report_document/i18n/tlh_TLH.po +++ /dev/null @@ -1,241 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_document -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_document -#: field:report.document.user,create_date:0 -#: field:report.files.partner,create_date:0 -msgid "Date Created" -msgstr "" - -#. module: report_document -#: model:ir.actions.act_window,name:report_document.action_view_files_by_partner -msgid "Files Per Month" -msgstr "" - -#. module: report_document -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_document -#: model:ir.actions.act_window,name:report_document.action_view_wall -#: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_shame -#: view:report.document.wall:0 -msgid "Wall of Shame" -msgstr "" - -#. module: report_document -#: model:ir.model,name:report_document.model_report_files_partner -msgid "Files details by Partners" -msgstr "" - -#. module: report_document -#: field:report.document.file,file_size:0 -#: field:report.document.user,file_size:0 -#: field:report.files.partner,file_size:0 -msgid "File Size" -msgstr "" - -#. module: report_document -#: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_all -msgid "All Months" -msgstr "" - -#. module: report_document -#: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_all_myfile -#: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_this_myfile -msgid "My files" -msgstr "" - -#. module: report_document -#: view:report.document.user:0 -msgid "Files by users" -msgstr "" - -#. module: report_document -#: view:report.document.user:0 -msgid "Files" -msgstr "" - -#. module: report_document -#: view:report.files.partner:0 -msgid "Files per Month" -msgstr "" - -#. module: report_document -#: model:ir.actions.act_window,name:report_document.action_view_my_document_tree1 -msgid "My files (All months)" -msgstr "" - -#. module: report_document -#: field:report.document.wall,file_name:0 -msgid "Last Posted File Name" -msgstr "" - -#. module: report_document -#: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report -msgid "Reporting" -msgstr "" - -#. module: report_document -#: model:ir.model,name:report_document.model_report_document_wall -msgid "Users that did not inserted documents since one month" -msgstr "" - -#. module: report_document -#: model:ir.ui.menu,name:report_document.menu_action_view_my_document -msgid "Document Management" -msgstr "" - -#. module: report_document -#: field:report.document.user,type:0 -#: field:report.files.partner,type:0 -msgid "Directory Type" -msgstr "" - -#. module: report_document -#: view:report.files.partner:0 -msgid "Files By Partner" -msgstr "" - -#. module: report_document -#: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_this -msgid "This Month" -msgstr "" - -#. module: report_document -#: field:report.document.user,user:0 -#: field:report.document.wall,user:0 -msgid "User" -msgstr "" - -#. module: report_document -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_document -#: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_all_userfile -#: model:ir.ui.menu,name:report_document.menu_action_view_my_document_report_this_userfile -msgid "All Users files" -msgstr "" - -#. module: report_document -#: model:ir.actions.act_window,name:report_document.action_view_my_document_tree -msgid "My files (This months)" -msgstr "" - -#. module: report_document -#: model:ir.model,name:report_document.model_report_document_user -msgid "Files details by Users" -msgstr "" - -#. module: report_document -#: field:report.document.user,user_id:0 -#: field:report.document.wall,user_id:0 -msgid "Owner" -msgstr "" - -#. module: report_document -#: field:report.document.file,nbr:0 -#: field:report.document.user,nbr:0 -#: field:report.files.partner,nbr:0 -msgid "# of Files" -msgstr "" - -#. module: report_document -#: field:report.document.user,directory:0 -#: field:report.files.partner,directory:0 -msgid "Directory" -msgstr "" - -#. module: report_document -#: model:ir.actions.act_window,name:report_document.action_view_user_graph -msgid "Files By Users" -msgstr "" - -#. module: report_document -#: model:ir.module.module,shortdesc:report_document.module_meta_information -msgid "Document Management - Reporting" -msgstr "" - -#. module: report_document -#: model:ir.actions.act_window,name:report_document.action_view_all_document_tree1 -msgid "All Users files (All months)" -msgstr "" - -#. module: report_document -#: model:ir.model,name:report_document.model_report_document_file -msgid "Files details by Directory" -msgstr "" - -#. module: report_document -#: field:report.document.user,change_date:0 -#: field:report.files.partner,change_date:0 -msgid "Modified Date" -msgstr "" - -#. module: report_document -#: model:ir.actions.act_window,name:report_document.action_view_size_month -#: view:report.document.file:0 -msgid "File Size by Month" -msgstr "" - -#. module: report_document -#: field:report.document.user,file_title:0 -#: field:report.files.partner,file_title:0 -msgid "File Name" -msgstr "" - -#. module: report_document -#: field:report.document.file,month:0 -#: field:report.document.user,month:0 -#: field:report.document.user,name:0 -#: field:report.document.wall,month:0 -#: field:report.document.wall,name:0 -#: field:report.files.partner,name:0 -msgid "Month" -msgstr "" - -#. module: report_document -#: model:ir.actions.act_window,name:report_document.action_view_files_by_month_graph -#: view:report.document.user:0 -msgid "Files by Month" -msgstr "" - -#. module: report_document -#: model:ir.actions.act_window,name:report_document.action_view_document_by_resourcetype_graph -#: view:report.document.user:0 -msgid "Files by Resource Type" -msgstr "" - -#. module: report_document -#: model:ir.actions.act_window,name:report_document.action_view_all_document_tree -msgid "All Users files (This month)" -msgstr "" - -#. module: report_document -#: field:report.document.wall,last:0 -msgid "Last Posted Time" -msgstr "" - -#. module: report_document -#: field:report.document.user,partner:0 -#: field:report.files.partner,partner:0 -msgid "Partner" -msgstr "" - diff --git a/addons/report_intrastat/i18n/tlh_TLH.po b/addons/report_intrastat/i18n/tlh_TLH.po deleted file mode 100644 index 4d8ecb65a62..00000000000 --- a/addons/report_intrastat/i18n/tlh_TLH.po +++ /dev/null @@ -1,257 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_intrastat -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_intrastat -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Canceled Invoice" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Disc. (%)" -msgstr "" - -#. module: report_intrastat -#: model:ir.actions.act_window,name:report_intrastat.action_report_intrastat_tree -#: model:ir.ui.menu,name:report_intrastat.menu_report_intrastat -msgid "Intrastat (this month)" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Supplier Invoice" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Unit Price" -msgstr "" - -#. module: report_intrastat -#: model:ir.ui.menu,name:report_intrastat.next_id_90 -msgid "All Months" -msgstr "" - -#. module: report_intrastat -#: selection:report.intrastat,type:0 -msgid "Import" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "VAT :" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Document" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "PRO-FORMA" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Taxes:" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -#: field:report.intrastat.code,description:0 -msgid "Description" -msgstr "" - -#. module: report_intrastat -#: field:report.intrastat,type:0 -msgid "Type" -msgstr "" - -#. module: report_intrastat -#: model:ir.actions.report.xml,name:report_intrastat.invoice_intrastat_id -msgid "Invoice Intrastat" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Invoice Date" -msgstr "" - -#. module: report_intrastat -#: model:ir.module.module,shortdesc:report_intrastat.module_meta_information -msgid "Intrastat Reporting - Reporting" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Tel. :" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Base" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Quantity" -msgstr "" - -#. module: report_intrastat -#: model:ir.ui.menu,name:report_intrastat.next_id_89 -msgid "This Month" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Partner Ref." -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Total (inclu. taxes):" -msgstr "" - -#. module: report_intrastat -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_intrastat -#: model:ir.model,name:report_intrastat.model_report_intrastat -msgid "Intrastat report" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Invoice" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Taxes" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Amount" -msgstr "" - -#. module: report_intrastat -#: view:report.intrastat:0 -msgid "Intrastat Data" -msgstr "" - -#. module: report_intrastat -#: field:report.intrastat,value:0 -msgid "Value" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -#: model:ir.actions.act_window,name:report_intrastat.action_report_intrastat_tree_all -#: model:ir.ui.menu,name:report_intrastat.menu_report_intrastat_all -msgid "Intrastat" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Draft Invoice" -msgstr "" - -#. module: report_intrastat -#: model:ir.model,name:report_intrastat.model_report_intrastat_code -#: field:product.template,intrastat_id:0 -#: field:report.intrastat,intrastat_id:0 -#: view:report.intrastat.code:0 -msgid "Intrastat code" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Refund" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -#: field:report.intrastat,weight:0 -msgid "Weight" -msgstr "" - -#. module: report_intrastat -#: field:res.country,intrastat:0 -msgid "Intrastat member" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Tax" -msgstr "" - -#. module: report_intrastat -#: field:report.intrastat,code:0 -msgid "Country code" -msgstr "" - -#. module: report_intrastat -#: field:report.intrastat,name:0 -msgid "Month" -msgstr "" - -#. module: report_intrastat -#: field:report.intrastat,currency_id:0 -msgid "Currency" -msgstr "" - -#. module: report_intrastat -#: selection:report.intrastat,type:0 -msgid "Export" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Fax :" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Supplier Refund" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Total (excl. taxes):" -msgstr "" - -#. module: report_intrastat -#: rml:account.invoice.intrastat:0 -msgid "Price" -msgstr "" - -#. module: report_intrastat -#: model:ir.actions.act_window,name:report_intrastat.action_report_intrastat_code_tree -#: model:ir.ui.menu,name:report_intrastat.menu_report_intrastat_code -#: field:report.intrastat.code,name:0 -msgid "Intrastat Code" -msgstr "" - diff --git a/addons/report_mrp/i18n/tlh_TLH.po b/addons/report_mrp/i18n/tlh_TLH.po deleted file mode 100644 index 5c1ad6fbda6..00000000000 --- a/addons/report_mrp/i18n/tlh_TLH.po +++ /dev/null @@ -1,96 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_mrp -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_mrp -#: field:report.mrp.inout,date:0 -#: field:report.workcenter.load,name:0 -msgid "Week" -msgstr "" - -#. module: report_mrp -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_mrp -#: model:ir.ui.menu,name:report_mrp.next_id_77 -msgid "Reporting" -msgstr "" - -#. module: report_mrp -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_mrp -#: view:report.workcenter.load:0 -msgid "Workcenters load" -msgstr "" - -#. module: report_mrp -#: model:ir.model,name:report_mrp.model_report_workcenter_load -msgid "Workcenter Load" -msgstr "" - -#. module: report_mrp -#: model:ir.module.module,shortdesc:report_mrp.module_meta_information -msgid "MRP Management - Reporting" -msgstr "" - -#. module: report_mrp -#: field:report.mrp.inout,value:0 -msgid "Stock value" -msgstr "" - -#. module: report_mrp -#: field:report.workcenter.load,cycle:0 -msgid "Nbr of cycle" -msgstr "" - -#. module: report_mrp -#: field:report.workcenter.load,hour:0 -msgid "Nbr of hour" -msgstr "" - -#. module: report_mrp -#: field:report.workcenter.load,workcenter_id:0 -msgid "Workcenter" -msgstr "" - -#. module: report_mrp -#: model:ir.actions.act_window,name:report_mrp.action_report_workcenter_load_tree -#: model:ir.ui.menu,name:report_mrp.menu_report_workcenter_load -msgid "Workcenter Loads" -msgstr "" - -#. module: report_mrp -#: model:ir.actions.act_window,name:report_mrp.action_report_in_out_picking_tree -#: model:ir.ui.menu,name:report_mrp.menu_report_in_out_picking -msgid "Weekly Stock Value Variation" -msgstr "" - -#. module: report_mrp -#: view:report.workcenter.load:0 -msgid "Workcenter load" -msgstr "" - -#. module: report_mrp -#: model:ir.model,name:report_mrp.model_report_mrp_inout -#: view:report.mrp.inout:0 -msgid "Stock value variation" -msgstr "" - diff --git a/addons/report_project/i18n/tlh_TLH.po b/addons/report_project/i18n/tlh_TLH.po deleted file mode 100644 index 3b17dc54b2e..00000000000 --- a/addons/report_project/i18n/tlh_TLH.po +++ /dev/null @@ -1,134 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_project -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_project -#: model:ir.actions.act_window,name:report_project.action_project_task_tree_month -#: model:ir.ui.menu,name:report_project.menu_project_task_tree_month -msgid "Tasks finished by project (this month)" -msgstr "" - -#. module: report_project -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_project -#: view:report.project.task.user:0 -msgid "Tasks by Project and User" -msgstr "" - -#. module: report_project -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_project -#: view:report.project.task.user:0 -msgid "Tasks by projects and users" -msgstr "" - -#. module: report_project -#: field:report.project.task,task_closed:0 -#: field:report.project.task.user,task_closed:0 -msgid "Task Closed" -msgstr "" - -#. module: report_project -#: model:ir.actions.act_window,name:report_project.action_project_task_user_tree -#: model:ir.ui.menu,name:report_project.menu_project_task_user_tree -msgid "Tasks Closed by Project and User" -msgstr "" - -#. module: report_project -#: field:report.project.task,hours_delay:0 -#: field:report.project.task.user,hours_delay:0 -msgid "Avg. Plan.-Eff." -msgstr "" - -#. module: report_project -#: field:report.project.task,name:0 -#: field:report.project.task.user,name:0 -msgid "Month" -msgstr "" - -#. module: report_project -#: field:report.project.task,project_id:0 -#: field:report.project.task.user,project_id:0 -msgid "Project" -msgstr "" - -#. module: report_project -#: field:report.project.task,closing_days:0 -#: field:report.project.task.user,closing_days:0 -msgid "Avg Closing Delay" -msgstr "" - -#. module: report_project -#: model:ir.module.module,shortdesc:report_project.module_meta_information -msgid "Sales Management - Reporting" -msgstr "" - -#. module: report_project -#: model:ir.model,name:report_project.model_report_project_task_user -msgid "Tasks by user and project" -msgstr "" - -#. module: report_project -#: model:ir.model,name:report_project.model_report_project_task -#: view:report.project.task:0 -msgid "Tasks by project" -msgstr "" - -#. module: report_project -#: model:ir.actions.act_window,name:report_project.action_project_task_tree -#: model:ir.ui.menu,name:report_project.menu_project_task_tree -msgid "Tasks Closed by Project" -msgstr "" - -#. module: report_project -#: model:ir.actions.act_window,name:report_project.action_project_task_user_tree_month -#: model:ir.ui.menu,name:report_project.menu_project_task_user_tree_month -msgid "Tasks finished by project and user (this month)" -msgstr "" - -#. module: report_project -#: view:report.project.task:0 -msgid "Tasks by Project" -msgstr "" - -#. module: report_project -#: model:ir.ui.menu,name:report_project.next_id_63 -msgid "This Month" -msgstr "" - -#. module: report_project -#: field:report.project.task,hours_effective:0 -#: field:report.project.task.user,hours_effective:0 -msgid "Effective Hours" -msgstr "" - -#. module: report_project -#: field:report.project.task,hours_planned:0 -#: field:report.project.task.user,hours_planned:0 -msgid "Planned Hours" -msgstr "" - -#. module: report_project -#: field:report.project.task.user,user_id:0 -msgid "User" -msgstr "" - diff --git a/addons/report_purchase/i18n/tlh_TLH.po b/addons/report_purchase/i18n/tlh_TLH.po deleted file mode 100644 index 57c5d12f537..00000000000 --- a/addons/report_purchase/i18n/tlh_TLH.po +++ /dev/null @@ -1,192 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_purchase -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_purchase -#: field:report.purchase.order.category,price_average:0 -#: field:report.purchase.order.product,price_average:0 -msgid "Average Price" -msgstr "" - -#. module: report_purchase -#: field:report.purchase.order.category,state:0 -#: field:report.purchase.order.product,state:0 -msgid "Order State" -msgstr "" - -#. module: report_purchase -#: model:ir.actions.act_window,name:report_purchase.action_order_category_tree_all -#: model:ir.ui.menu,name:report_purchase.menu_report_order_category_all -#: view:report.purchase.order.category:0 -msgid "Purchases by Category of Products" -msgstr "" - -#. module: report_purchase -#: model:ir.model,name:report_purchase.model_report_purchase_order_product -msgid "Purchases Orders by Products" -msgstr "" - -#. module: report_purchase -#: model:ir.ui.menu,name:report_purchase.next_id_75 -msgid "All Months" -msgstr "" - -#. module: report_purchase -#: model:ir.actions.act_window,name:report_purchase.action_order_product_tree_all -#: model:ir.ui.menu,name:report_purchase.menu_report_order_product_all -msgid "Purchases by Products" -msgstr "" - -#. module: report_purchase -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_purchase -#: selection:report.purchase.order.category,state:0 -#: selection:report.purchase.order.product,state:0 -msgid "Waiting Schedule" -msgstr "" - -#. module: report_purchase -#: model:ir.actions.act_window,name:report_purchase.action_order_product_tree -#: model:ir.ui.menu,name:report_purchase.menu_report_order_product -msgid "Purchases by Products (this month)" -msgstr "" - -#. module: report_purchase -#: model:ir.model,name:report_purchase.model_report_purchase_order_category -msgid "Purchases Orders by Categories" -msgstr "" - -#. module: report_purchase -#: field:report.purchase.order.product,product_id:0 -msgid "Product" -msgstr "" - -#. module: report_purchase -#: model:ir.ui.menu,name:report_purchase.next_id_73 -msgid "Reporting" -msgstr "" - -#. module: report_purchase -#: model:ir.module.module,shortdesc:report_purchase.module_meta_information -msgid "Purchase Management - Reporting" -msgstr "" - -#. module: report_purchase -#: selection:report.purchase.order.category,state:0 -#: selection:report.purchase.order.product,state:0 -msgid "Invoice Exception" -msgstr "" - -#. module: report_purchase -#: field:report.purchase.order.category,price_total:0 -#: field:report.purchase.order.product,price_total:0 -msgid "Total Price" -msgstr "" - -#. module: report_purchase -#: field:report.purchase.order.category,quantity:0 -#: field:report.purchase.order.product,quantity:0 -msgid "# of Products" -msgstr "" - -#. module: report_purchase -#: view:report.purchase.order.product:0 -msgid "Purchases by products" -msgstr "" - -#. module: report_purchase -#: model:ir.actions.act_window,name:report_purchase.act_product_category_2_report_purchase_order_category -#: model:ir.actions.act_window,name:report_purchase.act_product_product_2_report_purchases_order_product -msgid "Monthly purchases" -msgstr "" - -#. module: report_purchase -#: model:ir.ui.menu,name:report_purchase.next_id_74 -msgid "This Month" -msgstr "" - -#. module: report_purchase -#: model:ir.module.module,description:report_purchase.module_meta_information -msgid "Module to add views like\n" -" Purchase By Product, Purchase By Category of Product, All Months, Current Month." -msgstr "" - -#. module: report_purchase -#: selection:report.purchase.order.category,state:0 -#: selection:report.purchase.order.product,state:0 -msgid "Quotation" -msgstr "" - -#. module: report_purchase -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_purchase -#: selection:report.purchase.order.category,state:0 -#: selection:report.purchase.order.product,state:0 -msgid "Manual in progress" -msgstr "" - -#. module: report_purchase -#: model:ir.actions.act_window,name:report_purchase.action_order_category_tree -#: model:ir.ui.menu,name:report_purchase.menu_report_order_category -msgid "Purchases by Category of Product (this month)" -msgstr "" - -#. module: report_purchase -#: selection:report.purchase.order.category,state:0 -#: selection:report.purchase.order.product,state:0 -msgid "Shipping Exception" -msgstr "" - -#. module: report_purchase -#: selection:report.purchase.order.category,state:0 -#: selection:report.purchase.order.product,state:0 -msgid "In progress" -msgstr "" - -#. module: report_purchase -#: field:report.purchase.order.category,name:0 -#: field:report.purchase.order.product,name:0 -msgid "Month" -msgstr "" - -#. module: report_purchase -#: field:report.purchase.order.product,count:0 -msgid "# of Lines" -msgstr "" - -#. module: report_purchase -#: selection:report.purchase.order.category,state:0 -#: selection:report.purchase.order.product,state:0 -msgid "Done" -msgstr "" - -#. module: report_purchase -#: field:report.purchase.order.category,category_id:0 -msgid "Categories" -msgstr "" - -#. module: report_purchase -#: selection:report.purchase.order.category,state:0 -#: selection:report.purchase.order.product,state:0 -msgid "Cancel" -msgstr "" - diff --git a/addons/report_sale/i18n/tlh_TLH.po b/addons/report_sale/i18n/tlh_TLH.po deleted file mode 100644 index 3951924c127..00000000000 --- a/addons/report_sale/i18n/tlh_TLH.po +++ /dev/null @@ -1,231 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_sale -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_sale -#: field:report.sale.order.category,price_average:0 -#: field:report.sale.order.product,price_average:0 -msgid "Average Price" -msgstr "" - -#. module: report_sale -#: field:report.sale.order.category,state:0 -#: field:report.sale.order.product,state:0 -msgid "Order State" -msgstr "" - -#. module: report_sale -#: view:report.sale.order.category:0 -msgid "Sales Orders by category" -msgstr "" - -#. module: report_sale -#: model:ir.model,name:report_sale.model_report_sale_order_product -msgid "Sales Orders by Products" -msgstr "" - -#. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_6 -#: model:ir.report.custom,title:report_sale.ir_report_custom_6 -msgid "Monthly cumulated sales turnover over one year" -msgstr "" - -#. module: report_sale -#: model:ir.ui.menu,name:report_sale.next_id_82 -msgid "All Months" -msgstr "" - -#. module: report_sale -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_sale -#: selection:report.sale.order.category,state:0 -#: selection:report.sale.order.product,state:0 -msgid "Waiting Schedule" -msgstr "" - -#. module: report_sale -#: field:report.sale.order.category,price_total:0 -#: field:report.sale.order.product,price_total:0 -msgid "Total Price" -msgstr "" - -#. module: report_sale -#: field:report.sale.order.product,product_id:0 -msgid "Product" -msgstr "" - -#. module: report_sale -#: model:ir.model,name:report_sale.model_report_sale_order_category -msgid "Sales Orders by Categories" -msgstr "" - -#. module: report_sale -#: model:ir.actions.act_window,name:report_sale.action_order_sale_list -#: model:ir.ui.menu,name:report_sale.menu_report_order_sale_list -msgid "Sales of the Month" -msgstr "" - -#. module: report_sale -#: model:ir.actions.act_window,name:report_sale.action_order_product_tree -#: model:ir.ui.menu,name:report_sale.menu_report_order_product -msgid "Sales by Product (this month)" -msgstr "" - -#. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_4 -#: model:ir.report.custom,title:report_sale.ir_report_custom_4 -msgid "Monthly sales turnover over one year" -msgstr "" - -#. module: report_sale -#: selection:report.sale.order.category,state:0 -#: selection:report.sale.order.product,state:0 -msgid "Invoice Exception" -msgstr "" - -#. module: report_sale -#: model:ir.module.module,shortdesc:report_sale.module_meta_information -msgid "Sales Management - Reporting" -msgstr "" - -#. module: report_sale -#: model:ir.actions.act_window,name:report_sale.action_order_category_tree_all -#: model:ir.ui.menu,name:report_sale.menu_report_order_category_all -#: view:report.sale.order.category:0 -msgid "Sales by Category of Products" -msgstr "" - -#. module: report_sale -#: field:report.sale.order.category,quantity:0 -#: field:report.sale.order.product,quantity:0 -msgid "# of Products" -msgstr "" - -#. module: report_sale -#: model:ir.actions.act_window,name:report_sale.action_order_product_tree_all -#: model:ir.ui.menu,name:report_sale.menu_report_order_product_all -#: view:report.sale.order.product:0 -msgid "Sales by Product" -msgstr "" - -#. module: report_sale -#: model:ir.ui.menu,name:report_sale.next_id_81 -msgid "This Month" -msgstr "" - -#. module: report_sale -#: field:report.sale.order.category,category_id:0 -msgid "Categories" -msgstr "" - -#. module: report_sale -#: selection:report.sale.order.category,state:0 -#: selection:report.sale.order.product,state:0 -msgid "Quotation" -msgstr "" - -#. module: report_sale -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu1 -msgid "Monthly Sales Turnover Over One Year" -msgstr "" - -#. module: report_sale -#: model:ir.ui.menu,name:report_sale.next_id_80 -msgid "Reporting" -msgstr "" - -#. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu2 -msgid "Daily Sales Turnover Over One Year" -msgstr "" - -#. module: report_sale -#: model:ir.ui.menu,name:report_sale.ir_ui_menu3 -msgid "Monthly Cumulated Sales Turnover Over One Year" -msgstr "" - -#. module: report_sale -#: view:sale.order:0 -msgid "Sales orders" -msgstr "" - -#. module: report_sale -#: model:ir.ui.menu,name:report_sale.next_id_83 -msgid "Graphs" -msgstr "" - -#. module: report_sale -#: selection:report.sale.order.category,state:0 -#: selection:report.sale.order.product,state:0 -msgid "Manual in progress" -msgstr "" - -#. module: report_sale -#: selection:report.sale.order.category,state:0 -#: selection:report.sale.order.product,state:0 -msgid "Shipping Exception" -msgstr "" - -#. module: report_sale -#: selection:report.sale.order.category,state:0 -#: selection:report.sale.order.product,state:0 -msgid "In progress" -msgstr "" - -#. module: report_sale -#: model:ir.actions.act_window,name:report_sale.action_order_category_tree -#: model:ir.ui.menu,name:report_sale.menu_report_order_category -msgid "Sales by Category of Product (this month)" -msgstr "" - -#. module: report_sale -#: model:ir.report.custom,name:report_sale.ir_report_custom_5 -#: model:ir.report.custom,title:report_sale.ir_report_custom_5 -msgid "Daily sales turnover over one year" -msgstr "" - -#. module: report_sale -#: field:report.sale.order.category,name:0 -#: field:report.sale.order.product,name:0 -msgid "Month" -msgstr "" - -#. module: report_sale -#: field:report.sale.order.category,count:0 -#: field:report.sale.order.product,count:0 -msgid "# of Lines" -msgstr "" - -#. module: report_sale -#: selection:report.sale.order.category,state:0 -#: selection:report.sale.order.product,state:0 -msgid "Done" -msgstr "" - -#. module: report_sale -#: selection:report.sale.order.category,state:0 -#: selection:report.sale.order.product,state:0 -msgid "Cancel" -msgstr "" - diff --git a/addons/report_task/i18n/tlh_TLH.po b/addons/report_task/i18n/tlh_TLH.po deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/addons/report_timesheet/i18n/tlh_TLH.po b/addons/report_timesheet/i18n/tlh_TLH.po deleted file mode 100644 index ebbd17ac1b1..00000000000 --- a/addons/report_timesheet/i18n/tlh_TLH.po +++ /dev/null @@ -1,213 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * report_timesheet -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_my -#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_my -msgid "My daily timesheets by account" -msgstr "" - -#. module: report_timesheet -#: view:report_timesheet.user:0 -msgid "Timesheet by user" -msgstr "" - -#. module: report_timesheet -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_invoice -#: model:ir.model,name:report_timesheet.model_report_timesheet_invoice -msgid "Costs to invoice" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat_my -#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user_my -msgid "My Timesheet of the Month" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_account_analytic_account_2_report_timehsheet_account -msgid "Timesheets" -msgstr "" - -#. module: report_timesheet -#: view:report_timesheet.account:0 -msgid "Timesheet by account" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timehsheet_account -msgid "Timesheets per account" -msgstr "" - -#. module: report_timesheet -#: view:report_timesheet.invoice:0 -msgid "Timesheets to invoice" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_date_stat_all -#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_date_all -msgid "Daily Timesheet by Account" -msgstr "" - -#. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_user -msgid "Timesheet per day" -msgstr "" - -#. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_account -#: view:report_timesheet.account:0 -msgid "Timesheet per account" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_stat_all -#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_all -msgid "Timesheet by Account" -msgstr "" - -#. module: report_timesheet -#: field:report_timesheet.account.date,name:0 -#: field:report_timesheet.user,name:0 -msgid "Date" -msgstr "" - -#. module: report_timesheet -#: view:report_timesheet.invoice:0 -msgid "Timesheet by invoice" -msgstr "" - -#. module: report_timesheet -#: model:ir.ui.menu,name:report_timesheet.next_id_69 -msgid "This Month" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_account_stat_my -#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_account_my -msgid "My timesheets by account" -msgstr "" - -#. module: report_timesheet -#: field:report_timesheet.account,user_id:0 -#: field:report_timesheet.account.date,user_id:0 -#: field:report_timesheet.invoice,user_id:0 -#: field:report_timesheet.user,user_id:0 -msgid "User" -msgstr "" - -#. module: report_timesheet -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: report_timesheet -#: model:ir.module.module,shortdesc:report_timesheet.module_meta_information -msgid "Timesheet - Reporting" -msgstr "" - -#. module: report_timesheet -#: view:report_timesheet.account.date:0 -msgid "Daily timesheet by account" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.act_res_users_2_report_timesheet_user -msgid "Timesheets per day" -msgstr "" - -#. module: report_timesheet -#: field:report_timesheet.invoice,account_id:0 -msgid "Project" -msgstr "" - -#. module: report_timesheet -#: field:report_timesheet.invoice,amount_invoice:0 -msgid "To invoice" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat_all -#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user_all -msgid "Timesheet by User" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_all -#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_invoice_all -msgid "Timesheet by Invoice" -msgstr "" - -#. module: report_timesheet -#: field:report_timesheet.account,quantity:0 -#: field:report_timesheet.account.date,quantity:0 -#: field:report_timesheet.invoice,quantity:0 -#: field:report_timesheet.user,quantity:0 -msgid "Quantity" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_invoice_stat_my -#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_invoice_my -msgid "My timesheets to invoice" -msgstr "" - -#. module: report_timesheet -#: model:ir.model,name:report_timesheet.model_report_timesheet_account_date -#: view:report_timesheet.account.date:0 -msgid "Daily timesheet per account" -msgstr "" - -#. module: report_timesheet -#: model:ir.module.module,description:report_timesheet.module_meta_information -msgid "Module to add timesheet views like\n" -" All Month, Timesheet By User, Timesheet Of Month, Timesheet By Account" -msgstr "" - -#. module: report_timesheet -#: field:report_timesheet.account,name:0 -msgid "Month" -msgstr "" - -#. module: report_timesheet -#: field:report_timesheet.account,account_id:0 -#: field:report_timesheet.account.date,account_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: report_timesheet -#: field:report_timesheet.invoice,manager_id:0 -msgid "Manager" -msgstr "" - -#. module: report_timesheet -#: field:report_timesheet.user,cost:0 -msgid "Cost" -msgstr "" - -#. module: report_timesheet -#: model:ir.actions.act_window,name:report_timesheet.action_timesheet_user_stat -#: model:ir.ui.menu,name:report_timesheet.menu_report_timesheet_user -msgid "Timesheet by user (this month)" -msgstr "" - diff --git a/addons/sale/i18n/tlh_TLH.po b/addons/sale/i18n/tlh_TLH.po deleted file mode 100644 index 270186ecf09..00000000000 --- a/addons/sale/i18n/tlh_TLH.po +++ /dev/null @@ -1,1306 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * sale -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: sale -#: selection:sale.order,picking_policy:0 -msgid "Partial Delivery" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Recreate Procurement" -msgstr "" - -#. module: sale -#: model:process.transition,name:sale.process_transition_confirmquotation0 -msgid "Confirm Quotation" -msgstr "" - -#. module: sale -#: model:process.node,name:sale.process_node_deliveryorder0 -msgid "Delivery Order" -msgstr "" - -#. module: sale -#: field:sale.order.line,address_allotment_id:0 -msgid "Allotment Partner" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Recreate Invoice" -msgstr "" - -#. module: sale -#: selection:sale.order,state:0 -msgid "Waiting Schedule" -msgstr "" - -#. module: sale -#: help:sale.order,picking_policy:0 -msgid "If you don't have enough stock available to deliver all at once, do you accept partial shipments or not?" -msgstr "" - -#. module: sale -#: selection:sale.order.line,type:0 -msgid "from stock" -msgstr "" - -#. module: sale -#: field:sale.config.picking_policy,step:0 -msgid "Steps To Deliver a Sale Order" -msgstr "" - -#. module: sale -#: wizard_field:sale.advance_payment_inv,init,qtty:0 -#: rml:sale.order:0 -msgid "Quantity" -msgstr "" - -#. module: sale -#: wizard_view:sale.advance_payment_inv,create:0 -msgid "You invoice has been successfully created !" -msgstr "" - -#. module: sale -#: view:sale.order:0 -#: view:sale.order.line:0 -msgid "Automatic Declaration" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_line_tree3 -#: model:ir.ui.menu,name:sale.menu_action_order_line_tree3 -msgid "Uninvoiced and Delivered Lines" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Set to Draft" -msgstr "" - -#. module: sale -#: selection:sale.order,state:0 -msgid "Invoice Exception" -msgstr "" - -#. module: sale -#: help:sale.order,picking_ids:0 -msgid "This is the list of picking list that have been generated for this invoice" -msgstr "" - -#. module: sale -#: model:process.node,note:sale.process_node_deliveryorder0 -msgid "Delivery, from the warehouse to the customer." -msgstr "" - -#. module: sale -#: model:ir.actions.todo,note:sale.config_wizard_step_sale_picking_policy -msgid "This Configuration step use to set default picking policy when make sale order" -msgstr "" - -#. module: sale -#: model:process.transition.action,name:sale.process_transition_action_validate0 -msgid "Validate" -msgstr "" - -#. module: sale -#: model:process.node,note:sale.process_node_order0 -msgid "After confirming order, Create the invoice." -msgstr "" - -#. module: sale -#: field:sale.order.line,price_subtotal:0 -msgid "Subtotal" -msgstr "" - -#. 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 "" - -#. module: sale -#: model:process.transition.action,name:sale.process_transition_action_cancelorder0 -#: view:sale.order:0 -msgid "Cancel Order" -msgstr "" - -#. module: sale -#: field:sale.order.line,move_ids:0 -msgid "Inventory Moves" -msgstr "" - -#. module: sale -#: view:sale.order.line:0 -msgid "Manual Designation" -msgstr "" - -#. module: sale -#: view:sale.order:0 -#: field:sale.order,note:0 -#: view:sale.order.line:0 -#: field:sale.order.line,notes:0 -msgid "Notes" -msgstr "" - -#. module: sale -#: model:process.transition,name:sale.process_transition_invoiceafterdelivery0 -msgid "Invoice after delivery" -msgstr "" - -#. module: sale -#: field:sale.order,amount_tax:0 -#: field:sale.order.line,tax_id:0 -msgid "Taxes" -msgstr "" - -#. module: sale -#: field:sale.order,name:0 -msgid "Order Reference" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Net Total :" -msgstr "" - -#. module: sale -#: field:sale.order,order_policy:0 -msgid "Shipping Policy" -msgstr "" - -#. module: sale -#: selection:sale.order,state:0 -msgid "Shipping Exception" -msgstr "" - -#. module: sale -#: field:sale.order,amount_total:0 -msgid "Total" -msgstr "" - -#. module: sale -#: field:sale.order,origin:0 -msgid "Origin" -msgstr "" - -#. module: sale -#: field:sale.order,partner_invoice_id:0 -msgid "Invoice Address" -msgstr "" - -#. module: sale -#: model:process.node,name:sale.process_node_packinglist0 -msgid "Outgoing Products" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Reference" -msgstr "" - -#. module: sale -#: selection:sale.config.picking_policy,picking_policy:0 -msgid "All at Once" -msgstr "" - -#. module: sale -#: model:process.transition,note:sale.process_transition_saleprocurement0 -msgid "Procurement is created after confirmation of sale order." -msgstr "" - -#. module: sale -#: field:sale.order,project_id:0 -#: field:sale.shop,project_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "TVA :" -msgstr "" - -#. module: sale -#: field:sale.order.line,type:0 -msgid "Procure Method" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Extra Info" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Fax :" -msgstr "" - -#. module: sale -#: field:sale.order.line,price_net:0 -msgid "Net Price" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree9 -#: model:ir.ui.menu,name:sale.menu_action_order_tree9 -msgid "My sales order in progress" -msgstr "" - -#. module: sale -#: field:sale.order.line,product_uos_qty:0 -msgid "Quantity (UoS)" -msgstr "" - -#. 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 "" - -#. module: sale -#: code:addons/sale/wizard/make_invoice_advance.py:0 -#, python-format -msgid "You cannot make an advance on a sale order that is defined as 'Automatic Invoice after delivery'." -msgstr "" - -#. module: sale -#: selection:sale.order.line,state:0 -msgid "Confirmed" -msgstr "" - -#. module: sale -#: field:sale.shop,payment_default_id:0 -msgid "Default Payment Term" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree_all -#: model:ir.ui.menu,name:sale.menu_action_order_tree_all -msgid "All Sales Order" -msgstr "" - -#. module: sale -#: model:process.transition.action,name:sale.process_transition_action_confirm0 -msgid "Confirm" -msgstr "" - -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "You must first cancel all packing attached to this sale order." -msgstr "" - -#. module: sale -#: field:sale.order,partner_shipping_id:0 -msgid "Shipping Address" -msgstr "" - -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "You have to select a customer in the sale form !\nPlease set one customer before choosing a product." -msgstr "" - -#. module: sale -#: selection:sale.order,invoice_quantity:0 -msgid "Shipped Quantities" -msgstr "" - -#. module: sale -#: selection:sale.config.picking_policy,order_policy:0 -msgid "Invoice Based on Sales Orders" -msgstr "" - -#. module: sale -#: model:ir.model,name:sale.model_sale_shop -#: view:sale.shop:0 -msgid "Sale Shop" -msgstr "" - -#. module: sale -#: field:sale.shop,warehouse_id:0 -msgid "Warehouse" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Order N°" -msgstr "" - -#. module: sale -#: field:sale.order,order_line:0 -#: view:sale.order.line:0 -msgid "Order Lines" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Disc.(%)" -msgstr "" - -#. module: sale -#: view:sale.order:0 -#: view:sale.order.line:0 -#: field:sale.order.line,invoice_lines:0 -msgid "Invoice Lines" -msgstr "" - -#. module: sale -#: model:process.transition.action,name:sale.process_transition_action_forceassignation0 -msgid "Force Assignation" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Untaxed amount" -msgstr "" - -#. module: sale -#: model:process.transition,note:sale.process_transition_packing0 -msgid "Packing list is created when 'Assign' is being clicked after confirming the sale order. This transaction moves the sale order to packing list." -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree8 -#: model:ir.ui.menu,name:sale.menu_action_order_tree8 -msgid "My sales order waiting Invoice" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Shipping address :" -msgstr "" - -#. 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 "" - -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: sale -#: selection:sale.order,picking_policy:0 -msgid "Complete Delivery" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Manual Description" -msgstr "" - -#. module: sale -#: field:sale.order.line,product_uom_qty:0 -msgid "Quantity (UoM)" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_line_tree1 -#: model:ir.ui.menu,name:sale.menu_action_order_line_tree1 -#: view:sale.order.line:0 -msgid "Sales Order Lines" -msgstr "" - -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "You must first cancel all invoices attached to this sale order." -msgstr "" - -#. module: sale -#: selection:sale.order,invoice_quantity:0 -msgid "Ordered Quantities" -msgstr "" - -#. module: sale -#: model:process.node,name:sale.process_node_saleorderprocurement0 -msgid "Sale Order Procurement" -msgstr "" - -#. module: sale -#: model:process.transition,name:sale.process_transition_packing0 -msgid "Packing" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Total :" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Confirm Order" -msgstr "" - -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "Invalid action !" -msgstr "" - -#. module: sale -#: selection:sale.order,state:0 -#: view:sale.order.line:0 -#: selection:sale.order.line,state:0 -msgid "Done" -msgstr "" - -#. module: sale -#: field:sale.order,pricelist_id:0 -#: field:sale.shop,pricelist_id:0 -msgid "Pricelist" -msgstr "" - -#. module: sale -#: model:ir.ui.menu,name:sale.menu_shop_configuration -msgid "Configuration" -msgstr "" - -#. module: sale -#: selection:sale.order,order_policy:0 -msgid "Invoice on Order After Delivery" -msgstr "" - -#. module: sale -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: sale -#: field:sale.order,picking_ids:0 -msgid "Related Packing" -msgstr "" - -#. module: sale -#: field:sale.shop,payment_account_id:0 -msgid "Payment Accounts" -msgstr "" - -#. module: sale -#: constraint:product.template:0 -msgid "Error: UOS must be in a different category than the UOM" -msgstr "" - -#. module: sale -#: field:sale.order,client_order_ref:0 -msgid "Customer Ref" -msgstr "" - -#. module: sale -#: model:ir.model,name:sale.model_sale_config_picking_policy -msgid "sale.config.picking_policy" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Sales orders" -msgstr "" - -#. module: sale -#: model:process.node,name:sale.process_node_saleprocurement0 -#: field:sale.order.line,procurement_id:0 -msgid "Procurement" -msgstr "" - -#. module: sale -#: view:sale.shop:0 -msgid "Payment accounts" -msgstr "" - -#. module: sale -#: wizard_button:sale.advance_payment_inv,create,end:0 -msgid "Close" -msgstr "" - -#. module: sale -#: model:process.node,name:sale.process_node_invoice0 -#: model:process.node,name:sale.process_node_invoiceafterdelivery0 -msgid "Draft Invoice" -msgstr "" - -#. module: sale -#: wizard_field:sale.order.line.make_invoice,init,grouped:0 -#: wizard_field:sale.order.make_invoice,init,grouped:0 -msgid "Group the invoices" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree5 -#: model:ir.ui.menu,name:sale.menu_action_order_tree5 -msgid "All Quotations" -msgstr "" - -#. module: sale -#: field:sale.order.line,discount:0 -msgid "Discount (%)" -msgstr "" - -#. module: sale -#: model:process.node,note:sale.process_node_invoice0 -msgid "Draft customer invoice, to be reviewed by accountant." -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree3 -#: model:ir.ui.menu,name:sale.menu_action_order_tree3 -msgid "Sales Order To Be Invoiced" -msgstr "" - -#. module: sale -#: model:process.node,note:sale.process_node_saleorderprocurement0 -msgid "Procurement for each line" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree10 -#: model:ir.ui.menu,name:sale.menu_action_order_tree10 -msgid "My Quotations" -msgstr "" - -#. module: sale -#: wizard_view:sale.advance_payment_inv,create:0 -msgid "Invoices" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Order Line" -msgstr "" - -#. module: sale -#: field:sale.config.picking_policy,picking_policy:0 -msgid "Packing Default Policy" -msgstr "" - -#. module: sale -#: model:process.node,note:sale.process_node_saleorder0 -msgid "Manages the delivery and invoicing progress" -msgstr "" - -#. module: sale -#: field:sale.config.picking_policy,order_policy:0 -msgid "Shipping Default Policy" -msgstr "" - -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "Could not cancel sale order !" -msgstr "" - -#. module: sale -#: field:sale.order.line,product_packaging:0 -msgid "Packaging" -msgstr "" - -#. module: sale -#: selection:sale.order.line,state:0 -msgid "Canceled" -msgstr "" - -#. module: sale -#: field:sale.order.line,order_id:0 -msgid "Order Ref" -msgstr "" - -#. module: sale -#: field:sale.order,user_id:0 -msgid "Salesman" -msgstr "" - -#. 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 "" - -#. module: sale -#: rml:sale.order:0 -msgid "Taxes :" -msgstr "" - -#. module: sale -#: field:sale.order,invoiced_rate:0 -#: field:sale.order.line,invoiced:0 -msgid "Invoiced" -msgstr "" - -#. module: sale -#: model:ir.actions.wizard,name:sale.advance_payment -msgid "Advance Invoice" -msgstr "" - -#. module: sale -#: field:sale.order,state:0 -msgid "Order State" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_line_tree2 -#: model:ir.ui.menu,name:sale.menu_action_order_line_tree2 -msgid "Uninvoiced Lines" -msgstr "" - -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "No Customer Defined !" -msgstr "" - -#. module: sale -#: help:sale.order,order_policy:0 -msgid "The Shipping Policy is used to synchronise invoice and delivery operations.\n" -" - The 'Pay before delivery' choice will first generate the invoice and then generate the packing order after the payment of this invoice.\n" -" - The 'Shipping & Manual Invoice' will create the packing order directly and wait for the user to manually click on the 'Invoice' button to generate the draft invoice.\n" -" - The 'Invoice on Order Ater Delivery' choice will generate the draft invoice based on sale order after all packing lists have been finished.\n" -" - The 'Invoice from the packing' choice is used to create an invoice during the packing process." -msgstr "" - -#. module: sale -#: model:process.process,name:sale.process_process_salesprocess0 -msgid "Sales Process" -msgstr "" - -#. module: sale -#: wizard_view:sale.order.line.make_invoice,init:0 -#: wizard_button:sale.order.line.make_invoice,init,invoice:0 -#: wizard_view:sale.order.make_invoice,init:0 -#: wizard_button:sale.order.make_invoice,init,invoice:0 -msgid "Create invoices" -msgstr "" - -#. module: sale -#: constraint:product.template:0 -msgid "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree7 -#: model:ir.ui.menu,name:sale.menu_action_order_tree7 -msgid "My sales in shipping exception" -msgstr "" - -#. module: sale -#: view:sale.config.picking_policy:0 -msgid "Sales Configuration" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree2 -#: model:ir.ui.menu,name:sale.menu_action_order_tree2 -msgid "Sales in Exception" -msgstr "" - -#. module: sale -#: selection:sale.order.line,type:0 -msgid "on order" -msgstr "" - -#. module: sale -#: selection:sale.order.line,state:0 -msgid "Draft" -msgstr "" - -#. module: sale -#: field:sale.order,invoiced:0 -msgid "Paid" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Procurement Corrected" -msgstr "" - -#. module: sale -#: selection:sale.order,order_policy:0 -msgid "Shipping & Manual Invoice" -msgstr "" - -#. module: sale -#: model:process.transition,name:sale.process_transition_saleorderprocurement0 -#: model:process.transition,name:sale.process_transition_saleprocurement0 -msgid "Sale Procurement" -msgstr "" - -#. module: sale -#: view:sale.config.picking_policy:0 -msgid "Configure Sale Order Logistic" -msgstr "" - -#. module: sale -#: field:sale.order,amount_untaxed:0 -msgid "Untaxed Amount" -msgstr "" - -#. module: sale -#: field:sale.order.line,state:0 -msgid "Status" -msgstr "" - -#. module: sale -#: field:sale.order,picking_policy:0 -msgid "Packing Policy" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_line_product_tree -msgid "Product sales" -msgstr "" - -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "invalid mode for test_state" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Our Salesman" -msgstr "" - -#. module: sale -#: wizard_button:sale.advance_payment_inv,init,create:0 -msgid "Create Advance Invoice" -msgstr "" - -#. module: sale -#: model:process.node,note:sale.process_node_saleprocurement0 -msgid "One procurement for each product." -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_form -#: model:ir.ui.menu,name:sale.menu_sale_order -msgid "Sales Orders" -msgstr "" - -#. module: sale -#: model:ir.model,name:sale.model_sale_order -#: model:process.node,name:sale.process_node_saleorder0 -#: model:res.request.link,name:sale.req_link_sale_order -#: view:sale.order:0 -#: field:stock.picking,sale_id:0 -msgid "Sale Order" -msgstr "" - -#. module: sale -#: field:product.product,pricelist_sale:0 -msgid "Sale Pricelists" -msgstr "" - -#. module: sale -#: selection:sale.config.picking_policy,picking_policy:0 -msgid "Direct Delivery" -msgstr "" - -#. module: sale -#: view:sale.order:0 -#: view:sale.order.line:0 -#: field:sale.order.line,property_ids:0 -msgid "Properties" -msgstr "" - -#. module: sale -#: model:process.node,name:sale.process_node_quotation0 -#: selection:sale.order,state:0 -msgid "Quotation" -msgstr "" - -#. module: sale -#: model:product.template,name:sale.advance_product_0_product_template -msgid "Advance Product" -msgstr "" - -#. 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 "" - -#. module: sale -#: view:sale.order:0 -msgid "Compute" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_shop_form -#: model:ir.ui.menu,name:sale.menu_action_shop_form -#: field:sale.order,shop_id:0 -msgid "Shop" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "VAT" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree4 -#: model:ir.ui.menu,name:sale.menu_action_order_tree4 -msgid "Sales Order in Progress" -msgstr "" - -#. module: sale -#: code:addons/sale/wizard/make_invoice_advance.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: sale -#: model:process.transition.action,name:sale.process_transition_action_assign0 -msgid "Assign" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "History" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Make Invoice" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Your Reference" -msgstr "" - -#. module: sale -#: selection:sale.config.picking_policy,step:0 -msgid "Delivery Order Only" -msgstr "" - -#. module: sale -#: view:sale.order:0 -#: view:sale.order.line:0 -msgid "Sales order lines" -msgstr "" - -#. module: sale -#: field:sale.order.line,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.act_res_partner_2_sale_order -msgid "Sales" -msgstr "" - -#. module: sale -#: view:sale.order:0 -#: view:sale.order.line:0 -msgid "Qty" -msgstr "" - -#. module: sale -#: model:process.node,note:sale.process_node_packinglist0 -msgid "Packing OUT is created for stockable products." -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Other data" -msgstr "" - -#. module: sale -#: wizard_field:sale.advance_payment_inv,init,amount:0 -#: rml:sale.order:0 -#: field:sale.order.line,price_unit:0 -msgid "Unit Price" -msgstr "" - -#. module: sale -#: field:sale.order,fiscal_position:0 -msgid "Fiscal Position" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Invoice address :" -msgstr "" - -#. module: sale -#: model:process.transition,name:sale.process_transition_invoice0 -#: field:sale.order,invoice_ids:0 -msgid "Invoice" -msgstr "" - -#. module: sale -#: model:process.transition.action,name:sale.process_transition_action_cancel0 -#: model:process.transition.action,name:sale.process_transition_action_cancel1 -#: model:process.transition.action,name:sale.process_transition_action_cancel2 -#: wizard_button:sale.advance_payment_inv,init,end:0 -#: view:sale.config.picking_policy:0 -#: selection:sale.order,state:0 -#: view:sale.order.line:0 -#: wizard_button:sale.order.line.make_invoice,init,end:0 -#: wizard_button:sale.order.make_invoice,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: sale -#: help:sale.order,state:0 -msgid "Gives the state of the quotation or sale order. The exception state is automatically set when a cancel operation occurs in the invoice validation (Invoice Exception) or in the packing list process (Shipping Exception). The 'Waiting Schedule' state is set when the invoice is confirmed but waiting for the scheduler to run on the date 'Date Ordered'." -msgstr "" - -#. module: sale -#: view:sale.order:0 -#: view:sale.order.line:0 -msgid "UoM" -msgstr "" - -#. module: sale -#: field:sale.order.line,number_packages:0 -msgid "Number Packages" -msgstr "" - -#. 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 "" - -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "You cannot cancel a sale order line that has already been invoiced !" -msgstr "" - -#. module: sale -#: selection:sale.order,state:0 -msgid "In Progress" -msgstr "" - -#. module: sale -#: wizard_view:sale.advance_payment_inv,init:0 -msgid "Advance Payment" -msgstr "" - -#. module: sale -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: sale -#: model:process.transition,note:sale.process_transition_saleinvoice0 -msgid "Confirm sale order and Create invoice." -msgstr "" - -#. module: sale -#: selection:sale.config.picking_policy,step:0 -msgid "Packing List & Delivery Order" -msgstr "" - -#. module: sale -#: selection:sale.order.line,state:0 -msgid "Exception" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Sale Order Lines" -msgstr "" - -#. module: sale -#: model:process.transition.action,name:sale.process_transition_action_createinvoice0 -#: view:sale.order:0 -msgid "Create Invoice" -msgstr "" - -#. module: sale -#: wizard_view:sale.order.line.make_invoice,init:0 -#: wizard_view:sale.order.make_invoice,init:0 -msgid "Do you really want to create the invoices ?" -msgstr "" - -#. module: sale -#: model:process.node,note:sale.process_node_invoiceafterdelivery0 -msgid "Invoice based on packing lists" -msgstr "" - -#. module: sale -#: view:sale.config.picking_policy:0 -msgid "Set Default" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Sales order" -msgstr "" - -#. module: sale -#: model:process.node,note:sale.process_node_quotation0 -msgid "Quotation (A sale order in draft state)" -msgstr "" - -#. module: sale -#: model:process.transition,name:sale.process_transition_saleinvoice0 -msgid "Sale Invoice" -msgstr "" - -#. module: sale -#: field:sale.order,incoterm:0 -msgid "Incoterm" -msgstr "" - -#. module: sale -#: wizard_field:sale.advance_payment_inv,init,product_id:0 -#: field:sale.order.line,product_id:0 -msgid "Product" -msgstr "" - -#. module: sale -#: wizard_button:sale.advance_payment_inv,create,open:0 -msgid "Open Advance Invoice" -msgstr "" - -#. module: sale -#: field:sale.order,partner_order_id:0 -msgid "Ordering Contact" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -#: field:sale.order.line,name:0 -msgid "Description" -msgstr "" - -#. module: sale -#: model:ir.module.module,shortdesc:sale.module_meta_information -#: model:ir.ui.menu,name:sale.menu_sale_root -msgid "Sales Management" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Price" -msgstr "" - -#. module: sale -#: model:process.transition,name:sale.process_transition_deliver0 -msgid "Deliver" -msgstr "" - -#. module: sale -#: model:ir.actions.report.xml,name:sale.report_sale_order -msgid "Quotation / Order" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Tel. :" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Quotation N°" -msgstr "" - -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "Could not cancel this sale order !" -msgstr "" - -#. module: sale -#: field:stock.move,sale_line_id:0 -msgid "Sale Order Line" -msgstr "" - -#. module: sale -#: model:process.transition.action,name:sale.process_transition_action_cancelassignation0 -msgid "Cancel Assignation" -msgstr "" - -#. module: sale -#: selection:sale.order,order_policy:0 -msgid "Invoice from the Packing" -msgstr "" - -#. module: sale -#: model:ir.actions.wizard,name:sale.wizard_sale_order_line_invoice -#: model:ir.actions.wizard,name:sale.wizard_sale_order_make_invoice -msgid "Make invoices" -msgstr "" - -#. module: sale -#: help:sale.order,partner_order_id:0 -msgid "The name and address of the contact that requested the order or quotation." -msgstr "" - -#. module: sale -#: field:sale.order,partner_id:0 -#: field:sale.order.line,order_partner_id:0 -msgid "Customer" -msgstr "" - -#. module: sale -#: field:product.product,pricelist_purchase:0 -msgid "Purchase Pricelists" -msgstr "" - -#. module: sale -#: code:addons/sale/sale.py:0 -#, python-format -msgid "Cannot delete Sale Order(s) which are already confirmed !" -msgstr "" - -#. module: sale -#: field:sale.config.picking_policy,name:0 -msgid "Name" -msgstr "" - -#. module: sale -#: field:sale.order,invoice_quantity:0 -msgid "Invoice on" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree_new -#: model:ir.ui.menu,name:sale.menu_action_order_tree_new -msgid "New Quotation" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Total amount" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -#: field:sale.order,date_order:0 -msgid "Date Ordered" -msgstr "" - -#. module: sale -#: field:sale.order.line,product_uos:0 -msgid "Product UoS" -msgstr "" - -#. module: sale -#: selection:sale.order,state:0 -msgid "Manual In Progress" -msgstr "" - -#. module: sale -#: field:sale.order.line,product_uom:0 -msgid "Product UoM" -msgstr "" - -#. 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 "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_config_picking_policy -msgid "Configure Picking Policy for Sale Order" -msgstr "" - -#. module: sale -#: model:process.node,name:sale.process_node_order0 -msgid "Order" -msgstr "" - -#. module: sale -#: rml:sale.order:0 -msgid "Payment Terms" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Invoice Corrected" -msgstr "" - -#. module: sale -#: field:sale.order.line,delay:0 -msgid "Delivery Delay" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Related invoices" -msgstr "" - -#. module: sale -#: field:sale.shop,name:0 -msgid "Shop Name" -msgstr "" - -#. module: sale -#: field:sale.order,payment_term:0 -msgid "Payment Term" -msgstr "" - -#. module: sale -#: selection:sale.order,order_policy:0 -msgid "Payment Before Delivery" -msgstr "" - -#. 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 "" - -#. module: sale -#: view:sale.order:0 -#: view:sale.order.line:0 -msgid "States" -msgstr "" - -#. module: sale -#: field:sale.order.line,th_weight:0 -msgid "Weight" -msgstr "" - -#. module: sale -#: constraint:product.product:0 -msgid "Error: Invalid ean code" -msgstr "" - -#. module: sale -#: field:sale.order,picked_rate:0 -#: field:sale.order,shipped:0 -msgid "Picked" -msgstr "" - -#. module: sale -#: view:sale.shop:0 -msgid "Accounting" -msgstr "" - -#. module: sale -#: selection:sale.config.picking_policy,order_policy:0 -msgid "Invoice Based on Deliveries" -msgstr "" - -#. module: sale -#: view:sale.order:0 -msgid "Stock Moves" -msgstr "" - -#. module: sale -#: model:ir.actions.act_window,name:sale.action_order_tree -#: model:ir.ui.menu,name:sale.menu_action_order_tree -msgid "My Sales Order" -msgstr "" - -#. module: sale -#: model:ir.model,name:sale.model_sale_order_line -msgid "Sale Order line" -msgstr "" - diff --git a/addons/sale_analytic_plans/i18n/tlh_TLH.po b/addons/sale_analytic_plans/i18n/tlh_TLH.po deleted file mode 100644 index 2e2ced7a844..00000000000 --- a/addons/sale_analytic_plans/i18n/tlh_TLH.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * sale_analytic_plans -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: sale_analytic_plans -#: field:sale.order.line,analytics_id:0 -msgid "Analytic Distribution" -msgstr "" - -#. module: sale_analytic_plans -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: sale_analytic_plans -#: model:ir.module.module,shortdesc:sale_analytic_plans.module_meta_information -msgid "Sales Analytic Distribution Management" -msgstr "" - diff --git a/addons/sale_crm/i18n/tlh_TLH.po b/addons/sale_crm/i18n/tlh_TLH.po deleted file mode 100644 index 654f0a58a04..00000000000 --- a/addons/sale_crm/i18n/tlh_TLH.po +++ /dev/null @@ -1,206 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * sale_crm -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_crmopportunityquotation -msgid "Crm opportunity quotation" -msgstr "" - -#. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityanalytic0 -msgid "Opportunity Analytic" -msgstr "" - -#. module: sale_crm -#: help:crm.case.make_order,init,partner_id:0 -msgid "Use this partner if there is no partner on the case" -msgstr "" - -#. module: sale_crm -#: wizard_button:sale_crm.make_case,init,create:0 -msgid "Create" -msgstr "" - -#. module: sale_crm -#: selection:crm.case.make_order,init,picking_policy:0 -msgid "All at once" -msgstr "" - -#. module: sale_crm -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: sale_crm -#: model:process.transition,note:sale_crm.process_transition_crmopportunityquotation -msgid "Opportunity goes into the quotation" -msgstr "" - -#. module: sale_crm -#: model:process.node,name:sale_crm.process_node_contractanalytic0 -msgid "Analytic account" -msgstr "" - -#. module: sale_crm -#: model:process.node,note:sale_crm.process_node_crmquotation0 -msgid "Convert opportunity to quotation" -msgstr "" - -#. module: sale_crm -#: wizard_field:sale_crm.make_case,init,description:0 -msgid "Your action" -msgstr "" - -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,picking_policy:0 -msgid "Packing Policy" -msgstr "" - -#. module: sale_crm -#: wizard_button:crm.case.make_order,init,order:0 -msgid "Create Quote" -msgstr "" - -#. module: sale_crm -#: model:process.node,note:sale_crm.process_node_contractpricelist0 -msgid "Contract Volume (pricelist)" -msgstr "" - -#. module: sale_crm -#: model:process.node,name:sale_crm.process_node_crmopportunity0 -msgid "CRM Opportunity" -msgstr "" - -#. module: sale_crm -#: model:ir.module.module,shortdesc:sale_crm.module_meta_information -msgid "Sale CRM Stuff" -msgstr "" - -#. module: sale_crm -#: model:process.transition,note:sale_crm.process_transition_opportunityquotation0 -msgid "Opportunity convert into quotation" -msgstr "" - -#. module: sale_crm -#: selection:crm.case.make_order,init,picking_policy:0 -msgid "Direct Delivery" -msgstr "" - -#. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunityquotation0 -msgid "Opportunity Quotation" -msgstr "" - -#. module: sale_crm -#: model:process.node,name:sale_crm.process_node_crmquotation0 -msgid "Quotation" -msgstr "" - -#. module: sale_crm -#: view:crm.case:0 -#: wizard_view:crm.case.make_order,init:0 -msgid "Convert to Quote" -msgstr "" - -#. module: sale_crm -#: help:crm.case.make_order,init,close:0 -msgid "Check this to close the case after having created the sale order." -msgstr "" - -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,partner_id:0 -msgid "Customer" -msgstr "" - -#. module: sale_crm -#: model:process.transition,note:sale_crm.process_transition_opportunitypricelist0 -msgid "Opporunity convert to the Pricelist" -msgstr "" - -#. module: sale_crm -#: wizard_field:sale_crm.make_case,init,user:0 -msgid "User Responsible" -msgstr "" - -#. module: sale_crm -#: model:process.node,note:sale_crm.process_node_contractanalytic0 -msgid "Reflect the contract made with customer" -msgstr "" - -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,products:0 -msgid "Products" -msgstr "" - -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,close:0 -msgid "Close Case" -msgstr "" - -#. module: sale_crm -#: model:ir.actions.wizard,name:sale_crm.sale_crm_make_case_wizard -#: wizard_view:sale_crm.make_case,init:0 -msgid "Make Case" -msgstr "" - -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,shop_id:0 -msgid "Shop" -msgstr "" - -#. module: sale_crm -#: model:process.node,note:sale_crm.process_node_crmopportunity0 -msgid "The CRM Opportunity can lead to a quotation." -msgstr "" - -#. module: sale_crm -#: model:process.transition,name:sale_crm.process_transition_opportunitypricelist0 -msgid "Opportunity Pricelist" -msgstr "" - -#. module: sale_crm -#: model:process.node,name:sale_crm.process_node_contractpricelist0 -msgid "Contract Pricelist" -msgstr "" - -#. module: sale_crm -#: wizard_field:sale_crm.make_case,init,name:0 -msgid "Case Description" -msgstr "" - -#. module: sale_crm -#: wizard_field:crm.case.make_order,init,analytic_account:0 -#: model:process.transition,note:sale_crm.process_transition_opportunityanalytic0 -msgid "Analytic Account" -msgstr "" - -#. module: sale_crm -#: model:ir.actions.wizard,name:sale_crm.sale_crm_wizard -msgid "Make Quotation" -msgstr "" - -#. module: sale_crm -#: wizard_button:crm.case.make_order,init,end:0 -#: wizard_button:sale_crm.make_case,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: sale_crm -#: wizard_field:sale_crm.make_case,init,section:0 -msgid "Case Section" -msgstr "" - diff --git a/addons/sale_delivery_report/i18n/tlh_TLH.po b/addons/sale_delivery_report/i18n/tlh_TLH.po deleted file mode 100644 index 871e8bf9468..00000000000 --- a/addons/sale_delivery_report/i18n/tlh_TLH.po +++ /dev/null @@ -1,77 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * sale_delivery_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: sale_delivery_report -#: rml:sale.shipping:0 -msgid "Order Date" -msgstr "" - -#. module: sale_delivery_report -#: rml:sale.shipping:0 -msgid "Order Ref." -msgstr "" - -#. module: sale_delivery_report -#: rml:sale.shipping:0 -msgid "Weight" -msgstr "" - -#. module: sale_delivery_report -#: rml:sale.shipping:0 -msgid "Designation" -msgstr "" - -#. module: sale_delivery_report -#: rml:sale.shipping:0 -msgid "Delivery Order :" -msgstr "" - -#. module: sale_delivery_report -#: model:ir.actions.report.xml,name:sale_delivery_report.report_shipping -msgid "Delivery order" -msgstr "" - -#. module: sale_delivery_report -#: model:ir.module.module,shortdesc:sale_delivery_report.module_meta_information -msgid "Print Delivery Order" -msgstr "" - -#. module: sale_delivery_report -#: rml:sale.shipping:0 -msgid "Carrier" -msgstr "" - -#. module: sale_delivery_report -#: rml:sale.shipping:0 -msgid "Invoiced to" -msgstr "" - -#. module: sale_delivery_report -#: rml:sale.shipping:0 -msgid "Lot" -msgstr "" - -#. module: sale_delivery_report -#: rml:sale.shipping:0 -msgid "Shipping Date" -msgstr "" - -#. module: sale_delivery_report -#: rml:sale.shipping:0 -msgid "Quantity" -msgstr "" - diff --git a/addons/sale_journal/i18n/tlh_TLH.po b/addons/sale_journal/i18n/tlh_TLH.po deleted file mode 100644 index 25894f18f42..00000000000 --- a/addons/sale_journal/i18n/tlh_TLH.po +++ /dev/null @@ -1,546 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * sale_journal -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.act_sale_journal_sale_journal_2_sale_journal_sale_stats -msgid "Monthly sales" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.act_sale_journal_picking_journal_2_stock_picking_assigned -#: model:ir.actions.act_window,name:sale_journal.act_sale_journal_sale_journal_2_stock_picking_assigned -msgid "Assigned packing" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type.stats,state:0 -#: selection:sale_journal.picking.stats,state:0 -msgid "assigned" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.sale.stats,state:0 -msgid "Waiting Schedule" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type.stats,invoice_state:0 -msgid "to be invoiced" -msgstr "" - -#. module: sale_journal -#: model:ir.model,name:sale_journal.model_sale_journal_sale_journal -#: view:sale_journal.sale.journal:0 -#: field:stock.picking,sale_journal_id:0 -msgid "Sale Journal" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.sale.journal,sale_stats_ids:0 -msgid "Sale Stats" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type.stats,state:0 -#: selection:sale_journal.picking.stats,state:0 -msgid "waiting" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.picking.journal:0 -#: view:sale_journal.sale.journal:0 -msgid "Set to Draft" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.picking.journal,date:0 -#: field:sale_journal.sale.journal,date:0 -msgid "Journal date" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_picking_invoice_method -#: model:ir.ui.menu,name:sale_journal.menu_invoice_type_picking_stats_open_all -#: model:ir.ui.menu,name:sale_journal.menu_invoice_type_picking_stats_open_menu -msgid "Packing by Invoice Method" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_picking -msgid "Packing Journals" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.picking.journal:0 -#: view:sale_journal.sale.journal:0 -msgid "Notes" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.action_definition_journal_tree_my -msgid "My open journals" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.invoice.type.stats,count:0 -#: field:sale_journal.picking.stats,count:0 -#: field:sale_journal.sale.stats,count:0 -msgid "# of Lines" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_picking_byjournal_all -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_sales_all_open -msgid "All Open Journals" -msgstr "" - -#. module: sale_journal -#: model:ir.module.module,shortdesc:sale_journal.module_meta_information -msgid "Managing sales and deliveries by journal" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type.stats,state:0 -#: selection:sale_journal.picking.stats,state:0 -msgid "done" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.invoice.type.stats,price_average:0 -#: field:sale_journal.picking.stats,price_average:0 -#: field:sale_journal.sale.stats,price_average:0 -msgid "Average Price" -msgstr "" - -#. module: sale_journal -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type,invoicing_method:0 -msgid "Grouped" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.invoice.type.stats,state:0 -#: field:sale_journal.picking.stats,state:0 -#: field:sale_journal.sale.journal,state:0 -msgid "State" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_reporting_all -#: model:ir.ui.menu,name:sale_journal.menu_definition_report_sales_all_month -msgid "All Months" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.invoice.type.stats,price_total:0 -#: field:sale_journal.picking.stats,price_total:0 -#: field:sale_journal.sale.stats,price_total:0 -msgid "Total Price" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.action_definition_picking_journal -msgid "Packing journals" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_report_sales -msgid "Reporting" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.action_definition_picking_journal_tree_my -msgid "My open packing journals" -msgstr "" - -#. module: sale_journal -#: model:ir.model,name:sale_journal.model_sale_journal_sale_stats -msgid "Sales Orders by Journal" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.action_definition_journal_tree_all -msgid "Open journals" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.picking.journal:0 -msgid "Packing" -msgstr "" - -#. module: sale_journal -#: help:res.partner,property_invoice_type:0 -msgid "The type of journal used for sales and packing." -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type.stats,invoice_state:0 -msgid "None" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.action_sale_sale_stats_open_menu_month -msgid "Sales by journal (this month)" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.sale.stats,state:0 -msgid "Manual in progress" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.action_definition_picking_journal_tree -#: model:ir.actions.act_window,name:sale_journal.action_definition_picking_journal_tree_all -#: model:ir.actions.act_window,name:sale_journal.action_picking_picking_stats_open_menu_all -#: model:ir.actions.act_window,name:sale_journal.action_picking_picking_stats_open_menu_month -msgid "Packing by journal" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.picking.journal:0 -msgid "Cancel Packing" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.act_sale_journal_picking_journal_2_stock_picking_confirmed -#: model:ir.actions.act_window,name:sale_journal.act_sale_journal_sale_journal_2_stock_picking_confirmed -msgid "Confirmed packing" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.sale.stats,state:0 -msgid "In progress" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.picking.stats:0 -msgid "Packing by journals" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.invoice.type.stats,name:0 -#: field:sale_journal.picking.stats,name:0 -#: field:sale_journal.sale.stats,name:0 -msgid "Month" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.invoice.type.stats,invoice_state:0 -msgid "Invoice state" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.action_invoice_type_picking_stats_open_menu_all -#: model:ir.actions.act_window,name:sale_journal.action_invoice_type_picking_stats_open_menu_month -#: view:sale_journal.invoice.type.stats:0 -msgid "Packing by invoice method" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.sale.stats,state:0 -msgid "Order State" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.sale.stats,state:0 -msgid "Shipping Exception" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.invoice.type,note:0 -#: field:sale_journal.picking.journal,note:0 -#: field:sale_journal.sale.journal,note:0 -msgid "Note" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.picking.journal,state:0 -#: selection:sale_journal.sale.journal,state:0 -msgid "Draft" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type.stats,state:0 -#: selection:sale_journal.picking.stats,state:0 -msgid "cancel" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.sale.stats,state:0 -msgid "Invoice Exception" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.picking.journal,date_validation:0 -#: field:sale_journal.sale.journal,date_validation:0 -msgid "Validation date" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type.stats,state:0 -#: selection:sale_journal.picking.stats,state:0 -msgid "draft" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.invoice.type,active:0 -msgid "Active" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.act_sale_journal_sale_journal_2_sale_order_draft -msgid "Draft sales" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.sale.stats,state:0 -msgid "Quotation" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal -msgid "Sales Journals" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.action_invoice_type_tree -msgid "sale_journal.invoice.type.tree" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.sale.journal:0 -msgid "Confirm Sales" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.picking.journal,date_created:0 -#: field:sale_journal.picking.journal,state:0 -#: field:sale_journal.sale.journal,date_created:0 -msgid "Creation date" -msgstr "" - -#. module: sale_journal -#: field:res.partner,property_invoice_type:0 -msgid "Invoicing Method" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.picking.journal,code:0 -#: field:sale_journal.sale.journal,code:0 -msgid "Code" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.picking.journal:0 -#: view:sale_journal.sale.journal:0 -msgid "Open Journal" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.sale.journal:0 -msgid "Sales" -msgstr "" - -#. module: sale_journal -#: model:ir.model,name:sale_journal.model_sale_journal_picking_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_reporting -#: view:sale_journal.picking.journal:0 -msgid "Packing Journal" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.picking.journal,state:0 -#: selection:sale_journal.sale.journal,state:0 -#: selection:sale_journal.sale.stats,state:0 -msgid "Done" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.sale.stats,state:0 -msgid "Cancel" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.picking.journal,picking_stats_ids:0 -msgid "Journal Stats" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.picking.journal,state:0 -#: selection:sale_journal.sale.journal,state:0 -msgid "Open" -msgstr "" - -#. module: sale_journal -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: sale_journal -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.picking.journal,user_id:0 -#: field:sale_journal.sale.journal,user_id:0 -msgid "Responsible" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_picking_byjournal_my -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_sales_my_open -msgid "My Open Journals" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.action_invoice_type_picking_stats_open -msgid "Statistics on packing to invoice" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.sale.journal:0 -msgid "Cancel Sales" -msgstr "" - -#. module: sale_journal -#: field:sale.order,invoice_type_id:0 -#: view:sale_journal.invoice.type:0 -#: field:sale_journal.invoice.type,name:0 -#: field:stock.picking,invoice_type_id:0 -msgid "Invoice Type" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type.stats,invoice_state:0 -msgid "invoiced" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type.stats,state:0 -#: selection:sale_journal.picking.stats,state:0 -msgid "confirmed" -msgstr "" - -#. module: sale_journal -#: model:ir.model,name:sale_journal.model_sale_journal_picking_stats -msgid "Packing lists by Journal" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.invoice.type.stats,quantity:0 -#: field:sale_journal.picking.stats,quantity:0 -#: field:sale_journal.sale.stats,quantity:0 -msgid "Quantities" -msgstr "" - -#. module: sale_journal -#: field:sale.order,journal_id:0 -#: view:sale_journal.picking.journal:0 -#: field:sale_journal.picking.journal,name:0 -#: field:sale_journal.picking.stats,journal_id:0 -#: view:sale_journal.sale.journal:0 -#: field:sale_journal.sale.journal,name:0 -#: field:sale_journal.sale.stats,journal_id:0 -#: field:stock.picking,journal_id:0 -msgid "Journal" -msgstr "" - -#. module: sale_journal -#: field:sale_journal.invoice.type,invoicing_method:0 -#: field:sale_journal.invoice.type.stats,invoice_type_id:0 -msgid "Invoicing method" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_reporting_this -#: model:ir.ui.menu,name:sale_journal.menu_definition_report_sales_this_month -msgid "This Month" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_sales -#: model:ir.ui.menu,name:sale_journal.menu_sale_sale_stats_open_all -#: model:ir.ui.menu,name:sale_journal.menu_sale_sale_stats_open_menu -#: view:sale_journal.sale.stats:0 -msgid "Sales by Journal" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_invoice_type -msgid "Invoicing Methods" -msgstr "" - -#. module: sale_journal -#: selection:sale_journal.invoice.type,invoicing_method:0 -msgid "Non grouped" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.action_invoice_type_picking_open -msgid "Packing to invoice" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.picking.journal:0 -#: view:sale_journal.sale.journal:0 -msgid "Journal Information" -msgstr "" - -#. module: sale_journal -#: model:ir.model,name:sale_journal.model_sale_journal_invoice_type_stats -msgid "Stats on packing by invoice method" -msgstr "" - -#. module: sale_journal -#: model:ir.model,name:sale_journal.model_sale_journal_invoice_type -msgid "Invoice Types" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.picking.journal:0 -#: view:sale_journal.sale.journal:0 -msgid "States" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_picking_byjournal -#: model:ir.ui.menu,name:sale_journal.menu_picking_picking_stats_open_all -#: model:ir.ui.menu,name:sale_journal.menu_picking_picking_stats_open_menu -msgid "Packing by Journal" -msgstr "" - -#. module: sale_journal -#: view:sale_journal.picking.journal:0 -#: view:sale_journal.sale.journal:0 -msgid "Close Journal" -msgstr "" - -#. module: sale_journal -#: model:ir.ui.menu,name:sale_journal.menu_definition_journal_picking_invoice -msgid "Packing to Invoice" -msgstr "" - -#. module: sale_journal -#: model:ir.actions.act_window,name:sale_journal.act_sale_journal_sale_journal_2_sale_order_approved -msgid "Approved sales" -msgstr "" - diff --git a/addons/scrum/i18n/tlh_TLH.po b/addons/scrum/i18n/tlh_TLH.po deleted file mode 100644 index 5b318d7525b..00000000000 --- a/addons/scrum/i18n/tlh_TLH.po +++ /dev/null @@ -1,861 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * scrum -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: scrum -#: view:scrum.product.backlog:0 -msgid "Scrum Product backlog" -msgstr "" - -#. module: scrum -#: field:scrum.meeting,name:0 -msgid "Meeting Name" -msgstr "" - -#. module: scrum -#: model:process.transition,note:scrum.process_transition_backlogtask0 -msgid "From backlog create task." -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_view_task4 -#: model:ir.ui.menu,name:scrum.menu_action_view_task4 -msgid "My tasks" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_sprint_open_tree6 -#: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree6 -msgid "My opened sprints (Product Owner)" -msgstr "" - -#. module: scrum -#: model:process.node,note:scrum.process_node_productbacklog0 -msgid "Create task from backlogs" -msgstr "" - -#. module: scrum -#: selection:scrum.project,state:0 -msgid "Template" -msgstr "" - -#. module: scrum -#: model:ir.module.module,shortdesc:scrum.module_meta_information -msgid "Scrum, Agile Development Method" -msgstr "" - -#. module: scrum -#: field:scrum.project,progress_rate:0 -msgid "Progress" -msgstr "" - -#. module: scrum -#: help:scrum.task,remaining_hours:0 -msgid "Total remaining time, can be re-estimated periodically by the assignee of the task." -msgstr "" - -#. module: scrum -#: field:scrum.project,child_id:0 -msgid "Subproject" -msgstr "" - -#. module: scrum -#: view:scrum.meeting:0 -msgid "What have you accomplished since yesterday ?" -msgstr "" - -#. module: scrum -#: view:scrum.meeting:0 -msgid "Are your Sprint Backlog estimate accurate ?" -msgstr "" - -#. module: scrum -#: field:scrum.project,members:0 -msgid "Project Members" -msgstr "" - -#. module: scrum -#: view:scrum.project:0 -msgid "Scrum Projects" -msgstr "" - -#. module: scrum -#: field:scrum.task,child_ids:0 -msgid "Delegated Tasks" -msgstr "" - -#. module: scrum -#: field:scrum.task,progress:0 -msgid "Progress (%)" -msgstr "" - -#. module: scrum -#: field:scrum.task,priority:0 -msgid "Importance" -msgstr "" - -#. module: scrum -#: model:ir.model,name:scrum.model_scrum_task -msgid "Scrum Task" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.dblc_proj -msgid "View project's backlog" -msgstr "" - -#. module: scrum -#: help:scrum.project,members:0 -msgid "Project's member. Not used in any computation, just for information purpose." -msgstr "" - -#. module: scrum -#: selection:scrum.product.backlog,priority:0 -#: selection:scrum.task,priority:0 -msgid "Very urgent" -msgstr "" - -#. module: scrum -#: field:scrum.sprint,retrospective:0 -msgid "Sprint Retrospective" -msgstr "" - -#. module: scrum -#: field:scrum.sprint,name:0 -msgid "Sprint Name" -msgstr "" - -#. module: scrum -#: help:scrum.task,planned_hours:0 -msgid "Estimated time to do the task, usually set by the project manager when the task is in draft state." -msgstr "" - -#. module: scrum -#: field:scrum.project,notes:0 -#: field:scrum.task,notes:0 -msgid "Notes" -msgstr "" - -#. module: scrum -#: model:ir.model,name:scrum.model_scrum_product_backlog -#: field:scrum.task,product_backlog_id:0 -msgid "Product Backlog" -msgstr "" - -#. module: scrum -#: field:scrum.sprint,project_id:0 -#: field:scrum.task,project_id:0 -msgid "Project" -msgstr "" - -#. module: scrum -#: help:scrum.project,warn_manager:0 -msgid "If you check this field, the project manager will receive a request each time a task is completed by his team." -msgstr "" - -#. module: scrum -#: selection:scrum.project,state:0 -#: selection:scrum.task,state:0 -msgid "Cancelled" -msgstr "" - -#. module: scrum -#: field:scrum.team,name:0 -msgid "Team Name" -msgstr "" - -#. module: scrum -#: field:scrum.project,warn_header:0 -msgid "Mail Header" -msgstr "" - -#. module: scrum -#: field:scrum.project,sprint_size:0 -msgid "Sprint Days" -msgstr "" - -#. module: scrum -#: field:scrum.sprint,date_stop:0 -msgid "Ending Date" -msgstr "" - -#. module: scrum -#: help:scrum.task,effective_hours:0 -msgid "Computed using the sum of the task work done." -msgstr "" - -#. module: scrum -#: help:scrum.project,warn_customer:0 -msgid "If you check this, the user will have a popup when closing a task that propose a message to send by email to the customer." -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_sprint_task_open -msgid "View sprint Tasks" -msgstr "" - -#. module: scrum -#: field:scrum.project,category_id:0 -msgid "Analytic Account" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_view_task -#: model:ir.ui.menu,name:scrum.menu_action_view_task -msgid "All Tasks" -msgstr "" - -#. module: scrum -#: field:scrum.task,date_deadline:0 -msgid "Deadline" -msgstr "" - -#. module: scrum -#: field:scrum.project,partner_id:0 -#: field:scrum.task,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: scrum -#: field:scrum.product.backlog,planned_hours:0 -#: field:scrum.sprint,planned_hours:0 -#: field:scrum.task,planned_hours:0 -msgid "Planned Hours" -msgstr "" - -#. module: scrum -#: field:scrum.product.backlog,priority:0 -msgid "Priority" -msgstr "" - -#. module: scrum -#: field:scrum.project,state:0 -#: view:scrum.sprint:0 -msgid "State" -msgstr "" - -#. module: scrum -#: help:scrum.project,progress_rate:0 -msgid "Percent of tasks closed according to the total of tasks todo." -msgstr "" - -#. module: scrum -#: help:scrum.project,notes:0 -msgid "Internal description of the project." -msgstr "" - -#. module: scrum -#: field:scrum.sprint,meetings_id:0 -msgid "Daily Scrum" -msgstr "" - -#. module: scrum -#: help:scrum.task,total_hours:0 -msgid "Computed as: Time Spent + Remaining Time." -msgstr "" - -#. module: scrum -#: field:scrum.task,type:0 -msgid "Type" -msgstr "" - -#. module: scrum -#: view:scrum.project:0 -msgid "Scrum Data" -msgstr "" - -#. module: scrum -#: selection:scrum.product.backlog,priority:0 -#: selection:scrum.task,priority:0 -msgid "Medium" -msgstr "" - -#. module: scrum -#: field:scrum.project,total_hours:0 -msgid "Total Time" -msgstr "" - -#. module: scrum -#: model:ir.ui.menu,name:scrum.next_id_67 -msgid "Scrum" -msgstr "" - -#. module: scrum -#: field:scrum.project,planned_hours:0 -msgid "Planned Time" -msgstr "" - -#. module: scrum -#: field:scrum.meeting,question_today:0 -msgid "Tasks for today" -msgstr "" - -#. module: scrum -#: field:scrum.meeting,question_yesterday:0 -msgid "Tasks since yesterday" -msgstr "" - -#. module: scrum -#: field:scrum.project,date_start:0 -#: field:scrum.sprint,date_start:0 -#: field:scrum.task,date_start:0 -msgid "Starting Date" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_scrum_project_tree -#: model:ir.ui.menu,name:scrum.menu_action_scrum_project_tree -msgid "Projects" -msgstr "" - -#. module: scrum -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: scrum -#: field:scrum.task,history:0 -msgid "Task Details" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.dblc_proj2 -msgid "View project's tasks" -msgstr "" - -#. module: scrum -#: field:scrum.task,delay_hours:0 -msgid "Delay Hours" -msgstr "" - -#. module: scrum -#: field:scrum.project,contact_id:0 -msgid "Contact" -msgstr "" - -#. module: scrum -#: field:scrum.project,tasks:0 -msgid "Scrum Tasks" -msgstr "" - -#. module: scrum -#: field:scrum.meeting,date:0 -msgid "Meeting Date" -msgstr "" - -#. module: scrum -#: view:scrum.product.backlog:0 -msgid "Tasks" -msgstr "" - -#. module: scrum -#: view:scrum.sprint:0 -msgid "Retrospective" -msgstr "" - -#. module: scrum -#: wizard_view:scrum.product.backlog.task.create,init:0 -#: wizard_button:scrum.product.backlog.task.create,init,create:0 -msgid "Create Tasks" -msgstr "" - -#. module: scrum -#: help:scrum.project,warn_header:0 -msgid "Header added at the beginning of the email for the warning message sent to the customer when a task is closed." -msgstr "" - -#. module: scrum -#: help:scrum.task,progress:0 -msgid "Computed as: Time Spent / Total Time." -msgstr "" - -#. module: scrum -#: field:scrum.project,scrum:0 -#: field:scrum.task,scrum:0 -msgid "Is Scrum" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_product_backlog_form_draft -#: model:ir.ui.menu,name:scrum.menu_action_product_backlog_form_draft -msgid "Draft Backlogs" -msgstr "" - -#. module: scrum -#: field:scrum.sprint,backlog_ids:0 -msgid "Sprint Backlog" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_view_task6 -#: model:ir.ui.menu,name:scrum.menu_action_view_task6 -msgid "Opened tasks" -msgstr "" - -#. module: scrum -#: field:scrum.meeting,question_blocks:0 -msgid "Blocks encountered" -msgstr "" - -#. module: scrum -#: view:scrum.meeting:0 -msgid "Optionnal Info" -msgstr "" - -#. module: scrum -#: help:scrum.project,total_hours:0 -msgid "Sum of total hours of all tasks related to this project." -msgstr "" - -#. module: scrum -#: model:ir.model,name:scrum.model_scrum_sprint -#: view:scrum.meeting:0 -#: view:scrum.sprint:0 -msgid "Scrum Sprint" -msgstr "" - -#. module: scrum -#: view:scrum.sprint:0 -msgid "Review" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_sprint_open_tree7 -#: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree7 -msgid "My opened sprints (Scrum Master)" -msgstr "" - -#. module: scrum -#: field:scrum.product.backlog,note:0 -msgid "Note" -msgstr "" - -#. module: scrum -#: selection:scrum.product.backlog,state:0 -#: selection:scrum.sprint,state:0 -#: selection:scrum.task,state:0 -msgid "Draft" -msgstr "" - -#. module: scrum -#: selection:scrum.product.backlog,priority:0 -#: selection:scrum.task,priority:0 -msgid "Low" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_view_task5 -#: model:ir.ui.menu,name:scrum.menu_tasks_yours -msgid "My opened tasks" -msgstr "" - -#. module: scrum -#: field:scrum.project,manager:0 -msgid "Project Manager" -msgstr "" - -#. module: scrum -#: selection:scrum.project,state:0 -#: selection:scrum.task,state:0 -msgid "Pending" -msgstr "" - -#. module: scrum -#: view:scrum.meeting:0 -msgid "Is there anything blocking you ?" -msgstr "" - -#. module: scrum -#: field:scrum.product.backlog,state:0 -#: field:scrum.sprint,state:0 -#: field:scrum.task,state:0 -msgid "Status" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_sprint_open_tree -#: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree -msgid "Opened Sprints" -msgstr "" - -#. module: scrum -#: field:scrum.project,effective_hours:0 -msgid "Time Spent" -msgstr "" - -#. module: scrum -#: field:scrum.project,name:0 -msgid "Project Name" -msgstr "" - -#. module: scrum -#: field:scrum.project,product_owner_id:0 -#: field:scrum.sprint,product_owner_id:0 -msgid "Product Owner" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_sprint_open_tree5 -#: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree5 -msgid "My Sprints (Scrum Master)" -msgstr "" - -#. module: scrum -#: model:process.node,name:scrum.process_node_productbacklog0 -#: view:scrum.product.backlog:0 -msgid "Product backlog" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_product_backlog_form -#: model:ir.ui.menu,name:scrum.menu_action_product_backlog_form -msgid "Backlogs" -msgstr "" - -#. module: scrum -#: field:scrum.product.backlog,user_id:0 -msgid "User" -msgstr "" - -#. module: scrum -#: field:scrum.product.backlog,active:0 -#: field:scrum.project,active:0 -#: field:scrum.task,active:0 -msgid "Active" -msgstr "" - -#. module: scrum -#: help:scrum.task,delay_hours:0 -msgid "Computed as: Total Time - Estimated Time. It gives the difference of the time estimated by the project manager and the real time to close the task." -msgstr "" - -#. module: scrum -#: field:scrum.task,timebox_id:0 -msgid "Timebox" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_sprint_open_tree2 -#: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree2 -msgid "Draft Sprints" -msgstr "" - -#. module: scrum -#: field:scrum.project,timesheet_id:0 -msgid "Working Time" -msgstr "" - -#. module: scrum -#: field:scrum.task,work_ids:0 -msgid "Work done" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_sprint_backlog_open -msgid "View sprint backlog" -msgstr "" - -#. module: scrum -#: field:scrum.task,date_close:0 -msgid "Date Closed" -msgstr "" - -#. module: scrum -#: field:scrum.task,user_id:0 -msgid "Assigned to" -msgstr "" - -#. module: scrum -#: field:scrum.meeting,question_backlog:0 -msgid "Backlog Accurate" -msgstr "" - -#. module: scrum -#: help:scrum.project,effective_hours:0 -msgid "Sum of spent hours of all tasks related to this project." -msgstr "" - -#. module: scrum -#: help:scrum.task,project_id:0 -msgid "If you have [?] in the project name, it means there are no analytic account linked to this project." -msgstr "" - -#. module: scrum -#: help:scrum.project,planned_hours:0 -msgid "Sum of planned hours of all tasks related to this project." -msgstr "" - -#. module: scrum -#: field:scrum.project,warn_customer:0 -msgid "Warn Partner" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_sprint_open_tree4 -#: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree4 -msgid "My Sprints (Product Owner)" -msgstr "" - -#. module: scrum -#: field:scrum.task,name:0 -msgid "Task summary" -msgstr "" - -#. module: scrum -#: help:scrum.project,category_id:0 -msgid "Link this project to an analytic account if you need financial management on projects. It enables you to connect projects with budgets, planning, cost and revenue analysis, timesheets on projects, etc." -msgstr "" - -#. module: scrum -#: selection:scrum.product.backlog,state:0 -#: selection:scrum.project,state:0 -#: selection:scrum.sprint,state:0 -#: selection:scrum.task,state:0 -msgid "Done" -msgstr "" - -#. module: scrum -#: wizard_button:scrum.product.backlog.task.create,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: scrum -#: selection:scrum.product.backlog,state:0 -#: selection:scrum.sprint,state:0 -msgid "Open" -msgstr "" - -#. module: scrum -#: view:scrum.product.backlog:0 -#: field:scrum.product.backlog,effective_hours:0 -#: view:scrum.project:0 -#: view:scrum.sprint:0 -#: field:scrum.sprint,effective_hours:0 -msgid "Effective hours" -msgstr "" - -#. module: scrum -#: field:scrum.project,warn_manager:0 -msgid "Warn Manager" -msgstr "" - -#. module: scrum -#: selection:scrum.task,state:0 -msgid "In Progress" -msgstr "" - -#. module: scrum -#: field:scrum.sprint,review:0 -msgid "Sprint Review" -msgstr "" - -#. module: scrum -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: scrum -#: field:scrum.task,remaining_hours:0 -msgid "Remaining Hours" -msgstr "" - -#. module: scrum -#: field:scrum.task,parent_id:0 -msgid "Parent Task" -msgstr "" - -#. module: scrum -#: field:scrum.product.backlog,name:0 -msgid "Feature" -msgstr "" - -#. module: scrum -#: selection:scrum.product.backlog,priority:0 -#: selection:scrum.task,priority:0 -msgid "Very Low" -msgstr "" - -#. module: scrum -#: help:scrum.project,timesheet_id:0 -msgid "Timetable working hours to adjust the gantt diagram report" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_sprint_open_tree3 -#: model:ir.ui.menu,name:scrum.menu_action_sprint_open_tree3 -msgid "Sprints Done" -msgstr "" - -#. module: scrum -#: model:process.transition,name:scrum.process_transition_backlogtask0 -msgid "Backlog Task" -msgstr "" - -#. module: scrum -#: view:scrum.product.backlog:0 -#: view:scrum.project:0 -#: view:scrum.sprint:0 -msgid "Planned hours" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_scrum_project_form -#: model:ir.ui.menu,name:scrum.menu_action_scrum_project_form -msgid "Edit Projects" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_meeting_form -#: model:ir.model,name:scrum.model_scrum_meeting -#: model:ir.ui.menu,name:scrum.menu_action_meeting_form -#: view:scrum.meeting:0 -msgid "Scrum Meeting" -msgstr "" - -#. module: scrum -#: field:scrum.task,description:0 -msgid "Description" -msgstr "" - -#. module: scrum -#: selection:scrum.product.backlog,priority:0 -#: selection:scrum.task,priority:0 -msgid "Urgent" -msgstr "" - -#. module: scrum -#: view:scrum.sprint:0 -msgid "Daily Meetings" -msgstr "" - -#. module: scrum -#: view:scrum.meeting:0 -msgid "What are you working on today ?" -msgstr "" - -#. module: scrum -#: selection:scrum.project,state:0 -msgid "Running" -msgstr "" - -#. module: scrum -#: field:scrum.product.backlog,progress:0 -#: field:scrum.sprint,progress:0 -msgid "Progress (0-100)" -msgstr "" - -#. module: scrum -#: model:ir.model,name:scrum.model_scrum_team -msgid "Scrum Team" -msgstr "" - -#. module: scrum -#: model:ir.model,name:scrum.model_scrum_project -#: field:scrum.product.backlog,project_id:0 -msgid "Scrum Project" -msgstr "" - -#. module: scrum -#: field:scrum.project,parent_id:0 -msgid "Parent project" -msgstr "" - -#. module: scrum -#: view:scrum.sprint:0 -msgid "Sprint Info" -msgstr "" - -#. module: scrum -#: field:scrum.sprint,scrum_master_id:0 -msgid "Scrum Master" -msgstr "" - -#. module: scrum -#: field:scrum.product.backlog,tasks_id:0 -msgid "Tasks Details" -msgstr "" - -#. module: scrum -#: field:scrum.task,effective_hours:0 -msgid "Hours Spent" -msgstr "" - -#. module: scrum -#: field:scrum.task,context_id:0 -msgid "Context" -msgstr "" - -#. module: scrum -#: field:scrum.task,total_hours:0 -msgid "Total Hours" -msgstr "" - -#. module: scrum -#: field:scrum.team,users_id:0 -msgid "Users" -msgstr "" - -#. module: scrum -#: field:scrum.product.backlog,sequence:0 -#: field:scrum.project,priority:0 -#: field:scrum.task,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: scrum -#: help:scrum.project,warn_footer:0 -msgid "Footer added at the beginning of the email for the warning message sent to the customer when a task is closed." -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_product_backlog_form_open -#: model:ir.ui.menu,name:scrum.menu_action_product_backlog_form_open -msgid "Opened Backlogs" -msgstr "" - -#. module: scrum -#: model:ir.actions.wizard,name:scrum.wizard_scrum_backlog_task -msgid "Created tasks" -msgstr "" - -#. module: scrum -#: constraint:scrum.project:0 -msgid "Error ! You can not create recursive projects." -msgstr "" - -#. module: scrum -#: wizard_field:scrum.product.backlog.task.create,init,user_id:0 -msgid "Assign To" -msgstr "" - -#. module: scrum -#: model:ir.actions.act_window,name:scrum.action_sprint_form -#: model:ir.ui.menu,name:scrum.menu_action_sprint_form -#: field:scrum.meeting,sprint_id:0 -#: field:scrum.product.backlog,sprint_id:0 -msgid "Sprint" -msgstr "" - -#. module: scrum -#: field:scrum.project,date_end:0 -msgid "Expected End" -msgstr "" - -#. module: scrum -#: field:scrum.project,warn_footer:0 -msgid "Mail Footer" -msgstr "" - diff --git a/addons/stock/i18n/tlh_TLH.po b/addons/stock/i18n/tlh_TLH.po deleted file mode 100644 index 3a4bbebfcaa..00000000000 --- a/addons/stock/i18n/tlh_TLH.po +++ /dev/null @@ -1,2489 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * stock -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Futur Stock" -msgstr "" - -#. module: stock -#: selection:stock.location,allocation_method:0 -msgid "LIFO" -msgstr "" - -#. module: stock -#: field:stock.location,chained_location_id:0 -msgid "Chained Location If Fixed" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_SAVE" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_15 -msgid "Sub Products" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-account" -msgstr "" - -#. module: stock -#: model:ir.module.module,shortdesc:stock.module_meta_information -#: model:ir.ui.menu,name:stock.menu_stock_root -msgid "Stock Management" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_SORT_ASCENDING" -msgstr "" - -#. module: stock -#: field:stock.production.lot.revision,indice:0 -msgid "Revision" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_MEDIA_FORWARD" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_ZOOM_100" -msgstr "" - -#. module: stock -#: xsl:stock.location.overview:0 -#: xsl:stock.location.overview.all:0 -msgid "UoM" -msgstr "" - -#. module: stock -#: model:ir.actions.wizard,name:stock.return_picking -msgid "Return packing" -msgstr "" - -#. module: stock -#: field:product.category,property_stock_journal:0 -msgid "Stock journal" -msgstr "" - -#. module: stock -#: wizard_view:stock.fill_inventory,init:0 -msgid "Fill Inventory for specific location" -msgstr "" - -#. module: stock -#: model:ir.actions.report.xml,name:stock.report_picking_list -#: view:stock.picking:0 -#: field:stock.picking.move.wizard,picking_id:0 -msgid "Packing list" -msgstr "" - -#. module: stock -#: code:addons/stock/report_stock.py:0 -#, python-format -msgid "You cannot delete any record!" -msgstr "" - -#. module: stock -#: xsl:stock.location.overview:0 -#: xsl:stock.location.overview.all:0 -msgid "Amount" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Products Received" -msgstr "" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Futur Productions" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_tree4 -#: model:ir.ui.menu,name:stock.menu_action_picking_tree4 -msgid "Incoming Products" -msgstr "" - -#. module: stock -#: field:stock.picking,name:0 -#: field:stock.tracking,serial:0 -msgid "Reference" -msgstr "" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Futur Receptions" -msgstr "" - -#. module: stock -#: wizard_field:stock.invoice_onshipping,init,group:0 -msgid "Group by partner" -msgstr "" - -#. module: stock -#: field:stock.picking,address_id:0 -msgid "Partner" -msgstr "" - -#. module: stock -#: help:product.product,track_incoming:0 -msgid "Force to use a Production Lot during receptions" -msgstr "" - -#. module: stock -#: field:stock.move,move_history_ids:0 -#: field:stock.move,move_history_ids2:0 -msgid "Move History" -msgstr "" - -#. module: stock -#: model:ir.model,name:stock.model_stock_production_lot -#: field:stock.production.lot.revision,lot_id:0 -#: field:stock.report.prodlots,prodlot_id:0 -msgid "Production lot" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_NEW" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_CANCEL" -msgstr "" - -#. module: stock -#: selection:stock.location,usage:0 -msgid "Internal Location" -msgstr "" - -#. module: stock -#: view:stock.inventory:0 -msgid "Confirm Inventory" -msgstr "" - -#. module: stock -#: rml:stock.picking.list:0 -msgid "State" -msgstr "" - -#. module: stock -#: field:stock.location,stock_real_value:0 -msgid "Real Stock Value" -msgstr "" - -#. module: stock -#: view:stock.move:0 -msgid "UOM" -msgstr "" - -#. module: stock -#: selection:stock.move,state:0 -#: selection:stock.picking,state:0 -#: field:stock.production.lot,stock_available:0 -msgid "Available" -msgstr "" - -#. module: stock -#: view:stock.move:0 -msgid "Make Parcel" -msgstr "" - -#. module: stock -#: wizard_view:stock.partial_picking,end2:0 -msgid "Packing result" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_QUIT" -msgstr "" - -#. module: stock -#: field:stock.warehouse,lot_output_id:0 -msgid "Location Output" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_TOP" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_ABOUT" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-hr" -msgstr "" - -#. module: stock -#: field:stock.location,usage:0 -msgid "Location Type" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-purchase" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_DND" -msgstr "" - -#. module: stock -#: rml:stock.picking.list:0 -msgid "[" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Products Sent" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_tree6 -#: model:ir.ui.menu,name:stock.menu_action_picking_tree6 -msgid "Internal Moves" -msgstr "" - -#. module: stock -#: field:stock.move,product_packaging:0 -msgid "Packaging" -msgstr "" - -#. module: stock -#: rml:stock.picking.list:0 -msgid "Order(Origin)" -msgstr "" - -#. module: stock -#: field:stock.production.lot,name:0 -msgid "Serial" -msgstr "" - -#. module: stock -#: view:stock.location:0 -#: field:stock.location,comment:0 -msgid "Additional Information" -msgstr "" - -#. module: stock -#: selection:stock.invoice_onshipping,init,type:0 -msgid "Customer Refund" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_FLOPPY" -msgstr "" - -#. module: stock -#: view:stock.production.lot.revision:0 -msgid "Production Lot Revisions" -msgstr "" - -#. module: stock -#: view:stock.location:0 -msgid "Stock location" -msgstr "" - -#. module: stock -#: field:stock.location,complete_name:0 -#: field:stock.location,name:0 -msgid "Location Name" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_UNINDENT" -msgstr "" - -#. module: stock -#: view:stock.move:0 -#: view:stock.picking:0 -msgid "Move Information" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Unreceived Products" -msgstr "" - -#. module: stock -#: field:stock.inventory,state:0 -#: field:stock.move,state:0 -#: field:stock.picking,state:0 -msgid "Status" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_customers -msgid "Customers" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_UNDERLINE" -msgstr "" - -#. module: stock -#: view:stock.picking.move.wizard:0 -msgid "Move Lines" -msgstr "" - -#. module: stock -#: wizard_field:stock.fill_inventory,init,recursive:0 -msgid "Include all childs for the location" -msgstr "" - -#. module: stock -#: field:product.template,property_stock_procurement:0 -msgid "Procurement Location" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_production_lot_form -#: model:ir.ui.menu,name:stock.menu_action_production_lot_form -msgid "Production Lots" -msgstr "" - -#. module: stock -#: rml:stock.picking.list:0 -msgid "Recipient" -msgstr "" - -#. module: stock -#: model:ir.actions.wizard,name:stock.track_line -msgid "Track line" -msgstr "" - -#. module: stock -#: field:stock.location,child_ids:0 -msgid "Contains" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_BOLD" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-graph" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_PREFERENCES" -msgstr "" - -#. module: stock -#: rml:lot.location:0 -#: field:stock.inventory.line,product_qty:0 -#: field:stock.move,product_qty:0 -#: field:stock.report.prodlots,name:0 -msgid "Quantity" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Process Now" -msgstr "" - -#. module: stock -#: field:stock.location,address_id:0 -msgid "Location Address" -msgstr "" - -#. module: stock -#: help:stock.move,prodlot_id:0 -msgid "Production lot is used to put a serial number on the production" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_13 -msgid "Stock Level 1" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_MEDIA_REWIND" -msgstr "" - -#. module: stock -#: field:stock.warehouse,lot_input_id:0 -msgid "Location Input" -msgstr "" - -#. module: stock -#: view:res.partner:0 -msgid "Stock Properties" -msgstr "" - -#. module: stock -#: wizard_button:stock.partial_picking,init,split:0 -msgid "Make Picking" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.location_procurement -msgid "Procurements" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_3 -msgid "IT Suppliers" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_move_form3 -#: model:ir.ui.menu,name:stock.menu_action_move_form3 -msgid "Draft Moves" -msgstr "" - -#. module: stock -#: field:report.stock.lines.date,product_id:0 -msgid "Product Id" -msgstr "" - -#. module: stock -#: view:res.partner:0 -msgid "Sales & Purchases" -msgstr "" - -#. module: stock -#: selection:stock.invoice_onshipping,init,type:0 -msgid "Customer Invoice" -msgstr "" - -#. module: stock -#: field:product.template,property_stock_inventory:0 -msgid "Inventory Location" -msgstr "" - -#. module: stock -#: help:product.product,track_production:0 -msgid "Force to use a Production Lot during production order" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_CUT" -msgstr "" - -#. module: stock -#: help:product.template,property_stock_inventory:0 -msgid "For the current product (template), this stock location will be used, instead of the default one, as the source location for stock moves generated when you do an inventory" -msgstr "" - -#. module: stock -#: field:stock.move,date_planned:0 -msgid "Scheduled Date" -msgstr "" - -#. module: stock -#: help:product.category,property_stock_account_output_categ:0 -msgid "This account will be used to value the output stock" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_ZOOM_FIT" -msgstr "" - -#. module: stock -#: help:product.category,property_stock_journal:0 -msgid "This journal will be used for the accounting move generated by stock move" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_calendar_delivery -#: model:ir.ui.menu,name:stock.menu_picking_calendar_delivery -msgid "Calendar of Deliveries" -msgstr "" - -#. module: stock -#: field:product.product,track_incoming:0 -msgid "Track Incomming Lots" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.act_stock_product_location_open -msgid "Stock by Location" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_SAVE_AS" -msgstr "" - -#. module: stock -#: model:ir.model,name:stock.model_stock_report_prodlots -msgid "Stock report by production lots" -msgstr "" - -#. module: stock -#: field:stock.location,stock_virtual:0 -msgid "Virtual Stock" -msgstr "" - -#. module: stock -#: selection:stock.location,usage:0 -msgid "View" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_DIALOG_ERROR" -msgstr "" - -#. module: stock -#: field:stock.location,parent_left:0 -msgid "Left Parent" -msgstr "" - -#. module: stock -#: field:report.stock.lines.date,create_date:0 -msgid "Latest Date of Inventory" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_INDEX" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_BOTTOM" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_form -#: model:ir.ui.menu,name:stock.menu_action_picking_form -msgid "New Reception Packing" -msgstr "" - -#. module: stock -#: wizard_field:stock.move.track,init,quantity:0 -msgid "Quantity per lot" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_move_form2 -#: model:ir.ui.menu,name:stock.menu_action_move_form2 -#: view:stock.move:0 -#: view:stock.picking:0 -msgid "Stock Moves" -msgstr "" - -#. module: stock -#: field:product.template,property_stock_production:0 -msgid "Production Location" -msgstr "" - -#. module: stock -#: field:stock.move,tracking_id:0 -msgid "Tracking Lot" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GO_FORWARD" -msgstr "" - -#. module: stock -#: field:stock.production.lot.revision,author_id:0 -msgid "Author" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_UNDELETE" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_EXECUTE" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_DIALOG_QUESTION" -msgstr "" - -#. module: stock -#: selection:stock.location,chained_auto_packing:0 -msgid "Manual Operation" -msgstr "" - -#. module: stock -#: field:stock.picking,date_done:0 -msgid "Date Done" -msgstr "" - -#. module: stock -#: rml:stock.picking.list:0 -msgid "Expected Shipping Date" -msgstr "" - -#. module: stock -#: view:stock.tracking:0 -msgid "Tracking/Serial" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_SELECT_FONT" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_PASTE" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_locations_partner -msgid "Partner Locations" -msgstr "" - -#. module: stock -#: help:stock.move,tracking_id:0 -msgid "Tracking lot is the code that will be put on the logistical unit/pallet" -msgstr "" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Futur Deliveries" -msgstr "" - -#. module: stock -#: view:stock.tracking:0 -msgid "Tracking Number" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_7 -msgid "European Customers" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-stock" -msgstr "" - -#. module: stock -#: rml:stock.picking.list:0 -msgid "Packing List:" -msgstr "" - -#. module: stock -#: code:addons/stock/stock.py:0 -#, python-format -msgid "UserError" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_MEDIA_RECORD" -msgstr "" - -#. module: stock -#: code:addons/stock/stock.py:0 -#, python-format -msgid "You can only delete draft moves." -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Calendar View" -msgstr "" - -#. module: stock -#: wizard_field:stock.location.products,init,from_date:0 -msgid "From" -msgstr "" - -#. module: stock -#: rml:stock.picking.list:0 -msgid "Non Assigned Products:" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Invoice Control" -msgstr "" - -#. module: stock -#: model:ir.model,name:stock.model_stock_production_lot_revision -msgid "Production lot revisions" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Packing Done" -msgstr "" - -#. module: stock -#: selection:stock.move,state:0 -#: selection:stock.picking,state:0 -msgid "Waiting" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_tree2 -#: model:ir.actions.act_window,name:stock.action_picking_tree7 -#: model:ir.ui.menu,name:stock.menu_action_picking_tree7 -#: model:ir.ui.menu,name:stock.menu_picking_waiting -msgid "Available Packing" -msgstr "" - -#. module: stock -#: model:ir.model,name:stock.model_stock_warehouse -#: view:stock.warehouse:0 -msgid "Warehouse" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-report" -msgstr "" - -#. module: stock -#: wizard_field:stock.invoice_onshipping,init,type:0 -msgid "Type" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_5 -msgid "Generic IT Suppliers" -msgstr "" - -#. module: stock -#: model:ir.actions.report.xml,name:stock.report_location_overview_all -msgid "Location Content (With children)" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_FILE" -msgstr "" - -#. module: stock -#: field:report.stock.lines.date,id:0 -msgid "Inventory Line Id" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_EDIT" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_CONNECT" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_all -#: model:ir.ui.menu,name:stock.menu_action_picking_all -#: wizard_field:stock.picking.make,init,pickings:0 -msgid "Packing" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GO_DOWN" -msgstr "" - -#. module: stock -#: field:res.partner,property_stock_customer:0 -#: selection:stock.location,usage:0 -msgid "Customer Location" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_OK" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_tree9 -#: model:ir.ui.menu,name:stock.menu_action_picking_tree9 -msgid "New Internal Packing" -msgstr "" - -#. module: stock -#: view:stock.inventory:0 -msgid "General Informations" -msgstr "" - -#. module: stock -#: code:addons/stock/wizard/wizard_return.py:0 -#: selection:stock.location,chained_location_type:0 -#, python-format -msgid "None" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action3 -#: model:ir.actions.wizard,name:stock.action2 -#: model:ir.actions.wizard,name:stock.action_lot4 -msgid "Downstream traceability" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_14 -msgid "Finished products" -msgstr "" - -#. module: stock -#: field:stock.location,location_id:0 -msgid "Parent Location" -msgstr "" - -#. module: stock -#: field:stock.inventory,date:0 -msgid "Date create" -msgstr "" - -#. module: stock -#: wizard_button:inventory.merge.stock.zero,init,merge:0 -msgid "Set to Zero" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.act_product_stock_move_open -msgid "All Stock Moves" -msgstr "" - -#. module: stock -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: stock -#: field:res.partner,property_stock_supplier:0 -#: selection:stock.location,usage:0 -msgid "Supplier Location" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_HELP" -msgstr "" - -#. module: stock -#: selection:stock.move,priority:0 -msgid "Urgent" -msgstr "" - -#. module: stock -#: help:product.category,property_stock_account_input_categ:0 -msgid "This account will be used to value the input stock" -msgstr "" - -#. module: stock -#: code:addons/stock/wizard/wizard_return.py:0 -#, python-format -msgid "Invoice state" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_DIALOG_INFO" -msgstr "" - -#. module: stock -#: field:stock.move,date:0 -#: field:stock.tracking,date:0 -msgid "Date Created" -msgstr "" - -#. module: stock -#: selection:stock.picking,type:0 -msgid "Sending Goods" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Cancel Availability" -msgstr "" - -#. module: stock -#: field:stock.inventory,move_ids:0 -msgid "Created Moves" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GO_BACK" -msgstr "" - -#. module: stock -#: selection:stock.picking,invoice_state:0 -msgid "To Be Invoiced" -msgstr "" - -#. module: stock -#: view:product.product:0 -#: view:product.template:0 -msgid "Counter-Part Locations Properties" -msgstr "" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Delivered Qty" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_JUSTIFY_FILL" -msgstr "" - -#. module: stock -#: view:stock.move:0 -msgid "Date" -msgstr "" - -#. module: stock -#: view:product.product:0 -msgid "Stocks" -msgstr "" - -#. module: stock -#: field:stock.location,allocation_method:0 -msgid "Allocation Method" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-administration" -msgstr "" - -#. module: stock -#: field:stock.warehouse,lot_stock_id:0 -msgid "Location Stock" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_APPLY" -msgstr "" - -#. module: stock -#: code:addons/stock/wizard/inventory_merge.py:0 -#, python-format -msgid "Merging is only allowed on draft inventories." -msgstr "" - -#. module: stock -#: code:addons/stock/wizard/inventory_merge.py:0 -#, python-format -msgid "Please select at least two inventories." -msgstr "" - -#. module: stock -#: wizard_view:stock.partial_picking,end2:0 -msgid "The packing has been successfully made !" -msgstr "" - -#. module: stock -#: field:stock.move,address_id:0 -#: field:stock.picking.move.wizard,address_id:0 -msgid "Dest. Address" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_inventory_form -#: model:ir.ui.menu,name:stock.menu_action_inventory_form -msgid "Periodical Inventory" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-crm" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_STRIKETHROUGH" -msgstr "" - -#. module: stock -#: field:stock.incoterms,code:0 -#: xsl:stock.location.overview.all:0 -msgid "Code" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-partner" -msgstr "" - -#. module: stock -#: rml:stock.picking.list:0 -msgid "Qty" -msgstr "" - -#. module: stock -#: code:addons/stock/stock.py:0 -#, python-format -msgid "You can not remove a lot line !" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_inventory_form_draft -#: model:ir.ui.menu,name:stock.menu_action_inventory_form_draft -msgid "Draft Periodical Inventories" -msgstr "" - -#. module: stock -#: wizard_button:inventory.merge,init,end:0 -#: wizard_button:inventory.merge.stock.zero,init,end:0 -#: wizard_button:stock.fill_inventory,init,end:0 -#: wizard_button:stock.invoice_onshipping,init,end:0 -#: wizard_button:stock.location.products,init,end:0 -#: view:stock.move:0 -#: wizard_button:stock.move.split,init,end:0 -#: wizard_button:stock.move.track,init,end:0 -#: wizard_button:stock.partial_picking,init,end:0 -#: view:stock.picking:0 -#: selection:stock.picking,state:0 -#: wizard_button:stock.picking.make,init,end:0 -#: view:stock.picking.move.wizard:0 -#: wizard_button:stock.return.picking,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: stock -#: view:stock.move:0 -#: view:stock.picking:0 -msgid "Split in production lots" -msgstr "" - -#. module: stock -#: model:ir.model,name:stock.model_stock_inventory -#: field:stock.inventory,name:0 -#: field:stock.inventory.line,inventory_id:0 -#: selection:stock.location,usage:0 -msgid "Inventory" -msgstr "" - -#. module: stock -#: view:product.template:0 -msgid "Information" -msgstr "" - -#. module: stock -#: code:addons/stock/wizard/wizard_return.py:0 -#, python-format -msgid "Provide the quantities of the returned products." -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_MISSING_IMAGE" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_SPELL_CHECK" -msgstr "" - -#. module: stock -#: model:ir.model,name:stock.model_stock_tracking -msgid "Stock Tracking Lots" -msgstr "" - -#. module: stock -#: xsl:stock.location.overview:0 -#: xsl:stock.location.overview.all:0 -#: field:stock.move,price_unit:0 -msgid "Unit Price" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Process Later" -msgstr "" - -#. module: stock -#: help:res.partner,property_stock_supplier:0 -msgid "This stock location will be used, instead of the default one, as the source location for goods you receive from the current partner" -msgstr "" - -#. module: stock -#: field:stock.warehouse,partner_address_id:0 -msgid "Owner Address" -msgstr "" - -#. module: stock -#: field:stock.location,parent_right:0 -msgid "Right Parent" -msgstr "" - -#. module: stock -#: field:stock.picking,origin:0 -msgid "Origin Reference" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_move_form4 -#: model:ir.ui.menu,name:stock.menu_action_move_form4 -msgid "Available Moves" -msgstr "" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Received Qty" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_HARDDISK" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.act_relate_picking -msgid "Related Picking" -msgstr "" - -#. module: stock -#: field:stock.incoterms,name:0 -#: field:stock.move,name:0 -#: field:stock.picking.move.wizard,name:0 -#: field:stock.warehouse,name:0 -msgid "Name" -msgstr "" - -#. module: stock -#: view:stock.inventory.line:0 -msgid "Stock Inventory Lines" -msgstr "" - -#. module: stock -#: wizard_button:stock.location.products,init,open:0 -msgid "Open Products" -msgstr "" - -#. module: stock -#: rml:stock.picking.list:0 -msgid "]" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Input Packing List" -msgstr "" - -#. module: stock -#: model:ir.model,name:stock.model_stock_picking -#: field:stock.move,picking_id:0 -msgid "Packing List" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_COPY" -msgstr "" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Futur Qty" -msgstr "" - -#. module: stock -#: selection:stock.invoice_onshipping,init,type:0 -msgid "Supplier Refund" -msgstr "" - -#. module: stock -#: model:ir.model,name:stock.model_stock_move -msgid "Stock Move" -msgstr "" - -#. module: stock -#: field:product.category,property_stock_account_output_categ:0 -#: field:product.template,property_stock_account_output:0 -msgid "Stock Output Account" -msgstr "" - -#. module: stock -#: selection:stock.location,chained_auto_packing:0 -msgid "Automatic No Step Added" -msgstr "" - -#. module: stock -#: wizard_view:stock.location.products,init:0 -msgid "Stock Location Analysis" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_CDROM" -msgstr "" - -#. module: stock -#: code:addons/stock/stock.py:0 -#, python-format -msgid "Error" -msgstr "" - -#. module: stock -#: selection:stock.picking,invoice_state:0 -msgid "Not from Packing" -msgstr "" - -#. module: stock -#: view:stock.location:0 -msgid "Chained Locations" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.location_inventory -msgid "Inventory loss" -msgstr "" - -#. module: stock -#: field:stock.production.lot,ref:0 -msgid "Internal Ref" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_REFRESH" -msgstr "" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Products: " -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_STOP" -msgstr "" - -#. module: stock -#: wizard_view:stock.move.track,init:0 -msgid "Tracking a move" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_FIND_AND_REPLACE" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Validate" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_DIALOG_WARNING" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_ZOOM_IN" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_CONVERT" -msgstr "" - -#. module: stock -#: field:stock.move,note:0 -#: view:stock.picking:0 -#: field:stock.picking,note:0 -msgid "Notes" -msgstr "" - -#. module: stock -#: field:stock.picking,move_lines:0 -#: field:stock.picking.move.wizard,move_ids:0 -msgid "Move lines" -msgstr "" - -#. module: stock -#: xsl:stock.location.overview:0 -#: xsl:stock.location.overview.all:0 -msgid "Value" -msgstr "" - -#. module: stock -#: field:stock.picking,type:0 -msgid "Shipping Type" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.act_product_location_open -msgid "Products" -msgstr "" - -#. module: stock -#: field:stock.picking,move_type:0 -msgid "Delivery Method" -msgstr "" - -#. module: stock -#: model:ir.actions.wizard,name:stock.partial_picking -msgid "Partial packing" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-calendar" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_ITALIC" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_YES" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.act_stock_picking_move_wizard -msgid "Fill From Unreceived Products" -msgstr "" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "P&L Qty" -msgstr "" - -#. module: stock -#: field:stock.move,move_dest_id:0 -msgid "Dest. Move" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_inventory_form_new -#: model:ir.ui.menu,name:stock.menu_action_inventory_form_new -msgid "New Periodical Inventory" -msgstr "" - -#. module: stock -#: field:stock.production.lot,revisions:0 -msgid "Revisions" -msgstr "" - -#. module: stock -#: selection:stock.location,allocation_method:0 -msgid "FIFO" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_tree2_delivery -#: model:ir.ui.menu,name:stock.menu_picking_waiting_delivery -msgid "Delivery Orders to Process" -msgstr "" - -#. module: stock -#: field:stock.move,priority:0 -msgid "Priority" -msgstr "" - -#. module: stock -#: wizard_field:inventory.merge.stock.zero,init,location_id:0 -#: model:ir.model,name:stock.model_stock_location -#: rml:lot.location:0 -#: wizard_field:stock.fill_inventory,init,location_id:0 -#: field:stock.inventory.line,location_id:0 -#: field:stock.picking,location_id:0 -#: rml:stock.picking.list:0 -#: field:stock.report.prodlots,location_id:0 -msgid "Location" -msgstr "" - -#. module: stock -#: field:stock.picking,invoice_state:0 -msgid "Invoice Status" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_JUSTIFY_LEFT" -msgstr "" - -#. module: stock -#: view:stock.inventory:0 -msgid "Cancel Inventory" -msgstr "" - -#. module: stock -#: model:ir.actions.report.xml,name:stock.report_product_history -msgid "Future Stock Forecast" -msgstr "" - -#. module: stock -#: code:addons/stock/report_stock.py:0 -#, python-format -msgid "Error !" -msgstr "" - -#. module: stock -#: model:ir.module.module,description:stock.module_meta_information -msgid "OpenERP Stock Management module can manage multi-warehouses, multi and structured stock locations.\n" -"Thanks to the double entry management, the inventory controlling is powerful and flexible:\n" -"* Moves history and planning,\n" -"* Different inventory methods (FIFO, LIFO, ...)\n" -"* Stock valuation (standard or average price, ...)\n" -"* Robustness faced with Inventory differences\n" -"* Automatic reordering rules (stock level, JIT, ...)\n" -"* Bar code supported\n" -"* Rapid detection of mistakes through double entry system\n" -"* Traceability (upstream/downstream, production lots, serial number, ...)\n" -" " -msgstr "" - -#. module: stock -#: selection:stock.location,chained_location_type:0 -msgid "Fixed Location" -msgstr "" - -#. module: stock -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: stock -#: field:stock.picking,min_date:0 -msgid "Planned Date" -msgstr "" - -#. module: stock -#: code:addons/stock/wizard/wizard_track_line.py:0 -#, python-format -msgid "No production sequence defined" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_tree -#: model:ir.ui.menu,name:stock.menu_action_picking_tree -msgid "Outgoing Products" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_COLOR_PICKER" -msgstr "" - -#. module: stock -#: model:ir.actions.report.xml,name:stock.report_lot_location -msgid "Lots by location" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_DELETE" -msgstr "" - -#. module: stock -#: model:account.journal,name:stock.stock_journal -msgid "Stock Journal" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_CLEAR" -msgstr "" - -#. module: stock -#: field:stock.production.lot,date:0 -msgid "Created Date" -msgstr "" - -#. module: stock -#: selection:stock.location,usage:0 -msgid "Procurement" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_4 -msgid "Maxtor Suppliers" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Force Availability" -msgstr "" - -#. module: stock -#: wizard_view:stock.location.products,init:0 -msgid "View Stock of Products" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-mrp" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_tree3_delivery -#: model:ir.ui.menu,name:stock.menu_action_picking_tree3_delivery -msgid "Future Delivery Orders" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GO_UP" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_SORT_DESCENDING" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_tracking_form -#: model:ir.ui.menu,name:stock.menu_action_tracking_form -msgid "Tracking Lots" -msgstr "" - -#. module: stock -#: wizard_button:inventory.merge,init,merge:0 -msgid "Yes" -msgstr "" - -#. module: stock -#: field:stock.inventory,inventory_line_id:0 -msgid "Inventories" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_HOME" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_PROPERTIES" -msgstr "" - -#. module: stock -#: field:stock.location,stock_real:0 -msgid "Real Stock" -msgstr "" - -#. module: stock -#: model:ir.actions.wizard,name:stock.wizard_fill_inventory -#: wizard_view:stock.fill_inventory,init:0 -#: wizard_button:stock.fill_inventory,init,fill_inventory:0 -msgid "Fill Inventory" -msgstr "" - -#. module: stock -#: wizard_view:stock.invoice_onshipping,init:0 -msgid "Create invoices" -msgstr "" - -#. module: stock -#: field:stock.production.lot.revision,date:0 -msgid "Revision Date" -msgstr "" - -#. module: stock -#: rml:stock.picking.list:0 -msgid "Lot" -msgstr "" - -#. module: stock -#: wizard_view:inventory.merge.stock.zero,init:0 -msgid "Set Stock to Zero" -msgstr "" - -#. module: stock -#: field:stock.move,product_uos_qty:0 -msgid "Quantity (UOS)" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_tree5 -#: model:ir.ui.menu,name:stock.menu_action_picking_tree5 -msgid "Packing to Process" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_MEDIA_STOP" -msgstr "" - -#. module: stock -#: view:stock.move:0 -msgid "Set Available" -msgstr "" - -#. module: stock -#: model:ir.actions.wizard,name:stock.make_picking -#: wizard_view:stock.picking.make,init:0 -msgid "Make packing" -msgstr "" - -#. module: stock -#: field:stock.picking,backorder_id:0 -msgid "Back Order" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_DND_MULTIPLE" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_REMOVE" -msgstr "" - -#. module: stock -#: field:stock.incoterms,active:0 -#: field:stock.location,active:0 -#: field:stock.picking,active:0 -#: field:stock.tracking,active:0 -msgid "Active" -msgstr "" - -#. module: stock -#: view:product.template:0 -msgid "Properties" -msgstr "" - -#. module: stock -#: code:addons/stock/stock.py:0 -#, python-format -msgid "Error, no partner !" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_incoterms_tree -#: model:ir.model,name:stock.model_stock_incoterms -#: model:ir.ui.menu,name:stock.menu_action_incoterms_tree -#: view:stock.incoterms:0 -msgid "Incoterms" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_ZOOM_OUT" -msgstr "" - -#. module: stock -#: wizard_field:stock.move.track,init,tracking_prefix:0 -msgid "Tracking prefix" -msgstr "" - -#. module: stock -#: selection:stock.location,allocation_method:0 -msgid "Nearest" -msgstr "" - -#. module: stock -#: wizard_field:stock.location.products,init,to_date:0 -msgid "To" -msgstr "" - -#. module: stock -#: field:stock.production.lot.revision,name:0 -msgid "Revision Name" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_SELECT_COLOR" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_PRINT" -msgstr "" - -#. module: stock -#: view:product.category:0 -msgid "Accounting Stock Properties" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_NO" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_workshop -msgid "Workshop" -msgstr "" - -#. module: stock -#: selection:stock.inventory,state:0 -#: selection:stock.move,state:0 -#: selection:stock.picking,state:0 -msgid "Done" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_locations_virtual -msgid "Virtual Locations" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_company -msgid "Tiny sprl" -msgstr "" - -#. module: stock -#: field:stock.inventory,date_done:0 -msgid "Date done" -msgstr "" - -#. module: stock -#: code:addons/stock/stock.py:0 -#, python-format -msgid "Please put a partner on the picking list if you want to generate invoice." -msgstr "" - -#. module: stock -#: selection:stock.move,priority:0 -msgid "Not urgent" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_CLOSE" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_warehouse_form -#: model:ir.ui.menu,name:stock.menu_action_warehouse_form -msgid "Warehouses" -msgstr "" - -#. module: stock -#: help:product.product,track_outgoing:0 -msgid "Force to use a Production Lot during deliveries" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Split move lines in two" -msgstr "" - -#. module: stock -#: wizard_field:stock.invoice_onshipping,init,journal_id:0 -msgid "Destination Journal" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.act_stock_production_lot_2_stock_report_prodlots -#: model:stock.location,name:stock.stock_location_stock -msgid "Stock" -msgstr "" - -#. module: stock -#: rml:lot.location:0 -#: field:stock.inventory.line,product_id:0 -#: xsl:stock.location.overview:0 -#: xsl:stock.location.overview.all:0 -#: field:stock.move,product_id:0 -#: field:stock.production.lot,product_id:0 -#: field:stock.report.prodlots,product_id:0 -msgid "Product" -msgstr "" - -#. module: stock -#: wizard_button:stock.return.picking,init,return:0 -msgid "Return" -msgstr "" - -#. module: stock -#: field:stock.picking,auto_picking:0 -msgid "Auto-Packing" -msgstr "" - -#. module: stock -#: field:stock.move,product_uos:0 -msgid "Product UOS" -msgstr "" - -#. module: stock -#: field:stock.location,posz:0 -msgid "Height (Z)" -msgstr "" - -#. module: stock -#: field:stock.inventory.line,product_uom:0 -#: field:stock.move,product_uom:0 -msgid "Product UOM" -msgstr "" - -#. module: stock -#: xsl:stock.location.overview:0 -#: xsl:stock.location.overview.all:0 -msgid "Variants" -msgstr "" - -#. module: stock -#: field:stock.location,posx:0 -msgid "Corridor (X)" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_suppliers -msgid "Suppliers" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_JUMP_TO" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-tools" -msgstr "" - -#. module: stock -#: model:ir.actions.report.xml,name:stock.report_location_overview -msgid "Location Overview" -msgstr "" - -#. module: stock -#: model:ir.actions.wizard,name:stock.location_product -msgid "Products by Location" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_UNDO" -msgstr "" - -#. module: stock -#: model:ir.actions.wizard,name:stock.move_split -msgid "Split move line" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-sale" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_ADD" -msgstr "" - -#. module: stock -#: field:stock.location,chained_delay:0 -msgid "Chained Delay (days)" -msgstr "" - -#. module: stock -#: field:stock.move,location_id:0 -msgid "Source Location" -msgstr "" - -#. module: stock -#: view:product.template:0 -msgid "Accounting Entries" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_MEDIA_PAUSE" -msgstr "" - -#. module: stock -#: view:product.product:0 -msgid "Lots" -msgstr "" - -#. module: stock -#: selection:stock.picking,move_type:0 -msgid "All at once" -msgstr "" - -#. module: stock -#: field:product.product,track_outgoing:0 -msgid "Track Outging Lots" -msgstr "" - -#. module: stock -#: code:addons/stock/wizard/wizard_return.py:0 -#, python-format -msgid "Return lines" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_stock_line_date -#: model:ir.model,name:stock.model_report_stock_lines_date -#: model:ir.ui.menu,name:stock.menu_report_stock_line_date -#: view:report.stock.lines.date:0 -msgid "Dates of Inventories" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_PRINT_PREVIEW" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_FIND" -msgstr "" - -#. module: stock -#: view:stock.inventory:0 -msgid "Lot Inventory" -msgstr "" - -#. module: stock -#: help:stock.location,chained_auto_packing:0 -msgid "This is used only if you selected a chained location type.\n" -"The 'Automatic Move' value will create a stock move after the current one that will be validated automatically. With 'Manual Operation', the stock move has to be validated by a worker. With 'Automatic No Step Added', the location is replaced in the original move." -msgstr "" - -#. module: stock -#: field:stock.location,icon:0 -msgid "Icon" -msgstr "" - -#. module: stock -#: field:stock.tracking,name:0 -msgid "Tracking" -msgstr "" - -#. module: stock -#: wizard_button:stock.move.track,init,track:0 -#: wizard_button:stock.picking.make,init,make:0 -msgid "Ok" -msgstr "" - -#. module: stock -#: help:product.template,property_stock_account_input:0 -msgid "This account will be used, instead of the default one, to value input stock" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_8 -msgid "Non European Customers" -msgstr "" - -#. module: stock -#: code:addons/stock/stock.py:0 -#: code:addons/stock/wizard/wizard_track_line.py:0 -#, python-format -msgid "Error!" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_components -msgid "Components" -msgstr "" - -#. module: stock -#: wizard_view:inventory.merge,init:0 -msgid "Do you want to merge theses inventories ?" -msgstr "" - -#. module: stock -#: field:stock.picking,max_date:0 -msgid "Max. Planned Date" -msgstr "" - -#. module: stock -#: view:stock.inventory:0 -msgid "Posted Inventory" -msgstr "" - -#. module: stock -#: selection:stock.picking,type:0 -msgid "Getting Goods" -msgstr "" - -#. module: stock -#: view:stock.location:0 -msgid "Stock Location" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_MEDIA_PLAY" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_tree_delivery -#: model:ir.ui.menu,name:stock.menu_action_picking_tree_delivery -msgid "Delivery Orders" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_OPEN" -msgstr "" - -#. module: stock -#: help:res.partner,property_stock_customer:0 -msgid "This stock location will be used, instead of the default one, as the destination location for goods you send to this partner" -msgstr "" - -#. module: stock -#: selection:stock.move,state:0 -#: selection:stock.picking,state:0 -msgid "Confirmed" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_MEDIA_PREVIOUS" -msgstr "" - -#. module: stock -#: view:stock.move:0 -msgid "Confirm" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Check Availability" -msgstr "" - -#. module: stock -#: wizard_view:inventory.merge,init:0 -#: model:ir.actions.wizard,name:stock.wizard_merge_inventory -msgid "Merge inventories" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_location_tree -#: model:ir.ui.menu,name:stock.menu_action_location_tree -msgid "Stock Locations Structure" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_DISCONNECT" -msgstr "" - -#. module: stock -#: help:product.template,property_stock_account_output:0 -msgid "This account will be used, instead of the default one, to value output stock" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Confirm (Do Not Process Now)" -msgstr "" - -#. module: stock -#: field:stock.tracking,move_ids:0 -msgid "Moves Tracked" -msgstr "" - -#. module: stock -#: model:ir.ui.menu,name:stock.next_id_61 -msgid "Reporting" -msgstr "" - -#. module: stock -#: model:ir.actions.wizard,name:stock.wizard_invoice_onshipping -#: wizard_button:stock.invoice_onshipping,init,create_invoice:0 -msgid "Create invoice" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_NETWORK" -msgstr "" - -#. module: stock -#: model:ir.ui.menu,name:stock.menu_stock_configuration -msgid "Configuration" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-project" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.act_product_product_2_stock_report_prodlots -#: model:ir.actions.act_window,name:stock.act_stock_location_2_stock_report_prodlots -#: model:ir.actions.act_window,name:stock.action_stock_report_prodlots_form -#: model:ir.ui.menu,name:stock.menu_stock_report_prodlots -#: view:stock.report.prodlots:0 -msgid "Stock by Lots" -msgstr "" - -#. module: stock -#: field:stock.move,auto_validate:0 -msgid "Auto Validate" -msgstr "" - -#. module: stock -#: field:stock.location,chained_auto_packing:0 -#: selection:stock.location,chained_auto_packing:0 -msgid "Automatic Move" -msgstr "" - -#. module: stock -#: field:stock.location,stock_virtual_value:0 -msgid "Virtual Stock Value" -msgstr "" - -#. module: stock -#: selection:stock.move,state:0 -msgid "Canceled" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_LAST" -msgstr "" - -#. module: stock -#: selection:stock.picking,invoice_state:0 -msgid "Invoiced" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_DIRECTORY" -msgstr "" - -#. module: stock -#: help:product.template,property_stock_production:0 -msgid "For the current product (template), this stock location will be used, instead of the default one, as the source location for stock moves generated by production orders" -msgstr "" - -#. module: stock -#: view:stock.picking.move.wizard:0 -msgid "Add" -msgstr "" - -#. module: stock -#: selection:stock.picking,type:0 -msgid "Internal" -msgstr "" - -#. module: stock -#: selection:stock.inventory,state:0 -#: selection:stock.move,state:0 -#: selection:stock.picking,state:0 -msgid "Draft" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_JUSTIFY_CENTER" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_picking_tree3 -#: model:ir.actions.act_window,name:stock.action_picking_tree8 -#: model:ir.ui.menu,name:stock.menu_action_picking_tree3 -#: model:ir.ui.menu,name:stock.menu_action_picking_tree8 -msgid "Confirmed Packing Waiting Availability" -msgstr "" - -#. module: stock -#: field:stock.location,posy:0 -msgid "Shelves (Y)" -msgstr "" - -#. module: stock -#: model:ir.actions.wizard,name:stock.wizard_merge_inventory_zero -msgid "Set Stock to 0" -msgstr "" - -#. module: stock -#: view:stock.location:0 -msgid "Localisation" -msgstr "" - -#. module: stock -#: wizard_view:inventory.merge.stock.zero,init:0 -msgid "Do you want to set stocks to zero ?" -msgstr "" - -#. module: stock -#: selection:stock.picking,move_type:0 -msgid "Direct Delivery" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_REVERT_TO_SAVED" -msgstr "" - -#. module: stock -#: field:product.product,track_production:0 -msgid "Track Production Lots" -msgstr "" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Unplanned Qty" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Split in Two" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.act_product_stock_move_futur_open -msgid "Future Stock Moves" -msgstr "" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Futur P&L" -msgstr "" - -#. module: stock -#: help:product.template,property_stock_procurement:0 -msgid "For the current product (template), this stock location will be used, instead of the default one, as the source location for stock moves generated by procurements" -msgstr "" - -#. module: stock -#: model:ir.model,name:stock.model_stock_picking_move_wizard -msgid "stock.picking.move.wizard" -msgstr "" - -#. module: stock -#: model:res.request.link,name:stock.req_link_tracking -#: field:stock.move,prodlot_id:0 -#: view:stock.production.lot:0 -msgid "Production Lot" -msgstr "" - -#. module: stock -#: model:ir.ui.menu,name:stock.menu_traceability -#: model:ir.ui.menu,name:stock.next_id_62 -msgid "Traceability" -msgstr "" - -#. module: stock -#: field:stock.picking,date:0 -msgid "Date Order" -msgstr "" - -#. module: stock -#: selection:stock.invoice_onshipping,init,type:0 -msgid "Supplier Invoice" -msgstr "" - -#. module: stock -#: code:addons/stock/wizard/wizard_return.py:0 -#, python-format -msgid "to be invoiced" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_location_form -#: model:ir.ui.menu,name:stock.menu_action_location_form -msgid "Locations" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "General Information" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "terp-product" -msgstr "" - -#. module: stock -#: wizard_button:stock.partial_picking,end2,end:0 -msgid "Close" -msgstr "" - -#. module: stock -#: model:ir.actions.report.xml,name:stock.report_move_labels -msgid "Print Item Labels" -msgstr "" - -#. module: stock -#: view:stock.move:0 -msgid "Moves" -msgstr "" - -#. module: stock -#: field:stock.move,location_dest_id:0 -#: field:stock.picking,location_dest_id:0 -msgid "Dest. Location" -msgstr "" - -#. module: stock -#: wizard_button:stock.move.split,init,split:0 -msgid "Split" -msgstr "" - -#. module: stock -#: field:stock.location,account_id:0 -msgid "Inventory Account" -msgstr "" - -#. module: stock -#: wizard_view:inventory.merge.stock.zero,init:0 -msgid "Set Stocks to Zero" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.location_production -#: selection:stock.location,usage:0 -msgid "Production" -msgstr "" - -#. module: stock -#: model:ir.ui.menu,name:stock.menu_traceability_low -msgid "Low Level" -msgstr "" - -#. module: stock -#: rml:stock.picking.list:0 -#: field:stock.production.lot.revision,description:0 -msgid "Description" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_INDENT" -msgstr "" - -#. module: stock -#: selection:stock.picking,type:0 -msgid "Delivery" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action5 -#: model:ir.actions.wizard,name:stock.action4 -#: model:ir.actions.wizard,name:stock.action_lot2 -msgid "Upstream traceability" -msgstr "" - -#. module: stock -#: code:addons/stock/product.py:0 -#, python-format -msgid "Produced Qty" -msgstr "" - -#. module: stock -#: field:product.category,property_stock_account_input_categ:0 -#: field:product.template,property_stock_account_input:0 -msgid "Stock Input Account" -msgstr "" - -#. module: stock -#: field:stock.location,chained_location_type:0 -msgid "Chained Location Type" -msgstr "" - -#. module: stock -#: selection:stock.location,chained_location_type:0 -msgid "Customer" -msgstr "" - -#. module: stock -#: model:ir.actions.act_window,name:stock.action_location_tree_3 -#: model:ir.ui.menu,name:stock.menu_action_location_tree_3 -msgid "Locations' Values" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_output -msgid "Output" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_JUSTIFY_RIGHT" -msgstr "" - -#. module: stock -#: model:ir.model,name:stock.model_stock_inventory_line -msgid "Inventory line" -msgstr "" - -#. module: stock -#: view:stock.picking:0 -msgid "Others info" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_MEDIA_NEXT" -msgstr "" - -#. module: stock -#: view:stock.move:0 -#: view:stock.picking:0 -msgid "Move State" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_REDO" -msgstr "" - -#. module: stock -#: model:stock.location,name:stock.stock_location_locations -msgid "Physical Locations" -msgstr "" - diff --git a/addons/stock_invoice_directly/i18n/tlh_TLH.po b/addons/stock_invoice_directly/i18n/tlh_TLH.po deleted file mode 100644 index aa697add3b3..00000000000 --- a/addons/stock_invoice_directly/i18n/tlh_TLH.po +++ /dev/null @@ -1,22 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * stock_invoice_directly -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: stock_invoice_directly -#: model:ir.module.module,shortdesc:stock_invoice_directly.module_meta_information -msgid "Invoice Picking Directly" -msgstr "" - diff --git a/addons/stock_location/i18n/tlh_TLH.po b/addons/stock_location/i18n/tlh_TLH.po deleted file mode 100644 index 7234bbfd2f3..00000000000 --- a/addons/stock_location/i18n/tlh_TLH.po +++ /dev/null @@ -1,106 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * stock_location -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:54+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:54+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: stock_location -#: help:stock.location.path,delay:0 -msgid "Number of days to do this transition" -msgstr "" - -#. module: stock_location -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: stock_location -#: model:ir.module.module,shortdesc:stock_location.module_meta_information -msgid "Stock Location Paths" -msgstr "" - -#. module: stock_location -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: stock_location -#: selection:stock.location.path,auto:0 -msgid "Automatic No Step Added" -msgstr "" - -#. module: stock_location -#: help:product.product,path_ids:0 -msgid "These rules set the right path of the product in the whole location tree." -msgstr "" - -#. module: stock_location -#: field:stock.location.path,location_from_id:0 -msgid "Source Location" -msgstr "" - -#. module: stock_location -#: field:stock.location.path,location_dest_id:0 -msgid "Destination Location" -msgstr "" - -#. module: stock_location -#: field:stock.location.path,auto:0 -#: selection:stock.location.path,auto:0 -msgid "Automatic Move" -msgstr "" - -#. module: stock_location -#: field:stock.location.path,product_id:0 -msgid "Products" -msgstr "" - -#. module: stock_location -#: selection:stock.location.path,auto:0 -msgid "Manual Operation" -msgstr "" - -#. module: stock_location -#: model:ir.model,name:stock_location.model_stock_location_path -msgid "stock.location.path" -msgstr "" - -#. module: stock_location -#: help:stock.location.path,auto:0 -msgid "This is used to define paths the product has to follow within the location tree.\n" -"The 'Automatic Move' value will create a stock move after the current one that will be validated automatically. With 'Manual Operation', the stock move has to be validated by a worker. With 'Automatic No Step Added', the location is replaced in the original move." -msgstr "" - -#. module: stock_location -#: field:stock.location.path,name:0 -msgid "Operation" -msgstr "" - -#. module: stock_location -#: view:product.product:0 -#: field:product.product,path_ids:0 -#: view:stock.location.path:0 -msgid "Location Paths" -msgstr "" - -#. module: stock_location -#: field:stock.location.path,delay:0 -msgid "Delay (days)" -msgstr "" - -#. module: stock_location -#: view:product.product:0 -msgid "Procurement & Locations" -msgstr "" - diff --git a/addons/stock_no_autopicking/i18n/tlh_TLH.po b/addons/stock_no_autopicking/i18n/tlh_TLH.po deleted file mode 100644 index e9fa419aeee..00000000000 --- a/addons/stock_no_autopicking/i18n/tlh_TLH.po +++ /dev/null @@ -1,37 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * stock_no_autopicking -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: stock_no_autopicking -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: stock_no_autopicking -#: field:product.product,auto_pick:0 -msgid "Auto Picking" -msgstr "" - -#. module: stock_no_autopicking -#: help:product.product,auto_pick:0 -msgid "Auto picking for raw materials of production orders." -msgstr "" - -#. module: stock_no_autopicking -#: model:ir.module.module,shortdesc:stock_no_autopicking.module_meta_information -msgid "Stock No Auto-Picking" -msgstr "" - diff --git a/addons/subscription/i18n/tlh_TLH.po b/addons/subscription/i18n/tlh_TLH.po deleted file mode 100644 index 64d01f20e62..00000000000 --- a/addons/subscription/i18n/tlh_TLH.po +++ /dev/null @@ -1,277 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * subscription -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: subscription -#: field:subscription.subscription,doc_source:0 -#: field:subscription.subscription.history,document_id:0 -msgid "Source Document" -msgstr "" - -#. module: subscription -#: field:subscription.document,model:0 -msgid "Object" -msgstr "" - -#. module: subscription -#: code:addons/subscription/subscription.py:0 -#, python-format -msgid "Please provide another source document.\nThis one does not exist !" -msgstr "" - -#. module: subscription -#: field:subscription.subscription,date_init:0 -msgid "First Date" -msgstr "" - -#. module: subscription -#: field:subscription.document.fields,field:0 -msgid "Field" -msgstr "" - -#. module: subscription -#: model:ir.model,name:subscription.model_subscription_subscription_history -msgid "Subscription history" -msgstr "" - -#. module: subscription -#: selection:subscription.subscription,state:0 -msgid "Draft" -msgstr "" - -#. module: subscription -#: selection:subscription.document.fields,value:0 -msgid "Current Date" -msgstr "" - -#. module: subscription -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: subscription -#: selection:subscription.subscription,interval_type:0 -msgid "Weeks" -msgstr "" - -#. module: subscription -#: field:subscription.subscription,state:0 -msgid "Status" -msgstr "" - -#. module: subscription -#: model:ir.model,name:subscription.model_subscription_document_fields -msgid "Subscription document fields" -msgstr "" - -#. module: subscription -#: field:subscription.subscription,interval_number:0 -msgid "Interval Qty" -msgstr "" - -#. module: subscription -#: view:subscription.subscription:0 -msgid "Stop" -msgstr "" - -#. module: subscription -#: view:subscription.subscription:0 -msgid "Set to Draft" -msgstr "" - -#. module: subscription -#: model:ir.module.module,description:subscription.module_meta_information -msgid "Module allows to create new documents and add subscription on that document." -msgstr "" - -#. module: subscription -#: selection:subscription.subscription,state:0 -msgid "Running" -msgstr "" - -#. module: subscription -#: view:subscription.subscription.history:0 -msgid "Subscription History" -msgstr "" - -#. module: subscription -#: field:subscription.subscription,user_id:0 -msgid "User" -msgstr "" - -#. module: subscription -#: field:subscription.subscription,interval_type:0 -msgid "Interval Unit" -msgstr "" - -#. module: subscription -#: field:subscription.subscription.history,date:0 -msgid "Date" -msgstr "" - -#. module: subscription -#: model:ir.ui.menu,name:subscription.menu_subscription_config -msgid "Configuration" -msgstr "" - -#. module: subscription -#: field:subscription.subscription,exec_init:0 -msgid "Number of documents" -msgstr "" - -#. module: subscription -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: subscription -#: selection:subscription.subscription.history,document_id:0 -msgid "Sale Order" -msgstr "" - -#. module: subscription -#: field:subscription.document,name:0 -#: field:subscription.subscription,name:0 -msgid "Name" -msgstr "" - -#. module: subscription -#: field:subscription.document,field_ids:0 -msgid "Fields" -msgstr "" - -#. module: subscription -#: field:subscription.subscription,notes:0 -msgid "Notes" -msgstr "" - -#. module: subscription -#: selection:subscription.subscription,interval_type:0 -msgid "Months" -msgstr "" - -#. module: subscription -#: selection:subscription.subscription,interval_type:0 -msgid "Days" -msgstr "" - -#. module: subscription -#: model:ir.module.module,shortdesc:subscription.module_meta_information -msgid "Subscription and recurring operations" -msgstr "" - -#. module: subscription -#: field:subscription.subscription,active:0 -msgid "Active" -msgstr "" - -#. module: subscription -#: model:ir.model,name:subscription.model_subscription_document -msgid "Subscription document" -msgstr "" - -#. module: subscription -#: field:subscription.subscription,cron_id:0 -msgid "Cron Job" -msgstr "" - -#. module: subscription -#: model:ir.model,name:subscription.model_subscription_subscription -#: field:subscription.subscription.history,subscription_id:0 -msgid "Subscription" -msgstr "" - -#. module: subscription -#: field:subscription.subscription,partner_id:0 -msgid "Partner" -msgstr "" - -#. module: subscription -#: view:subscription.subscription:0 -msgid "Subsription Data" -msgstr "" - -#. module: subscription -#: view:subscription.document:0 -#: field:subscription.document.fields,document_id:0 -msgid "Subscription Document" -msgstr "" - -#. module: subscription -#: selection:subscription.document.fields,value:0 -msgid "False" -msgstr "" - -#. module: subscription -#: view:subscription.subscription:0 -msgid "Process" -msgstr "" - -#. module: subscription -#: model:ir.actions.act_window,name:subscription.action_subscription_form -#: model:ir.ui.menu,name:subscription.menu_action_subscription_form -msgid "All Subscriptions" -msgstr "" - -#. module: subscription -#: model:ir.ui.menu,name:subscription.next_id_45 -#: view:subscription.subscription:0 -msgid "Subscriptions" -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 "" - -#. module: subscription -#: code:addons/subscription/subscription.py:0 -#, python-format -msgid "Wrong Source Document !" -msgstr "" - -#. module: subscription -#: view:subscription.document.fields:0 -msgid "Subscription Document Fields" -msgstr "" - -#. module: subscription -#: selection:subscription.subscription,state:0 -msgid "Done" -msgstr "" - -#. module: subscription -#: selection:subscription.subscription.history,document_id:0 -msgid "Invoice" -msgstr "" - -#. module: subscription -#: field:subscription.document.fields,value:0 -msgid "Default Value" -msgstr "" - -#. module: subscription -#: view:subscription.subscription:0 -#: field:subscription.subscription,doc_lines:0 -msgid "Documents created" -msgstr "" - -#. module: subscription -#: model:ir.ui.menu,name:subscription.menu_tools -msgid "Tools" -msgstr "" - diff --git a/addons/warning/i18n/tlh_TLH.po b/addons/warning/i18n/tlh_TLH.po deleted file mode 100644 index 0d9642cc21c..00000000000 --- a/addons/warning/i18n/tlh_TLH.po +++ /dev/null @@ -1,123 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * warning -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: warning -#: field:res.partner,invoice_warn_msg:0 -msgid "Message for Invoice" -msgstr "" - -#. module: warning -#: field:res.partner,picking_warn_msg:0 -msgid "Message for Stock Picking" -msgstr "" - -#. module: warning -#: model:ir.module.module,shortdesc:warning.module_meta_information -msgid "Module for Warnings form onchange Event" -msgstr "" - -#. module: warning -#: view:product.product:0 -#: view:res.partner:0 -msgid "Warnings" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when purchasing this product" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn_msg:0 -msgid "Message for Sale Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn:0 -msgid "Sale Order" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn:0 -msgid "Purchase Order Line" -msgstr "" - -#. module: warning -#: field:product.product,purchase_line_warn_msg:0 -msgid "Message for Purchase Order Line" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn:0 -msgid "Purchase Order" -msgstr "" - -#. module: warning -#: view:product.product:0 -msgid "Warning when selling this product" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the sale order" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the purchase order" -msgstr "" - -#. module: warning -#: field:res.partner,picking_warn:0 -msgid "Stock Picking" -msgstr "" - -#. module: warning -#: field:res.partner,invoice_warn:0 -msgid "Invoice" -msgstr "" - -#. module: warning -#: field:res.partner,sale_warn_msg:0 -msgid "Message for Sale Order" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the picking" -msgstr "" - -#. module: warning -#: view:res.partner:0 -msgid "Warning on the invoice" -msgstr "" - -#. module: warning -#: field:res.partner,purchase_warn_msg:0 -msgid "Message for Purchase Order" -msgstr "" - -#. module: warning -#: field:product.product,sale_line_warn:0 -msgid "Sale Order Line" -msgstr "" - -#. module: warning -#: model:ir.module.module,description:warning.module_meta_information -msgid "Module for Warnings form onchange Event." -msgstr "" - diff --git a/addons/wiki/i18n/tlh_TLH.po b/addons/wiki/i18n/tlh_TLH.po deleted file mode 100644 index 753f30d3742..00000000000 --- a/addons/wiki/i18n/tlh_TLH.po +++ /dev/null @@ -1,344 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * wiki -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-02-06 15:19:53+0000\n" -"PO-Revision-Date: 2009-02-06 15:19:53+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "" - -#. module: wiki -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_groups_link -msgid "Wiki Groups Links" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,create_uid:0 -msgid "Author" -msgstr "" - -#. module: wiki -#: code:addons/wiki/wizard/open_page.py:0 -#, python-format -msgid "Open Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups.link,action_id:0 -msgid "Menu" -msgstr "" - -#. module: wiki -#: field:wiki.groups,child_ids:0 -msgid "Child Groups" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "" - -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history -#: view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,minor_edit:0 -msgid "Minor edit" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,text_area:0 -msgid "Content" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_document_configuration -msgid "Wiki Configuration" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 -#: field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,name:0 -msgid "Title" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,history_id:0 -msgid "History Lines" -msgstr "" - -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "" - -#. module: wiki -#: model:ir.module.module,shortdesc:wiki.module_meta_information -msgid "Document Management - Wiki" -msgstr "" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Create a Menu" -msgstr "" - -#. module: wiki -#: field:wiki.groups,notes:0 -msgid "Description" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "" - -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 -msgid "History Differance" -msgstr "" - -#. module: wiki -#: wizard_field:wiki.create.menu,init,page:0 -msgid "Group Home Page" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,write_uid:0 -msgid "Last Author" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_view_diff -msgid "Differences" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Page Template" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_document2 -msgid "Document Management" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,create_date:0 -msgid "Date" -msgstr "" - -#. module: wiki -#: wizard_view:wiki.make.index,init:0 -msgid "Want to create a Index on Selected Pages ? " -msgstr "" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Configuration" -msgstr "" - -#. module: wiki -#: field:wiki.groups,home:0 -#: field:wiki.groups,page_ids:0 -msgid "Pages" -msgstr "" - -#. module: wiki -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 -msgid "Text area" -msgstr "" - -#. module: wiki -#: wizard_field:wiki.create.menu,init,menu_parent_id:0 -msgid "Parent Menu" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,create_date:0 -msgid "Created on" -msgstr "" - -#. module: wiki -#: view:wiki.groups:0 -msgid "Notes" -msgstr "" - -#. module: wiki -#: wizard_view:wiki.create.menu,init:0 -#: wizard_view:wiki.make.index,init:0 -msgid "Menu Information" -msgstr "" - -#. module: wiki -#: field:wiki.groups,parent_id:0 -#: field:wiki.groups.link,group_id:0 -msgid "Parent Group" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,summary:0 -#: field:wiki.wiki.history,summary:0 -msgid "Summary" -msgstr "" - -#. module: wiki -#: field:wiki.groups,create_date:0 -msgid "Created Date" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history -#: model:ir.ui.menu,name:wiki.menu_action_history -msgid "All Page Histories" -msgstr "" - -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "" - -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 -msgid "Wiki Differance" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 -msgid "Wiki Id" -msgstr "" - -#. module: wiki -#: code:addons/wiki/wizard/open_page.py:0 -#, python-format -msgid "No action found" -msgstr "" - -#. module: wiki -#: wizard_field:wiki.create.menu,init,menu_name:0 -msgid "Menu Name" -msgstr "" - -#. module: wiki -#: view:wiki.wiki:0 -msgid "Modifications" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history -msgid "History" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_document -#: view:wiki.wiki:0 -msgid "Wiki" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,write_date:0 -msgid "Modification Date" -msgstr "" - -#. module: wiki -#: model:ir.actions.wizard,name:wiki.wizard_make_index -#: wizard_button:wiki.make.index,init,yes:0 -msgid "Create Index" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 -msgid "This is a major edit ?" -msgstr "" - -#. module: wiki -#: model:ir.actions.wizard,name:wiki.wizard_group_menu_create -#: wizard_view:wiki.create.menu,init:0 -#: wizard_button:wiki.create.menu,init,create_menu:0 -#: wizard_view:wiki.make.index,init:0 -msgid "Create Menu" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,tags:0 -msgid "Tags" -msgstr "" - -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups_browse -#: view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 -msgid "Modify By" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,toc:0 -msgid "Table of Contents" -msgstr "" - -#. module: wiki -#: wizard_button:wiki.create.menu,init,end:0 -#: wizard_button:wiki.make.index,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: wiki -#: field:wizard.wiki.history.show_diff,diff:0 -msgid "Diff" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,review:0 -msgid "Need Review" -msgstr "" - From b850cfe3e582ba967cec57c97b4ce4563f7de171 Mon Sep 17 00:00:00 2001 From: "ame (Tiny/Axelor)" Date: Thu, 12 Feb 2009 19:02:52 +0530 Subject: [PATCH 26/31] [FIX] unicode proble. lp bug: https://launchpad.net/bugs/327294 fixed bzr revid: ame@tinyerp.com-20090212133252-wludmq0d95irp6dm --- bin/osv/fields.py | 8 ++------ bin/tools/misc.py | 14 +++++++++++--- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/bin/osv/fields.py b/bin/osv/fields.py index 99b39ed9c65..b44579957c4 100644 --- a/bin/osv/fields.py +++ b/bin/osv/fields.py @@ -155,12 +155,8 @@ class char(_column): # we need to convert the string to a unicode object to be able # to evaluate its length (and possibly truncate it) reliably - if isinstance(symb, str): - u_symb = unicode(symb, 'utf8') - elif isinstance(symb, unicode): - u_symb = symb - else: - u_symb = unicode(symb) + u_symb = tools.ustr(symb) + return u_symb[:self.size].encode('utf8') diff --git a/bin/tools/misc.py b/bin/tools/misc.py index 4389ee588e0..5eee773f0f1 100644 --- a/bin/tools/misc.py +++ b/bin/tools/misc.py @@ -677,11 +677,19 @@ def ustr(value): if not isinstance(value, str): value = str(value) - try: + try: # first try utf-8 return unicode(value, 'utf-8') except: - from locale import getlocale - return unicode(value, getlocale()[1]) + pass + + try: # then extened iso-8858 + return unicode(value, 'iso-8859-15') + except: + pass + + # else use default system locale + from locale import getlocale + return unicode(value, getlocale()[1]) def exception_to_unicode(e): if hasattr(e, 'message'): From 7a568a34314157063d0d71352b5c9f998d39166f Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Fri, 13 Feb 2009 00:39:46 +0100 Subject: [PATCH 27/31] [FIX] Import the pyPdf package bzr revid: stephane@tinyerp.com-20090212233946-5qzaib2y8bsvfmaj --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 64a53618c2e..e4d90b320ea 100755 --- a/setup.py +++ b/setup.py @@ -173,6 +173,7 @@ setup(name = name, 'openerp-server.tools', 'openerp-server.report', 'openerp-server.report.printscreen', + 'openerp-server.report.pyPdf', 'openerp-server.report.render', 'openerp-server.report.render.rml2pdf', 'openerp-server.report.render.rml2html', From 32899700f0e7ad3d3d2c3c6978bb0f4830421735 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Fri, 13 Feb 2009 00:40:09 +0100 Subject: [PATCH 28/31] 5.0.0-3 bzr revid: stephane@tinyerp.com-20090212234009-laxvd7ezteq256k8 --- bin/release.py | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/release.py b/bin/release.py index de5518975d5..47c59deb140 100644 --- a/bin/release.py +++ b/bin/release.py @@ -23,7 +23,7 @@ name = 'openerp-server' version = '5.0.0' -release = '2' +release = '3' major_version = '5.0' description = 'OpenERP Server' long_desc = '''\ diff --git a/setup.cfg b/setup.cfg index d3420c25ffb..d8e3b9cd962 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ formats=rpm [bdist_rpm] # release must exactly match 'release' as set in bin/release.py -release=2 +release=3 requires=python >= 2.4 #build-requires=python-devel >= 2.3 From 648a987d5d634008d1168c9a34a80fa1bb1ab08d Mon Sep 17 00:00:00 2001 From: "Apa (Open ERP)" Date: Fri, 13 Feb 2009 11:13:12 +0530 Subject: [PATCH 29/31] modify col width in production order report bzr revid: apa@tinyerp.com-20090213054312-mccvv4qlajfsue4b --- addons/mrp/report/order.rml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/mrp/report/order.rml b/addons/mrp/report/order.rml index cf803fef7b9..4ab38a3041a 100644 --- a/addons/mrp/report/order.rml +++ b/addons/mrp/report/order.rml @@ -257,7 +257,7 @@ Work Orders - + Sequence @@ -276,7 +276,7 @@ - + [[ repeatIn(o.workcenter_lines,'line2') ]] From a86a89517eafd8fbc688e6eb213a890e18406c16 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Fri, 13 Feb 2009 15:02:27 +0100 Subject: [PATCH 31/31] [FIX] We change the text of the license in the release.py because there is a problem with PyPi bzr revid: stephane@tinyerp.com-20090213140227-4r2ve2t2e61myjem --- bin/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/release.py b/bin/release.py index 47c59deb140..5d0e607a544 100644 --- a/bin/release.py +++ b/bin/release.py @@ -35,7 +35,7 @@ customizable reports, and XML-RPC interfaces. ''' classifiers = """\ Development Status :: 5 - Production/Stable -License :: OSI Approved :: GNU General Public License Version 3 (GPL-3) +License :: OSI Approved :: GNU General Public License (GPL) Programming Language :: Python """ url = 'http://www.openerp.com'